I've found all kinds of information over the web, but none yet that can categorically answer the question.
- This article on the MSDN is an argument against the RPC protocol, but doesn't specifically say it isn't supported.
- This article demonstrates it is possible to extend the web service by hand. I'd prefer to avoid that, as it defeats the purpose of using a WSDL file.
- There are sections of the MSDN with classes for dealing with RPC based SOAP messages in the framework, such as
System.Web.Services.Protocols.SoapRpcMethodAttribute. - The service I need to connect to is using the RPC/literal protocol and there is no chance of changing that.
- The Service Stub generating tool (wsdl.exe) will not accept RPC/literal WSDL files.
I really need to use RPC/literal in my .NET 2.0 application. Is it possible?