Ah crap, that says to edit the WDSL file, I cant really do that, guess this isnt possible to use it with SOAP::Lite? :( | [reply] |
If the automatic way isn't working, you can always do things manually.
| [reply] |
So I guess I should be using SOAP::WSDL, which im trying, here is my code, which returns nothing, and does absolutely nothing either.
#!c:/perl/bin
use SOAP::WSDL;
use strict;
use warnings;
my %data = (
'AuthUserName' => 'xxxxxxxxx',
'AuthPassword' => 'xxxxxxx',
'NewUsername' => 'justatest',
'NewPassword' => 'justatest',
'DomainName' => 'xxxxxxxx.com',
'FirstName' => 'johddn',
'LastName' => 'doedd',
'IsDomainAdmin' => 0
);
my $soap = SOAP::WSDL->new(
wsdl => 'http://soap_web_site.com/services/svcUserAdmin.asmx?WSDL'
+,
);
my $result = $soap->call('AddUser', %data);
print $result;
| [reply] [d/l] |