Hello Bruce and others,
I want my SOAP-Server to return one value. This is what I get back into the Client and it looks fine:
<soap:Envelope xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" ...>
<soap:Body>
<getAnmeldemethode_Response xmlns="">
<
Anmeldemethode>
1</
Anmeldemethode>
</getAnmeldemethode_Response>
</soap:Body>
</soap:Envelope>
How do I get that single value of "
Anmeldemethode" into a variable of the Client?
All I see is xml.LOAD( FILE / QUEUE / GROUP, ....).
In my case its just a plain variable.
What I already tried was to make a GROUP with one component. That component is "Anmeldemethode", Apparently I made that wrong.
MyGroup GROUP,PRE(MyG)
Anmeldemethode STRING(1) !1 = Automatisch oder 2 = mit Passwort
END
In .PageReceived I have this:
xml.Load(MyGroup, WebClient.page, WebClient.pagelen, 'getAnmeldemethode_Response', 'Anmeldemethode')
MyG:Anmeldemethode should hold a 1 now, but does not, of course.
Thanks in advance,
Wolfgang