Hi, I have a little problem with my SOAP Client program. I'm using SOAP::Lite with perl 5.8 on debian lenny. The WebServices server is a Windows 2003 - IIS 6.0...
Here is a snippet. Yes it is a GUI based program. # Intranet Transfer if($Config{39;TransferType'} == 0){ # Make a SOAP request to the administrator server. my...
6330
Joseph Werner
telcodev@...
May 13, 2009 7:21 pm
Need more info here, perhaps a code snippett? You apparently have a GUI using Perl Tk and SOAP::Lite, I suspect a syntax error in one of your graphics...
I have a old Perl script that uses SOAP::Lite. I am trying to reuse it but when I try to run the web client I get the following error. "Tk::Error: Can't locate...
Hello, I am trying to make sure, when the invoke() method in the subclass(package B) is called that the get_basic_credentials from the super class(package A)...
Thank you. I tried ver.0710.08, but I got the similar error too... (Example) ================================================================ #!/usr/bin/perl ...
... I guess you won't succeed with generating the request directly from wsdl. The module is not ready for more complex wsdl definitions. I rather explicitly...
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...
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...
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...
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'...
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...
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;}); ...
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...
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 =...
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...
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...
... 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...
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...
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...