... That is what SOAP::Lite does by default. You need the on_action() method to override that default. As I explained previously ->on_action(sub { join('/39;,...
1667
aroth816
Jul 2, 2002 4:41 am
While waiting for a reply, I've tried a few other things. Ive noticed that the same code (wsdl,cgi,perl module) generates a different XML response using a...
1668
aroth816
Jul 2, 2002 4:43 am
The thread I am talking about can be found here: http://groups.yahoo.com/group/soaplite/message/1661 http://groups.yahoo.com/group/soaplite/message/1663 ...
1669
Paul Kulchenko
paulclinger
Jul 2, 2002 6:07 am
Hi, Weidong! ... You may use Literal serializer: BEGIN { package SOAP::Serializer::Literal; @SOAP::Serializer::Literal::ISA = 'SOAP::Serializer'; sub envelope...
1670
Andersson, Kimmo
Kimmo.Andersson@...
Jul 2, 2002 10:50 am
Hi ! I am testing my SOAP client library and I using a very simple test server, a Perl script. But I get the error message "Denied access to method". Here is...
1671
Weidong Wang
weidong
Jul 2, 2002 3:26 pm
Thanks, Paul. This is very helpful. I am getting to generate the envelope that I want. Here is what I found out: 1. Without using a WSDL file To make...
1672
Paul Kulchenko
paulclinger
Jul 2, 2002 5:56 pm
Hi, Randy! ... That's correct. ... it'll put the ELEMENT in 'urn:SprintPCS' namespace, but doesn't change the TYPE/SCHEMA namespace. To do that, you need to...
1673
aroth816
Jul 2, 2002 6:36 pm
Thank You Paul. This worked great! Adam ... was ... the ... extra...
1674
Paul Kulchenko
paulclinger
Jul 2, 2002 11:50 pm
Hi, Adam! ... you should be able to do this: $min = bless {minutesUsed => 1000, minutesLeft => 500} => 'minutes39;; and then use $min with the same result. Best...
1675
jeromesonnet2002
jeromesonnet...
Jul 4, 2002 8:25 am
Hi, I'm trying to connect to a WASP SOAP service using WSDL. Everything works just fine but one wrong namespace (the MapRequest one). ... <?xml version='1.0'?>...
1676
fortefellows
Jul 4, 2002 4:13 pm
Wanted for an india's top 10 It companies If This vacancy does not suit your profile than please forward it to someone to whom it does These are the following...
1677
Chris
marceusx
Jul 8, 2002 2:20 pm
Hmm ... I just noticed and was wondering is there a reason why the file in CPAN is a .zip file? Cause it's causing gunzip (and thus -MCPAN) to barf on one of...
1678
Paul Kulchenko
paulclinger
Jul 8, 2002 8:54 pm
Hi, Chris! ... Should be .tar.gz. At least this link returns proper name (http://search.cpan.org/search?dist=SOAP-Lite). Since there are two packages (.zip and...
1679
lbotha_uk
Jul 9, 2002 3:50 pm
Hi all, I'm somewhat confused about the return values I receive when calling my SOAP service. Whenever I call a remote method, the type of the return value is...
1680
nate_bowler
Jul 9, 2002 4:28 pm
First of all, let me say that I have had great success using a Perl client to connect to my Java WS! I'm running Perl on Win32 and the stubmaker.pl tool...
1681
nate_bowler
Jul 9, 2002 5:06 pm
BTW, without using the stubmaker.pl, I get the same error. Do I need to override a serializer or something? Everything else in the XML looks good, but the...
1682
Weidong Wang
weidong
Jul 9, 2002 5:28 pm
When using service() call, you get back the result directly, instead of the SOM object. To get it, do this: my $s = SOAP::Lite ...
Hello there, I Have the problem, that when I try to send german umlauts, most of the times I get strange characters on the wire: <Text...
1685
Keanan Smith
KSmith@...
Jul 10, 2002 3:52 pm
Actually, those two characters are the UTF-8 Encoding for an a-umlat, the other end just isn't iterpreting them properly :) ... From: anmue2002...
1686
nate_bowler
Jul 10, 2002 5:13 pm
I'm unable to pass a complexType to a Java web service running Sun's JAXRPC. I've noticed several differences between the traces of my Java and perl client...
1687
kdsoaplite
Jul 11, 2002 7:12 am
Is there a hook to allow change of SOAP-ENC:arrayType="ur-type[0]" to be changed to the known return type even though the array is empty so there is no way for...
1688
manish_s_patil
Jul 11, 2002 6:02 pm
Hi Paul, I am working on a perl soap client to access the web service from java server. I am using java server that supports an apache SOAP which is an...
1689
manish_s_patil
Jul 11, 2002 6:02 pm
Hi Paul, I am working on a perl soap client to access the web service from java server. I am using java server that supports an apache SOAP which is an...
1690
Jamie Curmi
jamiecurmi
Jul 14, 2002 7:34 am
Hi All, I'm very new to SOAP::Lite, and I seem to have a problem when I do anything a little more complicated than the examples I can find on the net. I'm...
1691
Duncan Cameron
dcameron@...
Jul 14, 2002 8:25 am
... Something along these lines will give you what you're looking for: return SOAP::Data->name('Foo') ->value({ Bar => SOAP::Data->type(int => 12) } ); ...
1692
Jamie Curmi
jamiecurmi
Jul 14, 2002 9:38 am
Thanks Duncan. I really appreciate the help. Wish I'd found this mailing list earlier today. :-) Jamie...
1693
VinodPPanicker
Jul 15, 2002 10:09 pm
Hello All, I am trying to develop a distributed system using a Soaplite perl server and accessing it via a java client. This application would need complex...
1694
Byrne Reese
byrnereese
Jul 16, 2002 1:09 am
I have been hacking on this for a couple of days - it is not been rigorously tested, but it works for our use cases at Grand Central. The latest version is...
1695
Rick Nicoletti
rickynicoletti
Jul 16, 2002 1:27 am
What does the xmlschema() method do? I can't find any reference to it in the man pages. -Rick...