I need help on how to call this web service. I can't give much details about it as it is proprietary to *another* entity. But I can tell you that it is uses WSE 2.0 security. In the SOAP Header documentation it has the section:
..
<soap:Header>
<wsse:Security soap:mustUnderstand="1">
<wsse:UsernameToken namespace>
<wsse:Username>Username</w
sse:Userna
me>
<wsse:Password Type="type info">Password</wsse:Passw
ord>
<wsse:Nonce>nonce</wsse:No
nce>
<wsu:Created>date created</wsu:Created>
</wsse:UsernameToken>
</wsse:Security>
</soap:Header>
How do I call this service from Classic ASP. I can call it from an ASP.NET application (VS 2003, WSE 2.0) just fine.
I have tried the SOAP toolkit and I get "wrong or incorrect number of arguments" or something to that effect. But I don't know how to enter the username and password, etc, for the Web Service. Is it possible to call a web service with the SOAP Toolkit that uses WSE 2.0 Security?
If not, how else do I call it? Do I post the XML manually? I tried that but I get "bad request," although, I know I'm not putting the right stuff in for Nonce, etc.
This should be pretty straightforward as it is a "standard" but I can't figure it out. Thanks for the help.
Start Free Trial