Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

soaplite · SOAP::Lite for Perl (soaplite.com)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1205
  • Category: Protocols
  • Founded: Jan 28, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 6432 - 6462 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6432 Trevor Phillips
Dortamur Send Email
Feb 8, 2010
3:49 pm
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@... Send Email
Feb 8, 2010
4:04 pm
... Just use a different URL for the SOAP requests, then your problem goes away. Cheers, Dave...
6434 Chris Woodfield
cwoodfieldatl Send Email
Feb 8, 2010
4:20 pm
I'll add that "different URL" can mean simply adding something like "? querytype=soap11&quot; to the end of it... -Chris On Feb 8, 2010, at 11:03, Dave Howorth...
6435 Dave Howorth
dhoworth@... Send Email
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 ...
6436 patwa_2003 Send Email Feb 9, 2010
5:34 am
Hello, I have a multipart message. I created the attachment with MIME::Entity: my $ent = build MIME::Entity( Type => "application/xop+xml", Encoding...
6437 csebe Send Email Feb 10, 2010
4:50 am
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...
6438 Byrne Reese
byrnereese Send Email
Feb 10, 2010
9:15 pm
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...
6439 Byrne Reese
byrnereese Send Email
Feb 10, 2010
9:16 pm
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...
6440 robertb127 Send Email Feb 10, 2010
9:16 pm
Hi, I am having problems working with a Microsoft-IIS server. The example <soap:Envelope&gt; they give me does not have the following: ...
6441 nulibali Send Email Feb 19, 2010
2:55 pm
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...
6442 olli_perl Send Email Mar 8, 2010
12:58 am
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...
6443 Martin Busik
mbusik70 Send Email
Mar 9, 2010
7:06 pm
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...
6444 rosko.james Send Email Mar 10, 2010
5:03 pm
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....
6445 dbower01 Send Email Mar 17, 2010
4:09 pm
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...
6446 Martin Busik
mbusik70 Send Email
Mar 17, 2010
4:16 pm
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...
6447 dbower01 Send Email Mar 17, 2010
9:50 pm
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...
6448 chfoerst@...
chfoerst... Send Email
Mar 17, 2010
9:59 pm
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...
6449 Martin Busik
mbusik70 Send Email
Mar 18, 2010
5:16 pm
Hi, ... SOAPAction might be the cause. Try this: $proxy->on_action( "urn:".$_[1] } ); (see the on_action documentation) Cheers, Martin...
6450 dbower01 Send Email Mar 18, 2010
10:36 pm
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...
6451 Martin Kutter
kutterma Send Email
Mar 18, 2010
10:36 pm
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. ...
6453 smsless Send Email Mar 19, 2010
4:54 pm
I am new to SOAP::Lite within PERL and need this to access a data repository. However, access to this repository is using a function call...
6454 miage_2003 Send Email Mar 24, 2010
3:24 pm
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...
6455 Jo Rhett
jorhett Send Email
Mar 25, 2010
6:02 pm
The documentation (pod) for trace options indicates that the follow is possible: # Send output to a function SOAP::Lite->import( +trace => method => transport...
6456 Jo Rhett
jorhett Send Email
Mar 25, 2010
6:22 pm
Does the object being returned know how to represent itself to print? I suspect not. ... use Data::Dumper; print Data::Dumper->Dump( $result->result() ); ...
6457 Jo Rhett
jorhett Send Email
Mar 25, 2010
6:22 pm
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...
6458 Jo Rhett
jorhett Send Email
Mar 26, 2010
12:42 am
Very simple question. Where SOAPAUTH is a Header object, this works: my $som = $soap->call( SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH ); ...
6459 Jo Rhett
jorhett Send Email
Mar 26, 2010
12:42 am
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...
6460 Jo Rhett
jorhett Send Email
Mar 26, 2010
5:56 pm
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...
6461 Martin Busik
mbusik70 Send Email
Mar 27, 2010
9:04 pm
Hi, ... the construct: SOAP::Data->name( $method )->attr( $SAMAPI ) => $SOAPAUTH is just a syntactical variant to: SOAP::Data->name( $method )->attr( $SAMAPI...
6462 Martin Busik
mbusik70 Send Email
Mar 27, 2010
9:06 pm
Hi, ... You might use the trace handler to rewrite the response, but I suppose, your solution is the better one. Cheers, Martin...
Messages 6432 - 6462 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help