I discovered the same issue with mod_perl and Encode, and so I just do this to strings before i send them out: $stringtoclean =~ s/([^\x00-\x7F])/'&#' ....
... Yes, seems you missing HTML/HeadParser.pm :-) You should be able to do run: # perl -MCPAN -e shell cpan> install HTML::Parser cpan> quit Cheers, Andre. ......
Hello, I am trying to remove the SOAP::MIME from my Application since I am using version 0.60-2, but I am not able to do it. The SOAP::SOM object with a MIME...
Hello, I have a problem putting the result of a soap client return into a list. Somehow I always end up with just one entry. Does anyone know what to do to get...
hi everybody, has anybody tried to use the COM interface from a VB.Net client? could you send me an example of how to create the Lite object? thanks alberto...
... Hi Frank You need to navigate throught the SOM object that is returned by your call and pick out the repeating bits. See this previous post for an example...
Hi Duncan Thank you for the link to the previous post. I looked at it and I am closer to my problem. The difference is that I don't have a hash, just a array....
Might have to add the "//CommandLineResponse/*" that way you get each element not just the first. Try the example below. #!/usr/bin/perl -w use strict; use...
... Hi Judith, I haven't got a solution for you :(. I've got the same problem though, so you are not alone. However I can't get the functionality back with...
I am trying to write a perl client that receives data from a .NET webservice. Everything works fine except for a method that downloads a file to the client....
I have a Java axis webservice I am trying to call from perl. Everything works fine as long as the proper things are passed and everything is okay. However, I...
... That us exactly what you do look at. my $som = $soap->some_method(); if ($som->fault) { print $som->faultcode; } else { # it worked print $som->result; } ...
... Are you using a WSDL file? If so then you get the SOM object by $soap->call; Otherwise, you shouldn't be getting an undefined value back from your call....
Folks, I am just starting out with SOAP, Apache Axis (Java version), and SOAP::Lite. I am trying some simple things, and one is confusing me. I took...
... There are two xsi:type attributes present. I have no idea why that should be happening but suggest that you look at the Axis server code. Duncan ...
It seems that die() in the SOAP lite server sometimes could confuse client side ever it is wrapped by eval{}. My problem looks like this, please consider: ...
hi list, i tried out the code in chapter "Objects access" on guide.soaplite.com, where the server returns a blessed reference - an object - to the soap client....
Nick Sutterer
nick@...
Aug 15, 2005 3:37 pm
4847
Dear friends, I am working at EBI (www.ebi.ac.uk) and we use SOAP::Lite to provide access for several databases and tools for bioinformaticians all around the...
Hi, We have perl 5.6.1. installed and when we try to access SOAP:Lite we get these errors, Can't locate SOAP/Transport/HTTP.pm in @INC at server.pl line 3. ...
Hi all, I just basically try to return the array of ClassB itself as the return value but failed. Anyone has any thoughts on this one or if anyone has...