Hi, I have a web service that needs to respond to soap requests from two name spaces. (The current namespace and a legacy one.) I'm swapping out the uri in...
6296
Vlad
vlad@...
Mar 12, 2009 2:18 pm
Hello everyone, I've encountered the following problem while implementing Web Service server side using Soap::Lite (Perl). I receive the following error...
6298
jing han
jing_han_66
Mar 13, 2009 7:33 pm
unsubscribe...
6299
malcolmpdx
Mar 17, 2009 9:05 pm
I'm certain that buried somewhere in the archives there is the answer to my question, but so far, I've been unable to find it, at least in the form that I can...
6300
Peter Farr
pgfarr
Mar 19, 2009 12:19 am
I am pretty new to this so I am probably doing something stupid, but I can't figure it out. I have the following code attempting to access a commercial product...
6301
rahed
raherh
Mar 19, 2009 1:44 pm
... Try this, it should generate exactly the same structure. $SOAP::Constants::PREFIX_ENC = 'SOAP-ENC39;; @data = ( ['modified_by_name39;,'admin'], ); ...
6302
Petar Shangov
pshangov
Mar 23, 2009 6:30 pm
Hi, I have a SOAP::Lite based server and an need to enable soma advanced debugging. In particular, I need to print out the full requests and responses for each...
6303
rahed
raherh
Mar 23, 2009 9:12 pm
... I simply use use SOAP::Lite +trace=>39;all'; It's documented in SOAP::Trace. -- Radek...
6304
Petar Shangov
pshangov
Mar 24, 2009 4:19 pm
Hi, I have tried enabling all traces but that is no what I need. +trace->39;all' gives me this: SOAP::Transport::new: () SOAP::Serializer::new: () ...
6305
Petar Shangov
pshangov
Mar 24, 2009 8:14 pm
Hi, Using WinXP, Strawbery Perl 5.10, latest SOAP::Lite from cpan. I am running the daemon script from the command line. Like I said, I tried printing to a...
6306
Petar Shangov
pshangov
Mar 24, 2009 11:18 pm
Hi, I have attached a sample test script that produces no output on my machine. Regards, Petar...
6307
Lee Carmichael
lecar_red
Mar 25, 2009 1:14 am
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...
6308
rahed
raherh
Mar 25, 2009 8:31 am
... Apparently you access your local server. I haven't tried this. When you call a remote host you must get what you want, xml request & response. I guess the...
6309
Lee Carmichael
lecar_red
Mar 25, 2009 5:43 pm
Hello Petar, After seeing your example, I just realized that you are trying to debug a server. Sorry my last post won't be much help since it seems that...
6310
Petar Shangov
pshangov
Mar 25, 2009 6:32 pm
Hi, thanks to everyone who responded. ... rahed, the problem turned out to be that all the relevant tracing calls are made inside SOAP::Transport::HTTP::Client...
6311
sampengdotnet
Apr 2, 2009 2:19 pm
hi SOAP::Lite experts I met a problem in retrieve SOAP call result. when i can a remote method use SOAP::Lite;# + trace => qw(method debug); my $PROXY =...
6312
Martin Busik
mbusik70
Apr 2, 2009 2:35 pm
Hello list, I was googling on SOAP::Lite and WS-Security / userToken, but haven't found an appropriate solution. There is a package WSRF::Lite, but this does...
6313
Srinivas Vippagunta
srinivasvipp...
Apr 2, 2009 7:22 pm
Hello, I am trying to construct the parameters for a method. I am following instructions at ...
6314
Srinivas Vippagunta
srinivasvipp...
Apr 2, 2009 9:11 pm
Hello, Is there an easy way to suppress the type info in a request? For eg: my $method = SOAP::Data->name('TestMethod39;) ->attr({xmlns => 'http://abc.com/39;}); ...
6315
Petar Shangov
pshangov
Apr 2, 2009 9:47 pm
You can always create the xml you need using whatever tool you wish and them pass it in raw format to SOAP::Data. From the docs: $xml_content =...
6316
Srinivas Vippagunta
srinivasvipp...
Apr 2, 2009 9:49 pm
Thanks peter. I tried that and it works but I was somehow hesitant in using the raw xml. I figured out a way to suppress the type info. I created a custom...
6317
Lee Carmichael
lecar_red
Apr 6, 2009 4:24 pm
Hello, Maybe I'm missing something more here but when I want to make sure SOAP::Lite doesn't do its automatic typing of an data element I just use the 'type'...
6318
Lee Carmichael
lecar_red
Apr 6, 2009 5:03 pm
Hello, In your example, $ret is really a soap response object (SOM) unless something happened to cause an exception (die or croak) to occur. You can read the...
6319
rahed
raherh
Apr 7, 2009 7:48 am
... $s->autotype(0); should be ok for requests from a client. -- Radek...
6320
Allen Goldschmidt
allengo
Apr 11, 2009 5:21 pm
I installed ActiveState PERL and then used CPAN command line to install SOAP::Lite. It freezes in the middle of the installation at...
6321
Petar Shangov
pshangov
Apr 12, 2009 9:20 pm
This is a known bug, reported at rt.cpan.org, but has not been fixed yet....
6322
mtys0904
Apr 16, 2009 2:04 pm
Hello, I am trying the connection with a specific Web service, but unfortunately it is not working...and I would like to ask someone if you could help me. The...
6323
rahed
raherh
Apr 17, 2009 9:32 am
... I don't see any getDDBJEntry operation in wsdl definition. Cannot you upgrade to the latest SOAP::Lite 0.710.08? 0.60 is way too old. -- Radek...
6324
Srinivas Vippagunta
srinivasvipp...
Apr 18, 2009 1:37 am
Hello, Is there a way dynamically construct a soap request from the wsdl using soap::lite? Using java you can use JAX-WS-RI, Axis, XFire etc but I am not sure...