P
plork
hi all i'm calling a web service method and can get it's results just
fine however i want to grab the repsonse message from the call
is anyone able to tell me how i do this?
results = service.getMethod(a, b, c, d)
then iterating through
for (int i = 0; i < results .Length; i++)
{
string name = results .name;
string display = results .name;
}
i want the raw xml response. I know i can use TCPTrace to get this
BUT i need it in code
In java i can do this, how do i do this in c#?
Service service = new Service();
Call call = (Call) service.createCall();
........
Message message = call.getResponseMessage();
thanks for any help
fine however i want to grab the repsonse message from the call
is anyone able to tell me how i do this?
results = service.getMethod(a, b, c, d)
then iterating through
for (int i = 0; i < results .Length; i++)
{
string name = results .name;
string display = results .name;
}
i want the raw xml response. I know i can use TCPTrace to get this
BUT i need it in code
In java i can do this, how do i do this in c#?
Service service = new Service();
Call call = (Call) service.createCall();
........
Message message = call.getResponseMessage();
thanks for any help