nyxOne has asked for the wisdom of the Perl Monks concerning the following question:
Hi, my name is Charles and this is my first post here ... although i've been around reading alot.
I'm currently facing a problem I'm not able solve by myself. I'm trying to build a client base on SOAP::WSDL as it seems to be more recommanded than SOAP::LITE;
I've done alot of reading here, on the CPAN forum and a few others and I'm still not able to make it through it.
I'm sure one of the post i've read had the answer to my problem but there is so much Technical terms to learn only for SOAP that i end up a bit more confused after each reading.
And so to be brief, Here's the code :
AND BANG : cannot import document for namespace >http://schemas.xmlsoap.org/wsdl/< without location at /usr/lib/perl5/site_perl/5.8.8/SOAP/WSDL/Expat/WSDLParser.pm line 84.#------------------- my $USER = "evouser" ; my $PASS = "xxxxxxx" ; my $PROTOCOL = "http" ; # http or https my $SERVER = "205.236.148.5" ; # IP or hostname of soap adapter my $PORT = 8095 ; # port number SOAP server is run +ning on my $WSDL_LOC = "/evo-soap/services/EvoServerSoapService?wsdl" ; # build the WSDL URL my $WSDL_URL = $PROTOCOL . "://" . $SERVER . ":" . $PORT . $WSDL_LOC ; print "Using SOAP WSDL located at: \n " . $WSDL_URL . "\n" ; print "Creating the SOAP service ....\n" ; my $service = SOAP::WSDL->new( wsdl => $WSDL_URL ) ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::WSDL problems
by sm@sh (Acolyte) on Nov 14, 2008 at 00:11 UTC | |
by nyxOne (Initiate) on Nov 14, 2008 at 15:13 UTC | |
|
Re: SOAP::WSDL problems
by Discipulus (Canon) on Nov 14, 2008 at 08:21 UTC |