Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: XML module advice

by SciDude (Friar)
on Jun 07, 2004 at 21:12 UTC ( [id://362113]=note: print w/replies, xml ) Need Help??


in reply to XML module advice

The EFSNet site suggests a solution to your problem. Did you experiment with the SOAP::Lite code samples provided by them:

# Note: To use this sample, insert your issued StoreID and StoreKey va +lues where appropriate. # This sample Perl code demonstrates calling the EFSnet SystemCheck me +thod via the SOAP interface. # This code requires SOAP::Lite and its pre-requisites (http://www.soa +plite.com/). use SOAP::Lite; # Call EFSnet SystemCheck method @OutputParams = SOAP::Lite -> service('https://testefsnet.concordebiz.com/EFSnet2.wsdl') -> SystemCheck('myStoreID', 'myStoreKey', 'EFSnet samples 1.0'); # Get output variables $ResponseCode = $OutputParams[0]; $ResultCode = $OutputParams[1]; $ResultMessage = $OutputParams[2];

SciDude
The first dog barks... all other dogs bark at the first dog.

Replies are listed 'Best First'.
Re^2: XML module advice
by fuzzyping (Chaplain) on Jun 08, 2004 at 04:15 UTC
    Yes, I did. The SOAP SystemCheck method they provide for testing works fine, but neither their XML or CGI interfaces are authenticating successfully for me. The SOAP interface appears easy to use, but none of the other methods work at all for me. I'll be calling their support line soon.

    -fp

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://362113]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-26 05:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found