I'm certain that buried somewhere in the archives there is the answer to my question, but so far, I've been unable to find it, at least in the form that I can...
I am pretty new to this so I am probably doing something stupid, but I can't figure it out. I have the following code attempting to access a commercial product...
... Try this, it should generate exactly the same structure. $SOAP::Constants::PREFIX_ENC = 'SOAP-ENC39;; @data = ( ['modified_by_name39;,'admin'], ); ...
Hi, I have a SOAP::Lite based server and an need to enable soma advanced debugging. In particular, I need to print out the full requests and responses for each...
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...
Hello Petar, You can you be more specific by adding transport layer debugging: use SOAP::Lite +trace => [ transport => sub { print "calls to transport for...
... 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, 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...
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...
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 =...
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...
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;}); ...
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, 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'...
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, 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, 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...
... 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...
Thank you. I tried ver.0710.08, but I got the similar error too... (Example) ================================================================ #!/usr/bin/perl ...
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)...