I have an application which is an existing standard CGI app, but I wish to also support SOAP requests for the same application. The submitted headers and POST...
6433
Dave Howorth
dhoworth@...
Feb 8, 2010 4:04 pm
... Just use a different URL for the SOAP requests, then your problem goes away. Cheers, Dave...
I'll add that "different URL" can mean simply adding something like "? querytype=soap11" to the end of it... -Chris On Feb 8, 2010, at 11:03, Dave Howorth...
6435
Dave Howorth
dhoworth@...
Feb 8, 2010 4:39 pm
... It can but that opens a philosophically-RESTless can of worms :) Plus it's shorter to just say: http://www.domain.com/my/url/soap or even ...
Hello, I have a multipart message. I created the attachment with MIME::Entity: my $ent = build MIME::Entity( Type => "application/xop+xml", Encoding...
Hello guys, I need to use DIME attachments with SOAP::Lite and apparently it is not working. DIME-Tools works ok by itself, SOAP::Lite works ok with MIME but...
Out of curiosity, how many people out in the soaplite community are available for contract work on the SOAP::Lite toolkit? It might be good to put together a...
DIME support was started in SOAP::Lite, by me actually, but never completed. Partially due to a lack of demand. That being said, the attachment layer of...
Hi, I'm new to perl and soap and didn't find any solutions for my problem so maybe you can help me. I have a .net WCF Service, Soap 1.2, with authorization...
Hey folks, there is a good working PHP WSDL call-example which I want to redo in Perl using SOAP::Lite. My other calls built in Perl work very well, but that...
Hi, ... Yepp. It is a good idea to find out, what xml-requests do php and perl generate and then to find out how to manage it to create what's needed. I'm a...
An older version of SOAP::Lite (0.60) defaulted to SOAP 1.1 and XMLSchema 1999. However, SOAP::Lite 0.710 still defaults to SOAP 1.1 but use XMLSchema 2001....
Dear Group, I've been encountering an issue with a particular result being returned empty from a webservice through SOAP::Lite but using the same exact request...
Hi, I suppose, there goes something wrong with your lseSessionId. Have you started a query in your perl code? do you use the same lseSessionID in both...
Hi Martin, Thanks for the reply, I'm certain that the lseSessionID portion is definitely working correctly because there are several steps prior to the final...
Dear group, I asked the same to the perlmonks, but maybe here are more Soaplite specialists :-) So here we go : I got a question about SOAP::Lite, which I...
Martin, Still no luck. I'm going to start further nitty-gritty checking by writing a very simple webservice just using perl that will return the same type of...
Hi, ... you have to tweak the SOAP server to use a freeform response - to do so, subclass the server class you're using and override the handle method. ...
I try to use a webServices with SOAP::LITE. With only simpleType like String is OK. But if I work with complexType my object in the service is always NULL. I'm...
The documentation (pod) for trace options indicates that the follow is possible: # Send output to a function SOAP::Lite->import( +trace => method => transport...
Does the object being returned know how to represent itself to print? I suspect not. ... use Data::Dumper; print Data::Dumper->Dump( $result->result() ); ...
I'm dealing with a SOAP API that is returning Faults inside the envelope instead of inside the body. This is clearly against the API documentation, but they...
Very simple question. Where SOAPAUTH is a Header object, this works: my $som = $soap->call( SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH ); ...
I've got singular method calls working fine: my $som = $soap->call( SOAP::Data->name( 'ping' )->attr( $API ) => $AUTH ); or simpler if I didn't need the...
There is a page with two links on it about how to disable the c-gensym elements http://www.soaplite.com/2003/08/how_do_you_turn.html Both of the links there...
Hi, ... the construct: SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH is just a syntactical variant to: SOAP::Data->name( $method )->attr( $SAMAPI...