Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i wanna to upload files to ftp server (ftp ip, username, password) with proxy server address (ip, port) using c++.

i successfuly to upload files to ftp without proxy

i have proxy uRL : ftp://.../ username : ** password : **

using the following code

    // Stream to which the file to be upload is written
    System::IO::Stream ^_Stream = _FtpWebRequest->GetRequestStream();

    // Read from the file stream 2kb at a time
    int contentLen = _FileStream->Read(buff, 0, buffLength);

    // Till Stream content ends
    while (contentLen != 0)
    {
        // Write Content from the file stream to the FTP Upload Stream
        _Stream->Write(buff, 0, contentLen);
        contentLen = _FileStream->Read(buff, 0, buffLength);
    }

    // Close the file stream and the Request Stream
    _Stream->Close();
    delete _Stream;
    _FileStream->Close();
    delete _FileStream;

now i have a proxy server and i wanna to use it proxy server ip : 127.0.0.1 and port no : **

any helping.

share|improve this question
Nooooo one know. – abdo.eng 2006210 Jan 30 at 7:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.