I've successfully written a simple SOAP::Lite client to an Axis server, fairly painless. Now I'm trying to write a functional test for that client by kicking...
4417
Juan Jose Natera Abreu
naterajj
Feb 16, 2005 6:47 pm
Hi, ... I feel you, most of the time I can dissect a module just fine, but SOAP::Lite39;s style doesn't help. ... AFAIK, you can dispatch to a path, a module, or...
4418
Duncan Cameron
duncan_camer...
Feb 16, 2005 7:13 pm
... The MIME::Tools required is 6.200 or later. You will need that if you want to send attachments. I have got SOAP::Lite working against Axis, on W2000...
4419
Gary Shea
ishmael000
Feb 16, 2005 8:53 pm
Thanks for the hint! Starting with what you said, I managed to get the server test working. From the SOAP::Lite doc: You may use both "dispatch_to()" and...
4420
Peter Mayr
kribibi2002
Feb 17, 2005 4:31 pm
Hi, I just got into working with SOAP::Lite and find this module very helpful.. However I ran into a problem with complex datatypes and since I couldn't find...
4421
Duncan Cameron
duncan_camer...
Feb 17, 2005 4:56 pm
... change. ... Hi Peter You seem to have a mismatch between defining the answer element as an array, SOAP-ENC:arrayType="xsd:string[2]", and wanting to see...
4422
Solli Moreira Honorio
shonorio2000
Feb 17, 2005 5:18 pm
Hi, I'm looking for a away (in Windows) to get the IP and MAC of the cliente to trying to connect on a SOP::Lite server, and accpet or deny they access. ...
4423
Tilman Baumann
Tilman.Baumann@...
Feb 17, 2005 5:46 pm
... If you tunnel it through apache you will have at least the ability to set acl for IP adresses. May for macs to, nothing is really impossible in apache......
4424
motive5921
Feb 17, 2005 6:28 pm
I have a gateway process that runs and accepts connections from client pc's on a network. The process is NoCat, if anyone is familiar. I use SOAP::Lite to...
4425
John Michael Zorko
jmzorko
Feb 17, 2005 11:03 pm
Hello, all ... I am seeing a problem where I will often restart a SOAP::Lite server, yet the OS tells me the address is in use. This is even while using the...
4426
Peter Mayr
kribibi2002
Feb 18, 2005 7:49 am
Hi Duncan, ... Thanks for your reply.. Unfortunately, since I am writing only the client I have no control over how the data is sent.. ;-( So I guess I have to...
4427
Duncan Cameron
duncan_camer...
Feb 18, 2005 9:30 am
... Hi Peter I wonder what the producers of the message mean by having the answer element defined as an array of strings but each child element having ...
4428
John Michael Zorko
jmzorko
Feb 18, 2005 10:23 pm
Hello, all ... I've got code that uses SOAP::Lite to talk to a Java-based SOAP server. They gave us WSDL which specifies they're hostname / port that the ...
4429
John Michael Zorko
jmzorko
Feb 19, 2005 2:37 am
... via SOAP::Lite->service() :-) Regards, John Falling You - exploring the beauty of voice and sound New album, "Touch", available now ...
4430
John Michael Zorko
jmzorko
Feb 20, 2005 3:41 am
Hello, all ... I've got a WSDL file, but for testing I would like to generate server code based on the WSDL (so I can test that the calls work without talking...
4431
alejandroriospena
alejandrorio...
Feb 21, 2005 10:24 am
Hi! I've been searching and trying a lot of things to make a simple web-service work, but I just haven't had any luck at all. There are many examples showing...
4432
nokiola
Feb 22, 2005 7:58 am
Hello, I am trying to call a web service made in another language and I receive the following error: "More than one service in service description. Service and...
4433
Jens Augustenborg
jens_auguste...
Feb 22, 2005 9:48 am
Hi, I'm very new to web services and Soap::Lite, but I would like to know how to integrate (if possible!) certificates - where can I find examples?? In other...
Hi, how are you ? I have a problem trying to expose a ItemCollection class that uses DBI classes (or classes that inherite from DBI classes more exactly). The ...
4435
Tilman Baumann
Tilman.Baumann@...
Feb 22, 2005 12:49 pm
You could maybe quickhack this with adding use lib ' /usr/lib/perl5/'; Or maybe with including (use ...) the libs in your server interface but not in the...
4436
Duncan Cameron
duncan_camer...
Feb 22, 2005 1:29 pm
... Hi Robert I think that you need to provide two extra parameters to the service() call, the service name and the port, these should be available from the ...
4437
finalthroes
Feb 22, 2005 2:08 pm
Hi, Is it correct that the only way to access arrays in a Perl SOAP::Lite server is to access the soap envelope directly? If a request that has an array passed...
4438
Duncan Cameron
duncan_camer...
Feb 22, 2005 2:57 pm
... With version 0.65 of S::L repeating elements should get deserialised into an array. e.g. client print $s->test2 (SOAP::Data->type('xml39; => <<END))->result;...
4439
h2ofaull
Feb 23, 2005 2:16 pm
Hello again, again - Just wanted to report that I just downloaded and installed S::L 0.65_3 and it cleared up the uninitialized variable problem I saw below......
4440
go81816
Feb 23, 2005 9:04 pm
Hello, Does anyone know what the actual wire format is supposed to be when transferring complicated XML schema types to a SOAP service? I can't find anything...
4441
Jens Augustenborg
jens_auguste...
Feb 24, 2005 12:24 pm
Hi! Nobody knows how to write a client that works with certificates/ws security?? $$Jens...
4442
Duncan Cameron
duncan_camer...
Feb 24, 2005 1:04 pm
... No :-} Have you tried the instructions in the SOAP::Transport documentation for getting certificates to work with https? Or are you referrring to the...
4443
h2ofaull
Feb 25, 2005 5:29 pm
Greetings, I don't understand the problem you're having, but it sounds like a similar problem I was having with certificates signed from an untrusted CA - I...
4444
Gary Shea
ishmael000
Feb 25, 2005 7:18 pm
The basics of using SOAP::Lite with WSDL are pretty simple, as discussed in http://guide.soaplite.com/, but there's something I haven't been able to figure out...
4445
Duncan Cameron
duncan_camer...
Feb 26, 2005 7:09 am
... When not using WSDL the result of a remote method call is a SOAP::SOM object. You can get this after a WSDL call by using the call() method with no...