Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6235 - 6264 of 6385   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6235
I'm not a great perl person, but doesn't using eval put the fault string out of scope for the block in which you are attempting to print? I've always been able...
pat.mariani@...
w8itout
Offline Send Email
Oct 1, 2008
2:55 pm
6236
Hi all I am calling a Jasperserver SOAP server to get the results of a report. The call is successful, but I can not view the results. It always end with: ...
Supra, Morne
mornesupra
Offline Send Email
Oct 1, 2008
2:55 pm
6237
... string ... I also practically never used eval, so I don't know ;) ... The eval was a workaround, since without using it, I wouldn't get *anything* back in...
Oeschey, Lars (I/ET-8...
lars.oeschey
Offline Send Email
Oct 1, 2008
2:55 pm
6238
I got a bit further on this, though not very successful. Using the ->trace method of SOAP::Lite, I could see what I'm sending and receiving: sent: <?xml...
Oeschey, Lars (I/ET-8...
lars.oeschey
Offline Send Email
Oct 1, 2008
2:55 pm
6239
eval is typically used to catch a critical error - exactly as you said where perl does not return. the parameter missing error you are receiving is because it...
patrick mariani
w8itout
Offline Send Email
Oct 1, 2008
4:16 pm
6240
Hi, I am using SOAP-Lite v 0.710.08. I am trying to get the result data from the xml response, but I keep getting error 'Can't call method "dataof" without a...
Bryan
rdsxfan74
Offline Send Email
Oct 2, 2008
6:25 pm
6241
... as you can see from the post after that one (btw, this is the slowest list I know, not from participants but post speed, i.e. yahoo ;)), I've been able to...
Oeschey, Lars (I/ET-8...
lars.oeschey
Offline Send Email
Oct 2, 2008
6:26 pm
6242
... Appears your $som object is an empty string. -- Radek...
rahed
raherh
Offline Send Email
Oct 3, 2008
3:02 pm
6243
... First don't input raw values to teInput function. Follow your service description. Something like this: my $som=$soap->teInput( SOAP::Data->name(in0 =>...
rahed
raherh
Offline Send Email
Oct 4, 2008
3:53 pm
6244
... great, this works! Thanks a lot! Would you mind explaining what the difference is now? Can I maybe read up somewhere about generic Soap handling? It seems...
Oeschey, Lars (I/ET-8...
lars.oeschey
Offline Send Email
Oct 6, 2008
2:57 pm
6245
... This works good for the positive case (i.e. all values are good). If I want to get an error, by sending the last value as string, I should get an error...
Oeschey, Lars (I/ET-8...
lars.oeschey
Offline Send Email
Oct 6, 2008
2:57 pm
6246
... You should get the fault this way. You may changed the $som object before calling a fault method. -- Radek...
rahed
raherh
Offline Send Email
Oct 8, 2008
7:48 am
6247
... A request expects a soap structure which is done by SOAP::Data class. Check the SOAP::Lite docs. -- Radek...
rahed
raherh
Offline Send Email
Oct 8, 2008
7:55 am
6248
We have Perl v5.8.0 client code that has always targeted SOAP 1.2 with SOAP::Lite 0.55. It runs against a remote server with the same releases. We recently...
Tony Gravagno
tgravagno
Offline Send Email
Oct 13, 2008
10:50 pm
6249
... You can change the content-type with $soap->transport->http_request->header('Content-type' => 'text/xml'); -- Radek...
rahed
raherh
Offline Send Email
Oct 14, 2008
9:31 am
6250
... Radek responded ... Thank you for the suggestion. This does change the header but the server is now complaining that the client is using the wrong SOAP ...
Tony Gravagno
tgravagno
Offline Send Email
Oct 18, 2008
11:22 pm
6251
Hi Tony, the namespaces are defined in SOAP::Constants. Unfortunately they cannot be overridden at run time, because perl's peep-hole optimizer inlines ...
Martin Kutter
kutterma
Offline Send Email
Oct 19, 2008
3:09 pm
6252
Hello, I'm trying to call a webservice (which I think is generated using axis). If I specify the WSDL I always get the same empty param in the request even if...
paolo_asioli
Offline Send Email
Oct 20, 2008
4:31 pm
6253
I am trying to install SOAP-Lite 0.710.08 on Windows XP with Perl v5.8.8 build 817 (Mar 20, 2006) and I am receiving the following error: When running perl...
Bryan
rdsxfan74
Offline Send Email
Oct 27, 2008
3:32 am
6254
Sounds like you might be missing http://search.cpan.org/author/JPEACOCK/version-0.76/lib/version.pod Eddie From: soaplite@yahoogroups.com...
Edward Kawas
kawas7
Offline Send Email
Oct 27, 2008
2:36 pm
6255
dear all, i have 2 case that realy need your help. but if you only answer 1 of those care really thanks fully to you. First case: i want to establish the...
duelist_thoa
Online Now Send Email
Oct 29, 2008
2:28 pm
6256
I've never done any SOAP or WSDL stuff before (although I am familiar with various RPC standards). I was reading through some of the documentation for...
matthewlenz
Offline Send Email
Nov 10, 2008
8:41 pm
6257
From what I can tell, I think that you will be fine. Eddie From: soaplite@yahoogroups.com [mailto:soaplite@yahoogroups.com] On Behalf Of matthewlenz Sent:...
Edward Kawas
kawas7
Offline Send Email
Nov 10, 2008
11:06 pm
6258
I exposed a method using WebServices in Java (with WSDL) and I don't know how to call from SOAP:Lite. This method have only a parameter with this object...
monkiki5
Offline Send Email
Nov 13, 2008
4:11 pm
6259
Does anyone have any examples of how to call a web service in Perl without using the SOAP:Lite package or any other third-party package? I realize it may be...
Bryan
rdsxfan74
Offline Send Email
Nov 17, 2008
9:23 pm
6260
For anyone watching this thread, the issue was resolved for the most part with the code that Martin provided. Just add a semi-colon to the end of the using...
Tony Gravagno
tgravagno
Offline Send Email
Nov 17, 2008
10:23 pm
6261
Thanks for the information and an advice Byrne. Dear All, Can you please help me solve my doubts mentioned at the bottom of this mail? Thanks, Sandeep ... ...
sandeep sahane
sandeep.sahane
Offline Send Email
Dec 2, 2008
5:42 am
6262
... I hope I don't offend anyone using SOAP::Lite but I'd to offer some personal observations. We were asked by a client over 5 years ago to provide a...
Tony Gravagno
tgravagno
Offline Send Email
Dec 2, 2008
7:01 am
6263
Hi i am using wsdl the contains of it is <complexType name="ArrayOfTarget"> <complexContent> <restriction base="soapenc:Array"> <attribute...
dinesh_chb
Offline Send Email
Dec 6, 2008
6:43 am
6264
Hello all, I am writing web service. I want to use soap lite for the client side and for the server I am using jax-ws. I want to handle errors using ...
Yair Gottdenker
yairgot
Offline Send Email
Dec 9, 2008
12:12 am
Messages 6235 - 6264 of 6385   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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