... See the thread on Accessing the SOAP::Header. Basically you need to have your server classes derived from SOAP::Server::Parameters. This will provide the...
4564
§hõbhãñ™
show2sh
Apr 12, 2005 7:32 am
Hi, I'm generating and sending a SOAP envelope to the server, but when the client is executed I see that the XML elements in the generated SOAP envelope are...
4565
Graham Irvine
graham23sk
Apr 13, 2005 4:03 am
Hi Using SOAP::Lite as a client can I manipulate the Envelope Attributes easily . i.e SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" ...
4566
Byrne Reese
byrnereese
Apr 13, 2005 2:26 pm
In SOAP::Lite 0.60 and 0.65, you can easily add a new namespace to the envelope using the following: $soap->serializer->register_ns("http://uri","myprefix")...
4567
Cristina Aurrecoechea
aurreco
Apr 13, 2005 11:11 pm
I have a SOAP::Lite (0.65beta2.1) client using a simple Axis (1.2RC2) service. The service has only one method (getNameList()) and returns an array of 4 ...
4568
Graham Irvine
graham23sk
Apr 14, 2005 3:09 am
... The only way so far i have found to do this is to create my own serializer namespaces like this . ...
4569
Graham Irvine
graham23sk
Apr 14, 2005 3:09 am
... That doesnt work with 0.60a (CPAN version). It does however work with 0.65_beta4 so may be of use in the future. However your post did help me with my add...
4570
Ivan Venuti
ivanvenuti
Apr 14, 2005 2:11 pm
I'm new to Perl and I've written a Web Servis in Java using Axis 1.2Rc3 I've installed SOAP:Lite (with MIME::Parser 6.01) and I'd like to write a Perl client...
4571
Robert Nicholson
robertatelas...
Apr 14, 2005 2:32 pm
Does anybody know why Amazon requires you to walk the SOM to get meaningful results? In the past I was able to get what I need directly from the Result but now...
4572
Byrne Reese
byrnereese
Apr 14, 2005 3:07 pm
... It should be defaulting to 2001 now. Weird that it is not. ... Yes. $soap->soapversion(1.2); ... Only when using attachments, but there is a fix. ... Yes....
4573
jmglov027
Apr 14, 2005 3:46 pm
Long time lurker, first time poster here. Hullo to the group! I have been using SOAP::Lite for about a year and a half now, first 0.55, then 0.60. I just...
4574
Alex Pena
bigel0w21
Apr 14, 2005 4:51 pm
Try using trace=>39;all' to help debug your client. It looks like you are sending data that is not expected on the server. ... #!/usr/bin/perl -w use warnings; ...
4575
Cristina Aurrecoechea
aurreco
Apr 14, 2005 7:35 pm
Thanks for the replies. Graham solution works, and I get a good SOAP response. Byrne, changing the SOAP version does not work. Now I have a different problem....
4576
Graham Irvine
graham23sk
Apr 15, 2005 10:25 am
... Im not a "perl monk" so someone might correct me here . But the reason for this is that the $soap call returns a scalar reference to the array .. so it...
4577
Ivan Venuti
ivanvenuti
Apr 15, 2005 10:54 am
thanks to anyone who has written. The error is: Fault :org.xml.sax.SAXException: SimpleDeserializer encountered a child element, which is NOT expected, in...
4578
Graham Irvine
graham23sk
Apr 15, 2005 12:13 pm
... xmlns="http://ivenuti.altervista.org/ProductsExampleWS.xsd1">2005-04-14</ElementDate> ... This should create the same soap request as the Axis Client. ====...
4579
Cristina Aurrecoechea
aurreco
Apr 15, 2005 4:06 pm
THANKS! this is clearly my not understanding Perl. I was already using trace but I could not figure out how to extract the array from the unblessed reference. ...
4580
Ivan Venuti
ivanvenuti
Apr 15, 2005 4:21 pm
ops... I've done "reply" and I've send email to Graham instead of the group, sorry... ... ...
4581
Ivan Venuti
ivanvenuti
Apr 15, 2005 4:44 pm
My forwarded message seems to be quite difficult to read! here is a re-post much more easy to read. First of all seems that the generated SOAP message is still...
4582
Monica Vallejo
movallejo
Apr 16, 2005 1:10 am
Hi I'm trying communicate a client writing in C with gSOAP v2.7 to a SOAP::Lite server. I have a very simple function: int ns__test(char *name, char **); I've...
4583
Graham Irvine
graham23sk
Apr 16, 2005 10:25 am
mmm .. yes thats a tough one . Document Literal Encoding , no method element . Im not sure if SOAP::Lite can handle that yet ? perhaps someone else can help ?....
4584
Graham Irvine
graham23sk
Apr 16, 2005 10:41 am
Hi Do you have any access to the SOAP::Lite server . Solution to the <c-gensym> nuisance being returned by it is to properly escape the SOAP::DATA elements .....
4585
Ivan Venuti
ivanvenuti
Apr 16, 2005 10:52 am
thanks Graham: it works! Unfortunatly the solution seems too much "ad hoc" one and pporly based on my WSDL :) Thank again, I open another thread for ...
4586
Ivan Venuti
ivanvenuti
Apr 16, 2005 10:56 am
First of all many thanks for your usefull comments! Here are some results, using various tools & languages; these results are achieved using my Axis server...
4587
Graham Irvine
graham23sk
Apr 16, 2005 11:46 am
Hi Ivan ... request so im not sure if there is much difference there ... However if you need to stick with soap::lite I have in the past had some joy with...
4588
Ivan Venuti
ivanvenuti
Apr 16, 2005 6:09 pm
I've given a look at SOAP::WSDL. This is my example (the same as previously posted but using only SOAP::Lite): use strict; use SOAP::WSDL; my ...
4589
David Inglis
david.inglis@...
Apr 17, 2005 11:51 pm
Can anybody please help with this error message SOAP::Schema->schema has been deprecated. Please use SOAP::Schema->schema_url instead. at ...
4590
David Inglis
david.inglis@...
Apr 18, 2005 1:02 am
Can anybody please help with this error message sorry did not have a default route set when I sent my last request for assistance, I now get this message ...
4591
Graham Irvine
graham23sk
Apr 18, 2005 1:31 am
Hi David The schema has been depreciated warning is because of SOAP::WSDL Thats not supported as part of SOAP::Lite , its a seperate module but is using a...
4592
Tom Drought
thdrought
Apr 18, 2005 11:52 am
I have a SOAP:Lite script which is making a call to SOAP and am receiving this error message: soapenv:Server.userException org.xml.sax.SAXException: No...