CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2000
    Posts
    5

    Sharing the Knowledge: FTP w/ Proxy Server

    I finally figured out why I was having so much trouble access FTP sites outside my firewall. I could access any site I wanted from DOS but not using the internet transfer controls in VB6. After analyzing what I was entering at the DOS prompt, I figured out how to duplicate that with the Inet control. What I didn't understand at the time was the Inet1.URL needs to = ftp://web."myproxyserver".com. I thought setting the Inet1.Proxy assigned that and the URL property was used to assign the name of the FTP site I wanted to access.

    Hopefully, this will help someone else and save them hours of frustration.



  2. #2
    Join Date
    Feb 2002
    Posts
    2

    Re: Sharing the Knowledge: FTP w/ Proxy Server

    hi!,

    i am using intc fot accessing ftp through proxy.i did as u explained ,but it did'nt work out.could u please give me an example on how to do this.

    thanks.


  3. #3
    Join Date
    Feb 2000
    Posts
    5

    Re: Sharing the Knowledge: FTP w/ Proxy Server

    I've actually moved onto something better since I encounter a "round robin" problem in which the proxy server was doing load balancing between two servers. I got the FTP download code from VBNet(http://www.mvps.org/vbnet/) which uses API calls. It has been more reliable and easier to implement than the INET control.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured