I'm currently updating a few very old web Services and came upon a Situation where I'm unsure.
I've got a web Service with the following method Header:
public string MyService(string data1, string data2, int subdatalength, short internalTimeout) The data provided for the Parameters Comes via SOAP. So far I get it how I could achieve the same with the current ASP.NET Versions. What I'm unsure about is that inside that method Webservice.Server.UrlDecode is used to extract data from the URL itself.
Thus I got Soap filled Parameters AND at the same time data in the URL. Normally nowadays as I understand you got only data in the message OR data in the URL and not both at the same time.
As I can't modify the data senders I have to let it stay that way.
So I'm wondering if the modern ways to create web applications (MCV4, ...) Support such a construct?