Hi Paul, Thanks for the response. It made some progress (defined as now giving a different error message) with the change you suggested. I reposted the code...
2097
Paul Kulchenko
paulclinger
Nov 19, 2002 7:02 pm
Hi Ian, ... I would disagree with that. XML-RPC spec is clear on that: <value>s can be scalars, type is indicated by nesting the value inside one of the tags...
2096
Ian Burrell
ib@...
Nov 19, 2002 6:42 pm
I think XMLRPC::Lite may be encoding undefined values incorrectly. It encodes them with an empty value element. The version 2 spec defines the <nil/>...
2095
Paul Kulchenko
paulclinger
Nov 19, 2002 6:30 am
Hi Gregg, ... If you can provide a simple XML message the service expect to receive, we might be able to figure out how to generate it. Best wishes, Paul. ... ...
2094
Paul Kulchenko
paulclinger
Nov 19, 2002 6:28 am
Hi Steve, ... I've just created your deserializer, but you also need to register ... $wsdlfile->deserializer($d); .... Should be enough to get it done. Best...
2093
Paul Kulchenko
paulclinger
Nov 19, 2002 5:52 am
Hi Ian, ... I should say yes ;). However, the main idea is that default serializer works in at least 90% of all cases and for all other occasions it's possible...
2092
Paul Kulchenko
paulclinger
Nov 19, 2002 5:37 am
Hi Dennis, ... I think you're correct; looks like your server is misconfigured. There is nothing SOAP::Lite specific at this point; make sure that Apache is...
2091
Paul Kulchenko
paulclinger
Nov 19, 2002 5:32 am
Hi Mark, ... That's where you're loosing me. I'm not sure what you mean by "last attribute". Let's walk through the code to make it clear. my $p =...
2090
Paul Kulchenko
paulclinger
Nov 19, 2002 5:19 am
Hi Karsten, ... Should be. HTTP::Daemon (which is used in SOAP::Transport::HTTP::Daemon) is inherited from IO::Socket::INET, hence PeerAddr can give you whan...
2089
Paul Kulchenko
paulclinger
Nov 19, 2002 5:08 am
Hi Ian, ... People are interested ;). You can send me your changes offlist if you want, I would appreciate it. ... I'm not sure what do you mean by this....
2088
Paul Kulchenko
paulclinger
Nov 19, 2002 4:55 am
Hi Brian, ... The returned result is just a hash, so you can handle it using code like this: my $detail = $response->faultdetail(); print...
2087
Paul Kulchenko
paulclinger
Nov 19, 2002 4:51 am
... I don't think there is anything you (or someone else) can do using CGI server directly. What you can do is to generate new id for your transaction, fork a...
2086
xz229
Nov 19, 2002 12:34 am
Hi, I am newbie on SOAP. This problem already spent me tons of time, please help me. Thanks a lot. I wrote a simple client and server, the soap client will...
2085
Duncan Cameron
dcameron@...
Nov 18, 2002 5:52 pm
... You can use something like Data::Dumper or Dumpvalue to track through all the levels of your hash use Data::Dumper; .. print...
2084
Brian S. Merson
bsmerson
Nov 18, 2002 4:49 pm
Hi Paul, That seemed to get me one level in, but there are more levels. When I added your suggested text, the code looked like: my $response =...
2083
Ian Burrell
ib@...
Nov 16, 2002 12:31 am
After some investigation, I figured out why SOAP::Serializer performs poorly with large amounts of data. The problem is that "tag" method creates new strings...
2082
Designlab Support
killwap
Nov 16, 2002 12:04 am
hi, sorry for my stupid question but is it possible to read the requester's IP address in a SOAP::Lite daemon? can anyone help me out of this? thanks in...
2081
Keanan Smith
KSmith@...
Nov 15, 2002 5:11 pm
Mark, that's basic perl syntax, lacking an explicit 'return39; perl subroutines return the value of the last expression in the subroutine. I'll bring my perl...
2080
Mark Proctor
M_Proctor
Nov 15, 2002 1:10 pm
Yeah sorry that is just me cutting and pasting from my application I'm playing with, was messing around with remote and local method invocation - pasted the...
2079
Duncan Cameron
dcameron@...
Nov 15, 2002 12:42 pm
... That line doesn't match my copy of pingpong.pl. It should be: print 'local: ', $p->next, "\n"; # local ... Not sure whether you're stumbling over...
2078
M_Proctor
Nov 15, 2002 12:08 pm
In the ping pong example I'm trying to understand what exactly is being printed when you do : print 'local: ', $p->SOAP::next, "\n"; # local The next method...
2077
M_Proctor
Nov 15, 2002 11:30 am
We are only using soaplite for the server, but will have both java and perl clients. As I understand it if I'm using autobinding to manipulate objects, then...
2076
rolandmaxxima
Nov 15, 2002 5:32 am
I wrote the Hello web service and client (from the O'Reilly SOAP book), hw_client.pl. When I run the script (command line), I get: "Calling the SOAP Server to...
2075
Ian Burrell
ib@...
Nov 14, 2002 9:54 pm
Has anyone done profiling and performance enchancements for SOAP::Lite? My application is running much slower when using XML-RPC than when doing direct calls....
2074
Martin McFly
BrookHeat
Nov 14, 2002 7:59 pm
Hello- I still haven't figured out a solution to my problem. If I'm using SOAP::Lite as a CGI server (using the dispatch_to method), and my object (called by...
2073
Paul Kulchenko
paulclinger
Nov 14, 2002 7:54 pm
Hi Brian, ... As far as I remember according to the SOAP spec the Fault detail element cannot be a string (or any other simple type): "All immediate child...
2072
Brian S. Merson
bsmerson
Nov 14, 2002 7:39 pm
Hi all. Let me start by saying that I am in no way a Perl (or SOAP) expert. :-) That said, I have a small Perl SOAP client program that seems to be working....
2071
Paul Kulchenko
paulclinger
Nov 14, 2002 3:57 pm
Hi M_Proctor, I don't think I fully understand the question, but I will try to answer anyway ;). Despite the name, SOAP doesn't know anything about objects or...
2070
M_Proctor
Nov 14, 2002 12:50 pm
If I use autobinding will other non-soaplite clients be able to use that too - ie do they allow remote manipulation of an object, not just calling an objects...
2068
pierpaolo
pierpit2000
Nov 13, 2002 10:52 pm
Hi to all! I'm new in group and i'm new also in soap::lite, so escuse me for any error in my mail(escuse also for my bad english). In my work i found a problem...