D
Donald Nova
Language: VB
---------------
I am required to build a WebSerice that consumes the following SOAP message:
--------
<SOAP-ENV:Body>
<authenticate>
<details>
<password xsi:type="xsd:string">myPassword</password>
<userName xsi:type="xsd:string">JoeBloggs</userName>
</details>
</authenticate>
</SOAP-ENV:Body>
--------
I have set the WebService up, and it is successfully invoked by a client
(Userland Frontier), and through use of an Extension I can see that above
SOAP message is arriving at the Server. The WebService returns a
confirmation string back to the client, something like :
"The username and password you entered was: " & username & ", " & password
*** where userName & password were the parameters passed
However, I cannot access the userName & password parameters sent from the
client. I am guessing that the data being passed is some kind of Structure
Datatype, but I do not know how access the data in this structure.
Can anybody help me.
regards
Donald
---------------
I am required to build a WebSerice that consumes the following SOAP message:
--------
<SOAP-ENV:Body>
<authenticate>
<details>
<password xsi:type="xsd:string">myPassword</password>
<userName xsi:type="xsd:string">JoeBloggs</userName>
</details>
</authenticate>
</SOAP-ENV:Body>
--------
I have set the WebService up, and it is successfully invoked by a client
(Userland Frontier), and through use of an Extension I can see that above
SOAP message is arriving at the Server. The WebService returns a
confirmation string back to the client, something like :
"The username and password you entered was: " & username & ", " & password
*** where userName & password were the parameters passed
However, I cannot access the userName & password parameters sent from the
client. I am guessing that the data being passed is some kind of Structure
Datatype, but I do not know how access the data in this structure.
Can anybody help me.
regards
Donald