ecuguru has asked for the wisdom of the Perl Monks concerning the following question:
I can't figure out how I can format the transmission so that it matches the username and password xml fields. I'm making a good call, but don't know how to match what the server (.net implementation of soap) is expecting.<soap:Body> <GetInfo xmlns="http://server/"> <username>string</username> <password>string</password> </GetNursingHomeInfo> </soap:Body>
but it's not getting accepted by the server. Is there a way to make that that I'm just not seeing in the soap lite documentation?$service -> GetInfo('<username>aimsws</username><password>aimsWS!6 +0</password>'); And it gives me: <parameters><username>user</username><password>pass</password></parame +ters>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Soap Formatting
by ecuguru (Monk) on May 17, 2006 at 22:30 UTC | |
by mda2 (Hermit) on May 18, 2006 at 02:45 UTC |