java - Passive FTP with Appengine -


I am trying to use AppGoin (Java) to connect to an FTP server in idle mode. As you know, Passive Mode 2 uses parallel connections: 1 on port 21 and the second on the port chosen by the server. The problem I get is that the two connections are not made from the same IP, because the Appignin socket AP uses a load balancer and therefore the different sources provide connections with the IPS. The problem with this is that the FTP server only denies the IP who did not start the connection on port 21. Is there any way to keep the same source IP continuously for socket connection?

Thank you.

You can not do this in the app engine if you are the owner of an FTP server Consider resting. If not, then you can use the same project to get the file and then put it in GCS or some shared storage.

Comments

Popular posts from this blog

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -

Matlab transpose a table vector -

c# - Textbox not clickable but editable -