I need to access a raw XML response from a SOAP .NET client (using svcutil). I believe that I can do this by intercepting it using custom behavior, but I really don't need deserialized objects at all (and most likely I won't be able to get a performance hit when they are created). Is there a way I can get around the default serialization and directly access the raw XML response?
source
share