1
Answer

How to get C# client to display SOAP response

tim 0

tim 0

19y
4.4k
1
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?
Answers (1)