I have a SOAP server running in ruby using SOAP4R v1.5.6 and a SOAP client running in perl using SOAP::Lite v0.69. When a SOAP4R client sends a "get_time()"...
5980
thomas.lochmatter
thomas.lochm...
Jul 1, 2007 6:56 pm
In all SOAP::Lite examples I've seen, the class name was derived from the URL, e.g. When calling print SOAP::Lite ->...
5981
Garz
mx17f
Jul 1, 2007 11:19 pm
... from the URL, e.g. When ... another class? E.g. ... Have you looked into the dispatch_with method ? Here is a sample of my code : $server->dispatch_with ({...
5982
Christian
spokathome
Jul 2, 2007 7:05 pm
Hi, I was browsing the internet and the mailinglist for a while but could not find any solution to the following problem: I have my SOAP server running using...
5983
Eric Bridger
ebridger2004
Jul 5, 2007 6:48 pm
It is possible but I can't find an example in my code. See this link: http://www.majordojo.com/archives/2003_04.html#000009 which should get you started. Eric...
5984
shnuber
Jul 6, 2007 10:38 pm
I have a webservice client that might/might not be able to access the server, so getting timeout working is crucial. It seems to work fine over regular http,...
5985
Thomas Eden
teden
Jul 6, 2007 11:31 pm
Been using it with https no problem: my $response = SOAP::Lite ->outputxml(1) ->proxy($config{url}, timeout => $config{timeout}) ->uri($config{uri}) ...
5986
Ian Malpass
ian_a_malpass
Jul 9, 2007 7:52 pm
I'm using MantisConnect[0] to connect my code to the Mantis bug-tracking system[1]. The code I wrote works with 0.60, but fails with anything newer, and I...
5987
Robert Eden
rmeden
Aug 1, 2007 5:52 am
Look at the following code... $subscr= SOAP::Data ->name("subscription") ->type("subscription") ->attr({ subscriptionProfile => "OpenEGP", id => "3" }) ...
5988
rahed
raherh
Aug 1, 2007 10:03 am
... id/href pair attributes are used in soap to define uniquely its entities. So rename them (or qualifiy them into a namespace). -- Radek...
5989
Thomas Eden
teden
Aug 1, 2007 2:26 pm
You can use XML::Simple or any other XML generation tool you want. Just make sure you specify the SOAP::Data->type("xml")->value($myXML). Thom Eden...
5990
rahed
raherh
Aug 2, 2007 9:04 am
... Something like this: $soap = SOAP::Data->name(subscr=>\SOAP::Data->value( SOAP::Data->name(tag1=>10)->attr({'n1:id'=>1}), ...
5991
Ian Harisay
imharisa@...
Aug 17, 2007 12:00 am
Hi, hopefully someone can help me make this work. I just don't see what I am doing wrong here. I have written my client in Java. The Java code is working....
5992
robertatelastica
robertatelas...
Aug 26, 2007 9:52 pm
my $aws_wsdl = "http://ecs.amazonaws.com/AWSECommerceService/AWSECommerceService.wsdl"; #Create a new SOAP::Lite instance, feeding it Amazon's WSDL my...
5993
rahed
raherh
Aug 28, 2007 1:06 pm
... You want to call your service like this: ...
5994
Mandeep
mandeep_chd
Aug 28, 2007 4:39 pm
Hi Friends, I am new to the group. I want to use SOAP:Lite. On my linux host the current perl version is v5.6.1 built for i686-linux I have two questions: 1)...
5995
pokharel_ashish
Aug 28, 2007 6:55 pm
Hi everyone, This might be a repeat of questions in earlier post but cant find one. I would appreciate if anyone can help me figure out one small thing here. I...
5996
Mandeep
mandeep_chd
Aug 28, 2007 6:57 pm
Hi Friends, I am new to the group. I want to use SOAP:Lite. On my linux host the current perl version is v5.6.1 built for i686-linux I have two questions: 1)...
5997
Darren Young
darren_young
Aug 29, 2007 11:13 pm
I'm trying to place a SOAP::Lite service up that needs to service C# clients and it's just not working. What I have so far... The SOAP::Lite server: ...
5998
rawill4u
Aug 30, 2007 6:53 am
I need to create an xml body that looks like this: <Input_1> <Input_data> <data1 xsi:type="xsd:string">xxxx</data1> <data2 xsi:type="xsd:string">xxxxx</data1> ...
5999
warren_m_smith
Aug 30, 2007 6:54 am
I'm trying to accept SOAP requests from a MSMQ server, but MSMQ is sending some malformed messages, which I just have to accept and deal with [example below]. ...
6000
Allan
gaah68114
Aug 30, 2007 6:55 am
Hi, Can't complete an installation. May I post the installation messages to see if anyone has a recommendation or help. I'm kind of a newbie at CPAN. ...
6001
Eric Bridger
ebridger2004
Aug 30, 2007 2:29 pm
You can use the SOAP::Data->attr method to set attributes. Note: attr takes a hash reference as it's argument. E.g. \SOAP::Data->attr( { 'name' => 'myName39; }...
6002
Craig Dunigan
craigdunigan62
Aug 30, 2007 2:34 pm
I'm only marginally competent at SOAP::Lite, but I darn sure can help with CPAN. I just tried this myself, and it looks like this results from missing modules....
6003
rahed
raherh
Aug 30, 2007 4:47 pm
In the beginning of the installation you are asked which optional modules are to be installed. Failed tests 15 and 19 are Apache modules which are not...
6004
Morgan Fletcher
fnagrom
Aug 31, 2007 12:05 am
I am querying a service like so: $response = SOAP::Lite ->service("http://thing1.thing2.com:10000/FOO.wsdl") -> getId("$r"); Some of the records I get contain...
6005
Hans Poo
hanspoo
Aug 31, 2007 12:25 am
Hi, If you're on a Debian based, my case ubuntu, you may tray to find the package with: # apt-cache search -n perl|grep soap libsoap-lite-perl - Client and...
6006
Hugues de Mazancourt
hdemazancourt
Aug 31, 2007 8:54 am
... There's a *real* problem with the way Perl handles UFT-8 strings (or what it this is Unicode strings). You can't really predict what will happen to...
6007
Morgan Fletcher
fnagrom
Aug 31, 2007 3:21 pm
... Did you encode them on the server side? I can't modify what comes from the web service, it's vendor-provided. Morgan...
6008
Hugues de Mazancourt
hdemazancourt
Aug 31, 2007 6:45 pm
... Fortunately (for me), I'm on the server side. I don't know if there's any way to trap the message before it is passed to the XML parser. I guess it would...