tags:

views:

272

answers:

2

I've got a working SOAP::Lite client. It works against an established server, but so far my development server is sending back nothing except a 404. (Which is odd, because I'm not even seeing a connection on the server end.)

The closest parallel that I'm used to is Net::FTP.

my $ftp = Net::FTP->new( "some.host.name", Debug => 1 );
+2  A: 

Might I recommend using a tool like wireshark to capture the network traffic of your SOAP app to see exactly what's going on in the network. You should be able to right-click on a series of packets and select "Follow TCP Stream" to see the full HTTP exchange.

bmdhacks
It's a good idea, but we're an IT shop in a larger business. I can't just install useful apps on my own.
Axeman
+3  A: 

Did you see the documentation for SOAP::Trace? I haven't tried it myself, but it all sounds really promising.

innaM
That works. Weird that there's not a section like that in my doc.
Axeman
It's also weird that the URL I posted points to something called 'OldDocs'. No idea what's going on there.
innaM