I am posting a solution to my own question, in case future programmers face an identical/similar problem. Thanks for the off-list assistace I received. The...
3960
Rakesh Ghumatkar,Terr...
terrafirmapune
Oct 1, 2004 7:56 am
Please do not change the subject line and reply to terrafirmapune@... Greetings! We need Perl, J2EE Programmers for our client in Pune. About the...
3961
robertatelastica
robertatelas...
Oct 1, 2004 10:15 pm
So I have a complex type thus my $params = SOAP::Data->type('SysHashMap39;)->name("arg0" => \SOAP::Data->value( @keys, @values)); @keys are strings and values...
3962
jnnfrmackey9449
Oct 3, 2004 1:21 am
1 BILLION MUSIC, MOVIES and VIDEOS... - Unlimited access to the largest MP3 collection Ever! Over 5 Million - Unlimited Music Downloads - Unlimited Movie...
3963
Robert Nicholson
robertatelas...
Oct 4, 2004 2:53 am
When I try to install SOAP::Lite on OSX I get unning make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib39;,...
3964
Kirti Kulkarni,Terra ...
terrafirmapune
Oct 4, 2004 10:13 am
Please do not change the subject line and reply to terrafirmapune @yahoo.com Greetings! We need Perl, J2EE and oracle PL/SQL Programmers for our client in...
3965
Joseph Hourcle
jhourcle
Oct 4, 2004 3:27 pm
To answer the subject -- yes. I've built it under both Jaguar and Panther, without problems. (Jaguar on a G4, Panther on both G4 and G5) The Panther installs...
3966
jigsaw9876
Oct 5, 2004 8:58 am
Hi, How do I extract the faultstring and print it? My outputxml() looks like this: <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xsi="http:// ...
3967
Artur Brodowski
bzd@...
Oct 5, 2004 1:26 pm
Hello, I wrote a simple SOAP proxy, but I have a problem accesing different methods from client during one session: use SOAP::Lite; # ... $soap = SOAP::Lite ->...
3969
Brian Buechler
iambrian_pmme
Oct 5, 2004 6:50 pm
I am writing a SOAP::Lite CGI server that is intended to receive lots of xml data from a client in the form of an XML document that has been imbedded in a SOAP...
3972
jpeyser
Oct 6, 2004 5:01 pm
It might work if SOAP::Lite knew the definition of type SysHashMap. The following will generate an array of an array. my $time_params = SOAP::Data->name("arg0"...
3973
gary_grubb@...
garygrub
Oct 7, 2004 3:59 am
Hi all, I have a J2EE webservice that takes a String[] as a parameter. I wish to use SOAP::Lite to pass an array, e.g. @MYARRAY. Currently I send strings in...
3974
gary_grubb@...
garygrub
Oct 7, 2004 4:27 am
Hi all, I am calling a J2ee web service with SOAP::LIte. If I call the webservice with incorrect datatypes I get no debug info. Is there a tool that I can get...
3975
Mark Fuller
amigo_boy2000
Oct 7, 2004 4:37 am
If you go to www.capeclear.com and poke around, you'll find a "nettool" which will get between your client and server. It's hard to find, so I just went and ...
3976
Paul Harman
seancortan
Oct 7, 2004 8:11 am
use SOAP::Lite qw/trace/; ... This E-Mail and any attachment is intended only for the person or entity for which it is addressed and may contain confidential...
3977
Hitoshi Asaeda
Hitoshi.Asaeda@...
Oct 7, 2004 12:36 pm
I tried to use SOAPLite 0.55 and 0.60, but both were failed with the use of mod_soap. My OS is NetBSD-current. My apache server is 2.0.52. mod_perl is 1.99.16....
3978
Byrne Reese
byrnereese
Oct 7, 2004 1:08 pm
I wouldn't necessarily go commenting out use and require statements. They are there for a reason. You need to make sure those packages have been installed...
3979
Byrne Reese
byrnereese
Oct 7, 2004 2:23 pm
Also, tcpmon that ships with Axis is very helpful. I am sure you can find a binary somewhere....
3980
Hitoshi Asaeda
Hitoshi.Asaeda@...
Oct 7, 2004 2:49 pm
... Does someone recognize what I've missed? ... So should I use apache 1 and mod_perl 1? ... Ok, at first I'll check cvs code, and try apache/mod_perl ver.1...
3981
Hitoshi Asaeda
Hitoshi.Asaeda@...
Oct 7, 2004 2:59 pm
... I give you one report. I replaced Lite.pm and Transport/HTTP.pm, which was given by cvsweb, from my SOAPLite-0.60. The error message is now only: [error]...
3982
Byron Whitlock
blackboy9692002
Oct 7, 2004 5:52 pm
An exellent windows freeware monitor is available at pocketsoap.com http://www.pocketsoap.com/tcptrace/ gary_grubb@... wrote: Hi all, I am calling a...
3983
Hitoshi Asaeda
Hitoshi.Asaeda@...
Oct 7, 2004 7:00 pm
... I installed all modules and new HTTP.pm and Lite.pm, and then retried. The situation goes well step by step. But not yet solved. I got an error saying: ...
3984
Joseph Hourcle
jhourcle
Oct 7, 2004 9:04 pm
... [trimmed] ... I've never had such a problem. The following works for me: #!/usr/bin/perl -- use SOAP::Lite; my $soap = SOAP::Lite ->...
3985
achan_work
Oct 8, 2004 1:30 pm
Hi, I would like to use SOAP::Lite to communicate with the web server, but I need to send the token to get the access. Does anyone know how to set up in ...
3986
Byrne Reese
byrnereese
Oct 8, 2004 8:13 pm
Currently in 0.60, this capability is not easily accomplished. In fact you identified the only way to do it: subclass SOAP::Transport::HTTP::Client. But in...
3987
Byrne Reese
byrnereese
Oct 8, 2004 8:27 pm
SOAP::Lite does not recognize that namespace as it is no longer in compliance with the specification. According to the 1.1 spec: A SOAP message MUST have an...
3988
Byrne Reese
byrnereese
Oct 8, 2004 9:50 pm
Setting the HTTP timeout in SOAP::Lite can be accomplished using the following code: my $soap = SOAP::Lite ->uri($uri) ->proxy($proxyUrl, timeout => 5 ); print...
3989
Byrne Reese
byrnereese
Oct 8, 2004 10:07 pm
This has been fixed in SOAP::Lite 0.65 - in that version, the start parameter will be looked for first. If it is not present, then the root part will be used....
3990
Byrne Reese
byrnereese
Oct 9, 2004 6:50 am
I found a good article discussing Digest Authentication: http://www.webreference.com/internet/apache/chap5/3/ Here is an excerpt: Digest authentication works...
3991
nr5973
Oct 9, 2004 3:27 pm
I have bad credit, I am self employed and I was able to re-finance at a really low rate. I am saving hundreds a month Just fill out this simple FREE form ...