Hi there, I've just been looking through cpan, and I'm wondering if I am missing something obvious. I can't find anywhere in Soap::Lite where I can set a...
Dianne, ... No worries, I ran into the same thing awhile ago. Here's how I did it: SOAP::Lite->readable( 1 )->uri( "your_uri" )->proxy( "your_proxy", timeout...
I am happy to see stubmaker.pl and creation of myService.pm However I am looking for a way for the user of myService.pm to specify the endpoint either at...
One of the problems my peers often point out against Perl is that there are 25 different ways of doing things, from $$ to $PID. from "key, value" to "key =>...
... I tend to agree. I found I needed to insert fault handling code between each of those. I ended up doing something like this... sub main { # Connect to...
Hi all - As interesting as SOAP and web services are, I am pressed for time. Although I know I'll have to learn more, I simply need a full blown working "Hello...
Mike, I can help you, but keep in mind that I never got it to work with complex types. When I return rows of data, I just convert my data to the equivalent of...
Hi All, After considerable experimentation, I was able to develop a SOAP Lite server that works with VB/.NET, Java/AXIS, and SOAP Lite clients, using WSDL and...
Greetings! My task is to write a SOAP server, that would dispatch requests to some modules using its own "sophisticated" naming scheme. Imagine that I have...
Hello. I'm complete newbie in SOAP::Lite, so please be elenient. I'm using combination of Apache + mod_perl + Apache::SOAP from SOAP::Lite distribution. I'm...
Andrew, ... Is this better? my $success = eval { my $service = SOAP::Lite->service( "uri://to.WSDL.file" ); $service->someMethod( $someParam, @someArrayOParams...
... Sorry, I've sent prev. message to the wrong address. Thanks fore reply. Anyway, this is not what I'm looking for. $service->someMethod( $someParam,...
I am trying to accessing the XML results below. I expected the results to be array of hashes based on my reading. But it appears to be a hash of hashes. I have...
... I take it that you are not using S::L 0.65, where this issue has been addressed. This is how Data::Dumper shows the <getTableMetadataReturn> element $VAR1...
... I don't think this will do what you are claiming. $obj will just be a variable in your client, it will not have any reference to a remote object. You still...
Hello, I tried to define a timeout for a SOAP client: my $timeout = 1; my $soap = SOAP::Lite -> uri('urn:FooBar') -> proxy('http://localhost:9009', timeout =>...
... I am faced with a similar problem. In addition to not being able to use a structured namespace, I need to support an environment where security is taken...
All, I finally figured out the (very) simple solution to my proxy problem... here's a brief recount of the problem and my findings... I'm using a web service...
Greetings! Well, if that can help you, this is how I've got to use one sub for handling all the incoming SOAP requests without losing any needed info....
Hi, I'm having a slight problem with a call to an external SOAP service, to give a simple example the XML generated for the function call when I turn on debug...
Hi All, I've installed SOAP::Lite and tried to test the sample. The client throws exception the following exception when exception: not well-formed (invalid...
I have an Axis Web Service in Java. When I have an Axis client I know how to use the Axis framework to pass HTTP Cookies between client and WS on every...
... See here http://cookbook.soaplite.com/#using%20cookies Basically, SOAP::Lite uses LWP::UserAgent for the http client, and you can use any functions of that...
Hello, I have always had problems using search engines to find what I wanted,as it always poped up results that I was in no way looking for. I just happen to...
Hi, In older versions of SOAP::Lite, i had ste use_prefix to 0 in order to supress the namesp1: values. is there a new way to do this in the current versions? ...
I'm having some strange and unsettling troubles with a SOAP::Lite server in a mod_perl environment. I think that SOAP::Lite may not re-initialize properly...