ecuguru has asked for the wisdom of the Perl Monks concerning the following question:
<facilityPin xsi:type="xsd:int">0001</facilityPin> <personalPin xsi:type="xsd:int">00001</personalPin>
$service -> AuthenticateUser(); my $som = $service -> call (SOAP::Data->name('AuthenticateUser')-> +attr({xmlns => 'http://test.live.org/WS/'}),SOAP::Data->value(SOAP::D +ata->new->name('id' => '0001')),SOAP::Data->value(SOAP::Data->new->na +me('pin' => '00001')),SOAP::Data->value(SOAP::Data->new->name('user' +=> 'user')),SOAP::Data->value(SOAP::Data->new->name('pass' => 'pass') +))||&soapGetBad();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Soap Define Types
by grep (Monsignor) on Nov 02, 2006 at 17:54 UTC | |
by ecuguru (Monk) on Nov 02, 2006 at 18:11 UTC |