trend Posted October 3, 2005 Posted October 3, 2005 I have a project that will require my vb.net code to grab SSL content off webpages. The problem I am having is trying to find out what method will allow for many different windows versions.. from 98,ME,2k,2k3, and XP.. Is WinHTTP the best way to go for SSL and cross platform running? thanks Lee Quote
Nate Bross Posted October 3, 2005 Posted October 3, 2005 Any code written without the use of the Windows API should run regardless of windows version. Quote ~Nate� ___________________________________________ Please use the [vb]/[cs] tags on posted code. Please post solutions you find somewhere else. Follow me on Twitter here.
trend Posted October 4, 2005 Author Posted October 4, 2005 Any code written without the use of the Windows API should run regardless of windows version. I feel stupid, but what does this mean :/ thank you for your help! Quote
Nate Bross Posted October 4, 2005 Posted October 4, 2005 I don't mean this sarcastically so don't get me wrong, but my beliefe is that any code written using Visual Basic.NET without the use of the Win32 API will run on any computer with the .NET framework. Regardless of the platform, 98, ME, 2k, XP, etc. The .NET framework runs the same on all platforms. As far as WinHTTP it seems to be what other people use, I am not very familiar with SSL, or WinHTTP. I was just speaking to the cross platform issue. Quote ~Nate� ___________________________________________ Please use the [vb]/[cs] tags on posted code. Please post solutions you find somewhere else. Follow me on Twitter here.
trend Posted October 4, 2005 Author Posted October 4, 2005 Point taken... I guess my next question is, is there a .Net method to retreave content from a server over SSL? example: https://mywebsite.com/secure.exe Quote
Administrators PlausiblyDamp Posted October 4, 2005 Administrators Posted October 4, 2005 Look at the classes under System.Net - WebClient for one will happily work with SSL Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.