On Thu, 2005-01-20 at 15:51, lode_leroy wrote: [... wants to do: ] ... What I have done is to describe the web service in WSDL and then use SOAP:Lite with...
4354
oldfic4
Jan 21, 2005 11:28 am
I'm trying to consume a .net service, in the Komodo debugger I see the soap wrapper and xml I should be receiving so I'm sure the call is correctly formatted...
4355
Holger Dürer
hlgr_d
Jan 21, 2005 12:02 pm
... Yepp, that's your result. A hash that contains hidden in it the treasures you seek. I found this for debugging quite useful: - Install the Perl...
4356
Bryce Harrington
bryceharrington
Jan 21, 2005 9:12 pm
... If you're not using WSDL, your data may be living in $result->result. Running Data::Dumper on the result is a good suggestion. That's what I usually end...
4357
oldfic4
Jan 23, 2005 4:54 pm
I'm feeling very dim ( I would have felt much dimmer if it weren't for the help of the people who responded to my previous post - thanks): I'm consuming a...
4358
Duncan Cameron
duncan_camer...
Jan 23, 2005 10:04 pm
... If $result is the same as used in the example above then it is already a SOM, so you are now trying to deserialise a perl data structure rather than a...
4359
Nils Sowen
nsowen
Jan 24, 2005 9:40 am
Hi everybody, I figured out another problem concerning the SSL-Daemon mode. When I use the ForkOnAccept module from the examples directory, I get errors only....
4360
kaidaniel2
Jan 24, 2005 3:26 pm
Hi! I've seen some postings from you in a yahoo-group where you'are trying so solve the same problems wich are similar to mine. I'm writing a diploma-thesis...
4361
John Michael Zorko
jmzorko
Jan 24, 2005 7:34 pm
Hello, all ... I'm experiencing weird things ... i've some simple DBI code that talks to a local PostgreSQL database via DBD::Pg that does a basic query and ...
4362
Brad Miele
opiate_mu
Jan 24, 2005 10:26 pm
hi, I am trying to access an item in a hash and I get the follwoing error: Bad index while coercing array into hash at Modulename.pm:35 when i run Data::Dumper...
4363
cantelow
Jan 24, 2005 11:15 pm
Hi. I tried archives, sorry, may not have selected the right keywords. ... #! /usr/local/bin/perl -w use SOAP::Lite; my $service = SOAP::Lite ->...
4364
Bryce Harrington
bryceharrington
Jan 24, 2005 11:18 pm
... Maybe try adding: use SOAP::Lite; ... Bryce...
4365
Mikel Salaberria
xala1022
Jan 25, 2005 7:51 am
Hi kai!! I have worked with String Arrays in Perl, and I didn't have any problem. Try with this: use SOAP::Lite; my @result = @ { SOAP::Lite ...
4366
h2ofaull
Jan 26, 2005 9:26 pm
Greetings - Not sure if you've figrued out this problem, but I'll throw out my solution for the archives! I ran into a similar problem with my web service -...
4367
cornmek1
Jan 27, 2005 11:25 am
Hi all, Heres my scenario Solaris server running a very basic SOAP::Transport::HTTP daemon basically serving up data based on 3 input params. I'm watching the...
4368
ojnesad
Jan 27, 2005 5:27 pm
Hi to all !! Im new in the list and new to soaplite. Im trying to expose a module as a web service and im having problems to make execute the code in the...
4369
ghostwhoowalks
Jan 27, 2005 5:47 pm
Hi All I am an absolute newbie to Perl and SOAPLite. We have a running Java Axis Web Service. Requirement has come up to script certain Perl clients to this...
4370
Duncan Cameron
duncan_camer...
Jan 27, 2005 5:58 pm
... You probably need to pass the 'sector39; object which is returned by the 'new' method, on each of the subsequent calls, e.g. my $sector = $soap->call(new =>...
4371
Bryce Harrington
bryceharrington
Jan 27, 2005 8:59 pm
... Try getting the fault out of the above call. Often SOAP will tell you what's going wrong internally. I.e. my $response = $soap->getNombre(); if...
4372
John Michael Zorko
jmzorko
Jan 28, 2005 11:34 am
Hello, all ... I've an Apache CGI SOAP server that ran before, but after an OS reinstall, no longer will. This is the message returned: ...
4373
John Michael Zorko
jmzorko
Jan 28, 2005 1:00 pm
... wait, this is an XML problem ("no element found"), right? Investigating ... ... Regards, John Falling You - exploring the beauty of voice and sound New...
4374
John Michael Zorko
jmzorko
Jan 28, 2005 1:46 pm
OK, I fixed it ... important note to anyone interested: I needed to install expat via Fink (and then rebuild anything depending on it i.e. mod_perl,...
4375
ublit
Jan 29, 2005 4:45 am
Hi, I am using SOAP::Lite module with Apache webserver on a windows machine. In my CGI script on the server side, I provided a sub- routine called...
4376
John Michael Zorko
jmzorko
Jan 29, 2005 4:55 am
Ublit, I used to a lot of Win32 (and OS/2 and Win16 before that) C++ development, before I moved to doing more cross-platform stuff. I still do Windows when I...
4377
ublit
Jan 29, 2005 5:29 pm
Hi John, As suggested I tried using "start notepad.exe" inside the function, but still it didn't help. Also tried with Win32::CreateProcess(). May be I should...
4378
naga_cit
Jan 30, 2005 8:35 am
Hi All, I have problem with 'new' constructor. I tried to create a constructor with the name 'new' my $obj= $sta1->new(setuppath=>'C:/SWAT39;)->result; it never...
4379
naga_cit
Jan 30, 2005 8:43 am
I faced the same problem with CGI based SOAP scripts. Switch to 'HTTP Daemon' (look at the user guide for example codes). In this case you dont need to have...
4380
Duncan Cameron
duncan_camer...
Jan 30, 2005 10:05 am
... S::L interprets the new() method as a call to its own new() method, not to your remote method. This is explained in the docs, see the description of the...
4381
naga_cit
Jan 31, 2005 7:27 am
If that is the case, is there a way I can pass the hash values in the call method. The syntax for call given as call(new=>@arguments); But in my case I need to...
4382
eric-amick@...
eamick
Jan 31, 2005 8:07 pm
... The '@arguments39; in the syntax indicates that everything after the method name is a list of arguments. If your constructor treats that list as a set of...