Hello,
I am doing a soap request with Net.WebService(...) and .Post("<?xml version=\"1.0\"....
string result = request.Call();
result contains the XML response, doing a
Program.Notify("Show Result", result);
the pop up shows up displaying the values which are part of the xml like
"param1 param2 param3 param4"
If I do a
string[] reqs = (result.Split(' '));
and display reqs [1] I get part of the xml code not param1.
How can I decode the xml?
Many thanks
Best regards
Jens