Forum Moderators: open
.NET actually increases the reliability on http communication and browsing by exposing the native http protocol methods to managed code.
What you may have been reading about could be in relation to underlying services now available in .NET like XML services. You can write a downloadable EXE (Trusted through the browser) that opens windows forms and controls like a runtime application that is making calls to the webserver in the background using http and/or SOAP.
Or is it too early to tell / or rubbish?
Thanks nonetheless - That gives me a great starting point to understand what's happening.
M
For the Microsoft programmer there are indeed many, many changes like C++ and C# code behind for ASP pages. This opens up the webform world to the C programmers that only had java to choose from before. Now a webpage can call a C# function in the webpage. Inheritance for VB programmers, need I say more? This will take some getting use to for some people and will probably create some poorly written code over the next 12 months ;)
XML is certainly gaining momentum as a commonly accepeted format for transmitting data. It's nice to work with but slow. XML is string manipulation and that's slow. However, using this across the net is perfect. It stores recordset type data very well and doesn't care what the platform is so it's probably here to stay in some form for a while. You can stuff an XML blob into an array of .NET objects like datagrids, recordsets, datareaders and the list goes on.
The changes are really to long to list. You just gotta pick a topic, download some sample code and pick it apart. Now that I've spent a few months with it, I'm starting to find all kinda cool stuff tucked away. Supposedly, there are over 64,000 methods you can call from the base classes provided by MSFT.
I'm sure it will get beat up by the naysayers but they have certainly given the developer more to work with.