I am using a third-party .NET SOAP WebService (.asmx). I want to register a request and response. I saw some solutions using SoapExtensions . But I like to integrate logging in my system, some like this:
public class MyWebService : ThirdPartyWebService
{
public string Request { ... }
public string Response {... }
}
Can I do it? Is there any other solution?
UPDATE: I like to avoid serializing the request and response object. But I am doing it now.
source
share