InetFTPLogin() always report "can not connect FTP server"

I have setting up the FTP server in the Windows 7 system, it not use any password and  account. I can use the browser to view the result. But if use InetFTPLogin("ftp://127.0.0.1", " ", "") to login the server, it always return -9, means cannot connect the FTP server. what is wrong?
David

Hi David,
I'm not sure about it but maybe you should try it :
InetFTPLogin("127.0.0.1" , " ", " ");
(without "ftp://")
J.

Similar Messages

  • I am trying to turn on iCloud, I get a message "can not connect to server". How do I connect to server?

    I can't get iCloud to turn on. When I try to start it I gat a message "can not connect to server". How do I start the cloud?

    So what model and year is your machine?
    Here are the requirements for ML:
    http://www.apple.com/osx/specs/

  • I downloaded Lion OSX and at the end I received a notice that Safari can not connect to Server. All internet connections work including Safari on other user on same computer. I downloaded 13items and installed only 12. What do I do now ?

    I dowloaded Lion OSX and installed. I downloaded 13 iitems and installed only 12. At the end of the insta;;ation I received a notice thst Safart can not connect to Server. Safari does not work on user where installation was made. It work on other user. All internet connections work including google. If I go into Safari the blue line goes up to end of "http" on adress and freezes. Where do I go from here.:::???

    Hi There Linc Davis,
    Wow, you are the best.
    Yip this is what the website looks like. Great job Linc Davis.
    Not surprised that the "Shop" tab is missing. Darn.
    Well can you try to access it's "sister" website: astralmusic.com and astralmusicshop.com?
    Since you are awesome with the "Flash" can you investigate if this website has a issue withis this "Flash" too?
    Please Linc Davis

  • I HAVE THE NEW VERSION OF FIREFOX. I LOVE TO PLAY THE POGO GAMES , I CAN NOT CONNECT TO SERVER. A MESSAGE WOULD APPEAR SAYING LOST CONNECTION. WHAT IS THE PROBLEM?

    I CAN GET INTO THE POGO WEB SITE, BUT CAN NOT LOAD THE GAMES. THE GAME WILL CLOSE AND A MESSAGE WILL APPEAR CAN NOT CONNECT TO SERVER. IT GIVE YOU OTHER OPTIONS, COULD BE BEHIND PROXY OR FIREWALL., MAY BE TO BUSY, PLEASE TRY AGAIN. NONE OF THEM SEEM TO BE THE PROBLEM.HELPPPPPPPPPPPPP

    Which "new version"? Websites think you are using Firefox 3.0.19, which is no longer supported. Maybe your User Agent is "stuck" on that old version?
    http://en.wikipedia.org/wiki/User_Agent
    type '''about:config''' in the URL bar and hit Enter <br />
    ''If you see the warning, you can confirm that you want to access that page.'' <br />
    Filter = '''general.useragent.''' <br />
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset'''''. <br />
    Then restart Firefox

  • I am trying to update my iphone 4 icloud but I keep getting can not connect to server when I click on the terms and conditions

    I am trying to update my iphone 4 icloud but I keep getting can not connect to server when I click on the terms and conditions

    " iTunes could not contact the iPhone software update server because you are not connected to the internet.  Make sure your internet connention is active and try again."

  • HT4864 I just updated my iphone to the new version and it won't let me connect to ICloud- it says can not connect to server. HELP!

    I just updated my iphone to the new version. I keep getting a msg stating ICloud can not connect to server. I have turned off the phone several time- no luck. Help!!

    You are very welcome! I'm glad it worked for you!

  • Message can not connect to server

    Suddenly my Ipad air says it can not connect to server.  It is connected, I have all the bars but it will not load mail, safari, facebook, etc.  My Iphone works fine

    Hello jerri.dobbs,
    Thanks for using Apple Support Communities.
    To troubleshoot Wi-Fi connectivity on your iPad please follow the steps in the article linked to below.
    iOS: Troubleshooting Wi-Fi networks and connections - Apple Support
    Cheers,
    Alex H.

  • Iphone 3 and 4 can not connect to server

    We have been syncing e-mail to IPhone for 2 + years, Last night we stopped getting mail on our Iphones and other smart phones.
    Using Exchange 2003 server.
    Rebooted twice today - not seeing any sync errors in event log
    Deleted my account, hard boot of  IPhone and recreated account - still getting error “ can not connect to server” in mail
    What is strange it is only mail – I can move an appointment and it updates my outlook calendar
    Any suggestions much appreciated!

    This resolve my problems
    With that error noted, a search brought me to a solution:
    http://alan.lamielle.net/2009/09/03/windows-7-nonpaged-pool-srv-error-2017
    Set the following registry key to ’1′:
    HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\LargeSystemCache
    and set the following registry key to ’3′:
    HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\Size
    Explanation of what the reg keys do: http://www.decuslib.com/decus/vmslt99a/nt/tips.txt (scroll to bottom)
    Thanks to Alan LaMielle and Mark Russinovich.

  • In e mail can not connect to server i fill out the info and get this

    when i try to get e mail i get "you can configure e mail in just a few steps" when i follow the directions i get"can not connect to server"? thanks

    On another note Im just checking the external and internal web server names on my server just to be sure that its not an internal server issue - here is the weblink I have been going through - I will test and let you know .
    Mac Mail is set to auto discover the settings http://premnair.wordpress.com/2010/07/03/configure-ews-autodiscover-owa-oab-ecp- on-exchange-server-2010/

  • Why I can not connect RTP server

    Hi all,
    Here I encounter a problem that I can not connect RTP server as below address:
    rtsp://159.226.42.36/mp3
    I can play the address link using realone or MS media player on internet although it's little long time to connect the server..
    I'm just wonder why the address style in examples is not as above,but as below:
    rtp://159.226.42.36:554/1
    How can I play the link as rtsp://159.226.42.36/mp3 or rtsp://159.226.42.36/mp3/looks.mp3 sth. like that?
    Thanks!

    BTW, the code is below:
    private void startRTPPlayer(String session) {
              try {
                   player = JMFEngine.getInstance().createRTPMediaPlayer(
                             new RTPConnectionInfo(session), null);
                   statelabel.setText("Opening " + session);
                   player.addControllerListener(new RTPControllerUpdate());
                   RTPManager mgrs = (RTPManager) RTPManager.newInstance();
                   player.realize();
              } catch (IllegalArgumentException e) {
                   logger.warn(e);
                   statelabel.setText(e.getMessage());
                   return;
              } catch (MalformedURLException e) {
                   logger.warn("The media resource location is not available");
                   statelabel.setText("The media resource location is not available");
                   return;
              } catch (IOException e) {
                   logger
                             .warn("The resource can not be opened or connected currently");
                   statelabel
                             .setText("The resource can not be opened or connected currently");
                   return;
              } catch (NoPlayerException ex) {
                   logger.error("No available player", ex);
                   statelabel.setText("Can not play the resource");
                   return;
    class RTPControllerUpdate implements ControllerListener {
              public void controllerUpdate(ControllerEvent ce) {
                   // Get this when the internal players are realized.
                   if (ce instanceof RealizeCompleteEvent) {
                        player.start();
                   if (ce instanceof ControllerErrorEvent) {
                        player.close();
                        logger.error(((ControllerErrorEvent) ce).getMessage());
         }

  • GL can not connect to server

    OS 10.6.8, GoLive CS2 v 8.0.1
    For my web creation I use Adobe GoLive. I seldom use it.
    I need to upload a new page but when trying to connect I get the following message:
    Cannot connect to server: ftp://www.davidgraphics.com/public_html/
    Reason: Can not connect to FTP. (530: Login incorrect.)
    I have no idea what might have been changed since I last uploaded anything. Can anyone help me get past this error?
    Regarding GL. Is there a way to override the existing Publish Server settings and create new ones?
    Cheers
    David Heidelberger
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    [If you are posting using email, please turn your 'sig file' function OFF for posting]

    I restarted and it fixed the problem.

  • Client can not connect to Server installed window server 2008 and using 8.8

    HI all!
    I have a problem when Client  log in to server that installed window server 2008.It can not connect to this server even when restart and key in IP or Server name,...
    I try disable Firewall of window 2008 in server machine and client can connect to server. But when i disable firewall, it's mean  i can not use Remote desktop or terminal service..
    Now, how i can do in order to solve this problem.
    Thanks!

    Hi,
    Take a look at the admin guide (Page 75, 119, 159):
    [http://service.sap.com/~sapidb/011000358700000150922010E.zip]
    If you installed a firewall on the license service computer, make sure that the firewall is not set to port 30000; otherwise, the license service cannot work.
    If you are using Port X, make sure that you open Port X and Port (X+1) in the firewall. For example, if you are using port 10000, make sure to also open port 10001.
    The default communication port is 1143.
    The default port of the SAP Business One license server is 30000 for license communication and 30001 for the license naming service

  • Parental Controls - Browsers can not connect to server.

    Hi,
    When using a Parental controlled account, the user can not connect to any server when using a web browser. Tried repairing permissions, safe mode, root admin an created new parental controlled account and same results. Tried converting account to standard account and browsers will connect, but when account is converted back to parental controlled the problem returns.
    Is there a way to delete the parental controls preference file and where is it located?
    Using an iMac iSight 10.5.5
    Any help is greatly appreciated.
    Tsofa

    You want to post in the Leopard 10.5 forum area:
    http://discussions.apple.com/category.jspa?categoryID=235
    This is the Tiger 10.4 forum.

  • Ipad 2 can not connect to server after 2 day internet outage

    Situation:
    Internet access was down 2 days and was just restored
    Restarted router
    iPad 2 connected to appropriate wifi network, but got error message "could not connect to server" when using Safari. Also, could not access any other internet related service like web email.
    Other devices --- iPad air, Mac, PC laptop and 2 iPhone 4s ---- were able to connect and access internet successfully.
    Actions Taken:
    Powered off iPad 2 and then restarted it. No luck.
    On iPad 2, turned off wifi setting and then turned it back on. It connected to appropriate network, but still could not connect to server.
    Reset router again --- no luck.
    Question:
    Any suggestions?

    Try the following:
    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings
    3. Reset iPad; hold the Sleep and Home button down until you see the Apple Logo

  • HT4993 Why do I constantly get can not connect to server

    Why do I constantly get can not connect to server

    I'm in Safari on the Web and it happens often. Someone told me to turn WiFi off if there is none
    around

Maybe you are looking for

  • How do I use an external drive with iTunes

    I want to use an external drive (Windows XP & USB) for My Music Library. iTunes is running on the 'C' drive and points to the external drive. When I 'add folders' the music is available and plays, but I don't have my playlists or the play count / las

  • Error in import R3load in a migration R3 40B Oracle 8.1.7 Windows NT

    Hello, I'm executing  the import phase for a migration from SAP R/3 4.0B Oracle Windows NT. And in the last package I have the follow error: #START: 20101029152725 TAB: SOC3 FIL: e:\EXP_EGP\DATA\SAPAPPL1.001 #20101029152725 DbSl Trace: DBSL-buffer (3

  • Transfer pricing configurations in Profit Center accounting

    Hi SAP Gurus, Whether for performing transfer pricing configurations in Profit center accounting and performing transfer pricing transactions whether activation of material ledger is compulsory.

  • Combine Identity Asserter and Auth hosts filter

    Hi, I'd like to incorporate the functionality of an auth hosts filter within my Identity Asserter, so valid hosts can be defined per extend client rather than for any client. In order to achieve this i need access to the client's address within the i

  • Active Sync Not Working for NEXUS MOBILE in Exchange 2010 SP3 Enivironment..

     HI Exchange Techy's. We have Exchange 2010 SP3 Servers. Now All mobiles are working fine Through Active Sync Except Google Nexus.  Problem: Account has been activated successfully in Mobile, But Mails are not synchronized.   Kindly help fix me out o