How to get C# client to display SOAP response
I have the following code:
MMS_WS_Client.localhost.HiWS myService = new MMS_WS_Client.localhost.HiWS();
MMS_WS_Client.localhost.sayHi sayHiInst = new MMS_WS_Client.localhost.sayHi();
sayHiInst.String_1 = "Ling Ling";
label2.Text = myService.sayHi(sayHiInst).result;
I want myService to print out the actual XML SOAP response. Anyone know how to do this?