I have software installed in a remote system, I need to go to the C:\Input directory to that system from a java application deployed in SAP Cloud Foundry. While doing it from a main method from local system and connected to the destination system's network I'm able to connect but while deploying it in cloud not able to connect.
Connect to remote file system from CF Java Application?
180 Views Asked by Dipanjan Baidya At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in SFTP
- Can I negatively close a SFTP file transfer from the client side?
- Does JSch allow to understand that I provided wrong credentials?
- Transfer File to Unix Server from Windows Shared Path using PuTTY
- How to use SFTP with PhpStorm to access server /var/www folder
- Transfer folder from one SFTP server to another every day
- Check if file exists using Apache Commons VFS2
- JSch Algorithm negotiation fail
- Apache SSHD: Where do I find the org/bouncycastle/crypto/prng/VMPCRandomGenerator class?
- Setting up a sftp server in node.js using ssh2 module
- Upload multiple photos to SFTP in Async
- Is this safe to share private key in JCraft JSch
- SFTP Processbuilder
- How to stop spring sftp inbound channel adapter polling when files are downloaded
- SFTP PHP 5.6 using phpseclib hangs
- Cannot create bean when start the application
Related Questions in REMOTE-DESKTOP
- glDeleteRenderbuffersEXT via remote desktop
- Execute Gulp tasks and watches remotely
- Will WTSQuerySessionInformation work for totally remote RDP servers?
- Do i need to set up "high availablility" with the connection broker when i only have one Remote Terminal
- Error:1722 Getting session names
- Using TS RemoteApps on Chrome, Firefox without downloading RDP file?
- Can I lock hyper-v virtual machine so that users won't be able to close it or minimize it
- QtCreator crashes when started over RDP
- Mirror MacBook Desktop on iPhone?
- How can I run a command in windows that is triggered/detects logging in remotely vs local?
- PyKeyboard.tap_key() doesn't work when I disconnect from Remote Desktop
- C# WinForm RemoteApps
- Ethernet Data Traffic hidden from capture
- keybd_event() calls not sending to remote desktop
- Java Debugging over 2 machines
Related Questions in SAP-CLOUD-FOUNDRY
- SAPUI5 JSON Model via REST API - Using DESTINATION in xs-app.json / BTP does not resolve Correctly
- SAP CAP Node.js OData query lambda operator with HANA Cloud Database
- Connector tunnel reset between SAP BTP and Cloud Connector
- Create HDI Container automatically in Cloud Foundry
- How can the cf controller authenticate itself agains apps in BTP?
- OData batch request through connectivity service always returns 202 Accepted
- sap.ushell.Container is undefined in SAPUI5 app deployed on SAP BTP Cloud Foundry
- How to read a file on Windows shared folder from Springboot?
- Connect to remote file system from CF Java Application?
- How to use Træfik in Cloud Foundry?
- Disable iframe embedding of Cloud foundry deployed app
- Having issue with Multi Threaded Java app in Cloud Foundry
- Change log level at runtime for a cf application based on SAP Java Buildpack
- Using Multer library in SAP cloud platform(Web IDE)- cloud foundry
- Error while binding service instance in SAP CAP using external service
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
SAP Cloud Foundry, of course, by default has no way to access any file on your computer or any other remote system. What you need to do is:
Make the files accessible to cloud foundry by either
Provide a (on-premises) services to access to file e.g.
and access it then from cloud foundry -- you might need to configure your cloud connector if you do not want to have your services accessible via internet. SMB/SAMBA is a little bit tricky -- you'd have to use a java library to access those files.
Upload/Replicate your files to a place which is accessible by CF, e.g. SAP CF Object Store.