Hi All,
I just finished reading an article on the .Net Remoting vs Web Services performance, it's an old one, and I'm hoping the information is still valid.
See here: http://msdn.microsoft.com/en-us/library/ms978411.aspx
The tests have been conducted using different formatters and transport protocols. One which interests me in particular in the IIS_HTTP_BINARY which is an ASP.NET Web Service hosted in IIS using HTTP and a BinaryFormatter. I can't for the life of me figure
out how to change the formatter from SOAP to Binary in my code (or where else can I do this?). Is this even possible? Or am I completely lost and trying to do the impossible here?
I'm trying to find a way to improve on the basic Web Service while retaining all the security features and still go through HTTP/80 this seems to be a solution. I'd like to avoid .Net Remoting for now. My understanding being that .Net Remoting does not have
all the security features that IIS will provide me by hosting my service inside it.
Thanks in advance!
Nic
View Complete Post