Article ID: 812404 - Last Review: August 28, 2007 - Revision: 3.7 How To Write Pluggable Protocol to Support FTP in Managed Classes by Using Visual Basic .NET For a Microsoft Visual C# .NET version of this
article, see
812409
(http://support.microsoft.com/kb/812409/EN-US/
)
. This article refers to the following Microsoft .NET
Framework Class Library namespaces:
On This PageSUMMARYThis step-by-step article describes how to write
pluggable protocol by using classes from the System.Net namespace. The Microsoft .NET Framework provides a layered, extensible, and managed implementation of Internet services that can be integrated quickly and easily into your applications. The internet application that uses the request-response model can request data from the Internet by using multiple protocols. The .NET Framework uses specific classes to provide the three pieces of information that are required to access Internet resources through a request-response model: the URI class, the WebResponse class, and the WebRequest class. This article describes how to use System.Net to write a pluggable protocol to support FTP in managed classes. Pluggable protocols can communicate in both synchronous and asynchronous modes. However, this article discusses only synchronous FTP communication. The following file is available for download from the Microsoft Download Center: Collapse this image ![]() For additional information about how to download Microsoft Support files, click the following article number to view the article in the Microsoft Knowledge Base: 119591
(http://support.microsoft.com/kb/119591/
)
How to Obtain Microsoft Support Files from Online Services
Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help to prevent any unauthorized changes to the file.
Note This sample will not work with CERN proxies. For additional information about CERN proxies, click the following article number to view the article in the Microsoft Knowledge Base: 166961
(http://support.microsoft.com/kb/166961/
)
How To FTP with CERN-Based Proxy
Using WinInet API
Create the FtpWebResponse and FtpWebRequest ClassesThe WebRequest and WebResponse classes are the basis of pluggable protocols. The descendant classes of WebRequest are registered with the WebRequest class to manage the details of making the actual connections to Internet resources.In the earlier example of vbFtpClient, the FtpWebResponse class inherits from the WebResponse class. You have to override the ContentType and GetResponseStream methods. The ContentType property provides special information that the client requires to identify the type of content that is delivered by the server. The GetResponseStream method returns a data stream from the internet resource. In the earlier example, the FtpStream class is used to handle the data stream that is delivered to the server together with the request, as shown in the following sample code: The following sample code demonstrates the methods that are implemented or overridden in the FtpWebRequest class. For more information and implementation, visit the Download Center for the VbFtpClient.exe file that is mentioned earlier in this article. Create VbFtpClientThe vbFtpClient application accesses the information from the Internet by using a request-response model. You can retrieve protocol-specific information by using the WebRequest and WebResponse classes. To retrieve protocol-specific information, register the descendants of WebRequest by using the WebRequest.RegisterPrefix static method. The IWebRequestCreate interface defines the method that WebRequest descendants will use to register with the WebRequest.Create method.The following sample code demonstrates how to use IWebRequestCreate: For more information, visit the Download Center for the vbFtpClient.exe file that is mentioned earlier in this article. Steps to Run the VbFtpClient Executable
REFERENCESFor more information, see the Microsoft .NET Framework SDK
documentation, or visit the following MSDN Web site: Programming Pluggable
Protocols http://msdn.microsoft.com/en-us/library/1f6c88af(vs.71).aspx (http://msdn.microsoft.com/en-us/library/1f6c88af(vs.71).aspx) The third-party products that are discussed in this article are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products. | Article Translations
|


Back to the top
