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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 2967 - 2996 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
2967 poulkornmod Send Email Sep 2, 2003
10:40 am
Hi all, Have any of you managed to generate a wsdl file from a soap service that is not using the mod_perl apache interface? I have succesfully made myself a...
2968 poulkornmod Send Email Sep 2, 2003
10:56 am
For your information - I of caused made an typing mistake in my mailing: filename is not soap.pm but MySOAP.pm Still appreciate all your help! Poul ... service...
2969 joycecho1121 Send Email Sep 2, 2003
4:25 pm
Server: sub getElements{ my $self = shift; my @a = $self->{objects}; } Client my $exist->new(); my @array = $exist->getElements(); @array returns the number of...
2970 Pierre Denis
pdenis@... Send Email
Sep 3, 2003
8:34 am
Hello Poul, which version of perl are you using? (5.8.0 has a bug with UNIVERSAL::AUTOLOAD which prevents it to work) Regards...
2971 dsalumbre Send Email Sep 3, 2003
4:40 pm
Hi: I am pretty new to Soap::Lite and Web Services. I am looking into calling a soap::lite server application through Oracle's PL/SQL. The nearest thing I can...
2972 Bit-Man?=
bitman09 Send Email
Sep 3, 2003
6:39 pm
Hi all, "let me introduce myself". I'm currently working on a messaging gateway called TRex (http://trex.sourceforge.net/) and one of its technology supporters...
2973 jpeyser Send Email Sep 3, 2003
10:09 pm
For C Soap use gSoap. See http://www.cs.fsu.edu/~engelen/soap.html. There are plenty of examples. It works fine with SOAP::Lite. ... Soap::Lite...
2974 jigsaw9876 Send Email Sep 4, 2003
9:32 am
Hi, Can anyone give me a working example for sending and receiving attachments using SOAP::Lite, please? I have followed the example at ...
2975 Byrne Reese
byrnereese Send Email
Sep 4, 2003
2:24 pm
Try this variant which in another example... foreach my $part (${$som->parts}) { print $part->stringify; } However, it LOOKS like $som->parts is undefined all...
2976 Ortner
ptirup Send Email
Sep 5, 2003
9:21 am
Hello, After many tries, and after reading newsgroup messages, I still have a problem.: I was running my SOAP service with dynamic dispatching (using ...
2977 Jacoby, Patrik
jacpad1 Send Email
Sep 5, 2003
9:28 am
Hi, I suppose you are using soap as a cgi. I had the same problem and the reason was that the wwwrun user (who is executing the soap code) didn't have the ...
2978 Ortner
ptirup Send Email
Sep 5, 2003
9:50 am
Hi! first, thanks for your answer.. You're right, I'm running my server as a fast CGI, but the cgi has the good permissions... The problem is that server is...
2979 Tilman Koschnick
tilmankoschnick Send Email
Sep 5, 2003
10:25 am
Hi, I had the same problem, and for me the dispatch_with did the trick: ->dispatch_with({ 'urn:myservice1' => 'myglobalpackage' }) Note that the URN and the...
2980 poulkornmod Send Email Sep 5, 2003
10:37 am
Hi, If you have the package outside the soap cgi file - you need perl to reference to it! Either by placing your globalpackage.pm in you @INC path (eg. place...
2981 jigsaw9876 Send Email Sep 5, 2003
11:12 am
Hi, That didn't quite work either. I have tracing at the client side (I don't think I know/understand how to start tracing at server side though I have read...
2982 Ortner
ptirup Send Email
Sep 5, 2003
11:39 am
Thanks for all your answers, now it works with the Tilman's method (with dispatch_with) Regards ... Benoit Ortner Comité Réseau des Universités ... to be ...
2983 jigsaw9876 Send Email Sep 8, 2003
2:14 pm
Hi, Can anyone provide me with a working piece of code sending and receiving attachments using soaplite, please? I am quite new to perl/soaplite, so could be ...
2984 hurricane_san Send Email Sep 9, 2003
9:42 am
Hello, I'm trying to use SOAP::Lite on a server. It's easy to get the parameters values, by order or by name. It's what I need for most of the calls but one. ...
2985 Mark Cance
mscance Send Email
Sep 11, 2003
9:16 am
SOAP::Lite is working really well on our development servers. However I¹ve just moved the code to our production machines and it seems to be causing a ...
2986 Byrne Reese
byrnereese Send Email
Sep 11, 2003
2:01 pm
I am not necessarily saying you are wrong - but I am not convinced that SOAP::Lite is causing the segfault - in my experience, segfaults typically come from...
2987 alpark444 Send Email Sep 11, 2003
3:50 pm
Hello, Is it possible to have the server take an array from the client, run a script on the server side and return a hash to the client? If so are there any...
2988 Mark Cance
mscance Send Email
Sep 11, 2003
3:52 pm
I have a nasty feeling you right!! I will investigate further, thanks for the advice. Mark....
2989 teden Send Email Sep 11, 2003
7:35 pm
Folks, Is there a way to specify the .xsd file used to validate the XML being passed to/from a SOAP::Lite service? Thom Eden...
2990 Marten Lehmann
martenlehmann Send Email
Sep 12, 2003
11:49 am
Hi, at http://guide.soaplite.com/#types%20and%20names I found some information about using types and names for SOAP-calls by names. But I couldn't any trick on...
2991 Thom Eden
teden Send Email
Sep 12, 2003
2:29 pm
Folks, I am trying to write a bit of code on the server side to evaluate the incoming parameters from my client. My incoming XML looks like this: <soap...
2992 Duncan Cameron
duncan_camer... Send Email
Sep 12, 2003
3:57 pm
... You can get the SOM object by inheriting from SOAP::Server::Parameters class. See "ACCESSING HEADERS AND ENVELOPE ON SERVER SIDE" in the docs for an...
2993 Thom Eden
teden Send Email
Sep 12, 2003
4:42 pm
Duncan, Thanks, I found that in the docs about 15 minutes after I posted. I got it working like a champ now... Thom ... From: Duncan Cameron...
2994 alpark444 Send Email Sep 12, 2003
5:33 pm
I've got a simple cgi server with client running like one of the examples in a tutorial, however, it doesn't print the return. I tried the +trace=>all option...
2995 Mark Cance
mscance Send Email
Sep 15, 2003
3:02 pm
Hi, I've gone back and done a clean install of everything. Once again apache, mod_perl and my other apps work fine but when I issue a request to my service via...
2996 Paul Kulchenko
paulclinger Send Email
Sep 15, 2003
4:01 pm
Mark, The only things that comes to mind is to look at the "Apache is crashing with segfaults" section: ...
Messages 2967 - 2996 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