Returns the FTP server response.
Public Overrides Function GetResponse As WebResponse
public override WebResponse GetResponse()
public: virtual WebResponse^ GetResponse() override
abstract GetResponse : unit -> WebResponse override GetResponse : unit -> WebResponse
GetResponse or BeginGetResponse has already been called for this instance.
- or -
An HTTP proxy is enabled, and you attempted to use an FTP command other than WebRequestMethods..::.Ftp..::.DownloadFile, WebRequestMethods..::.Ftp..::.ListDirectory, or WebRequestMethods..::.Ftp..::.ListDirectoryDetails.
EnableSsl is set to true, but the server does not support this feature.
A Timeout was specified and the timeout has expired.
To access the FTP-specific properties, you must cast the WebResponse object returned by this method to FtpWebResponse.
GetResponse causes a control connection to be established, and might also create a data connection. GetResponse blocks until the response is received. To prevent this, you can perform this operation asynchronously by calling the BeginGetResponse and EndGetResponse methods in place of GetResponse.
If the Proxy property is set, either directly or in a configuration file, communications with the FTP server are made through the proxy.
If a WebException is thrown, use the Response and Status properties of the exception to determine the response from the server.
This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing.
Multiple calls to GetResponse return the same response object; the request is not reissued.
This method generates network traffic.
The following code example demonstrates copying a file to a request's data stream and sending a request to append data to a file to the server. The example calls GetResponse to send the request and block until the response is returned by the server.
Public Shared Function AppendFileOnServer(ByVal fileName As String, ByVal serverUri As Uri) As Boolean ' The URI described by serverUri should use the ftp:// scheme. ' It contains the name of the file on the server. ' Example: ftp://contoso.com/someFile.txt. ' The fileName parameter identifies the file containing ' the data to be appended to the file on the server. If serverUri.Scheme <> Uri.UriSchemeFtp Then Return False End If ' Get the object used to communicate with the server. Dim request As FtpWebRequest = CType(WebRequest.Create(serverUri), FtpWebRequest) request.Method = WebRequestMethods.Ftp.AppendFile Dim sourceStream As New StreamReader(fileName) Dim fileContents() As Byte = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd()) sourceStream.Close() request.ContentLength = fileContents.Length ' This example assumes the FTP site uses anonymous logon. request.Credentials = New NetworkCredential("anonymous", "janeDoe@contoso.com") Dim requestStream As Stream = request.GetRequestStream() requestStream.Write(fileContents, 0, fileContents.Length) requestStream.Close() Dim response As FtpWebResponse = CType(request.GetResponse(), FtpWebResponse) Console.WriteLine("Append status: {0}", response.StatusDescription) response.Close() Return True End Function
public static bool AppendFileOnServer(string fileName, Uri serverUri) { // The URI described by serverUri should use the ftp:// scheme. // It contains the name of the file on the server. // Example: ftp://contoso.com/someFile.txt. // The fileName parameter identifies the file containing // the data to be appended to the file on the server. if (serverUri.Scheme != Uri.UriSchemeFtp) { return false; } // Get the object used to communicate with the server. FtpWebRequest request = (FtpWebRequest)WebRequest.Create(serverUri); request.Method = WebRequestMethods.Ftp.AppendFile; StreamReader sourceStream = new StreamReader(fileName); byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd()); sourceStream.Close(); request.ContentLength = fileContents.Length; // This example assumes the FTP site uses anonymous logon. request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com"); Stream requestStream = request.GetRequestStream(); requestStream.Write(fileContents, 0, fileContents.Length); requestStream.Close(); FtpWebResponse response = (FtpWebResponse) request.GetResponse(); Console.WriteLine("Append status: {0}",response.StatusDescription); response.Close(); return true; }
static bool AppendFileOnServer( String^ fileName, Uri^ serverUri ) { // The URI described by serverUri should use the ftp:// scheme. // It contains the name of the file on the server. // Example: ftp://contoso.com/someFile.txt. // The fileName parameter identifies the file containing // the data to be appended to the file on the server. if ( serverUri->Scheme != Uri::UriSchemeFtp ) { return false; } // Get the object used to communicate with the server. FtpWebRequest^ request = dynamic_cast<FtpWebRequest^>(WebRequest::Create( serverUri )); request->Method = WebRequestMethods::Ftp::AppendFile; StreamReader^ sourceStream = gcnew StreamReader( fileName ); array<Byte>^fileContents = Encoding::UTF8->GetBytes( sourceStream->ReadToEnd() ); sourceStream->Close(); request->ContentLength = fileContents->Length; // This example assumes the FTP site uses anonymous logon. request->Credentials = gcnew NetworkCredential( "anonymous","janeDoe@contoso.com" ); Stream^ requestStream = request->GetRequestStream(); requestStream->Write( fileContents, 0, fileContents->Length ); requestStream->Close(); FtpWebResponse^ response = dynamic_cast<FtpWebResponse^>(request->GetResponse()); Console::WriteLine( "Append status: {0}", response->StatusDescription ); response->Close(); return true; }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
Ho notato che pur sostituendo la riga
Dim request As Net.FtpWebRequest = CType(Net.WebRequest.Create(serverUri), Net.FtpWebRequest)conDim request As Net.FtpWebRequest = Net.FtpWebRequest.Create(UriString)e la rigaDim response As Net.FtpWebResponse = CType(request.GetResponse(), Net.FtpWebResponse)con Dim response As Net.FtpWebResponse = request.GetResponse()
l'esempio va a buon fine comunque.