Hi, ... Yes, yes! I have seen this! On this list, one week ago! I think, if I remember correctly, that the reason was that it cannot find HTTP.pm. Or so. ...
4850
Arthur Christoph
arthur_chris...
Aug 15, 2005 10:58 pm
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...
4849
0paladin@...
jdusek123
Aug 15, 2005 5:59 pm
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. ...
4848
Lawrence Resubal
renceresubal
Aug 15, 2005 5:01 pm
Alberto, I had this problem last week, try sending the xml as raw xml. How to Call a .NET-based Web Service Using the SOAP::Lite Perl Library ...
4847
alberto_labarga
Aug 15, 2005 4:26 pm
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...
4846
Nick Sutterer
nick@...
Aug 15, 2005 3:37 pm
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....
4845
jens_augustenborg
jens_auguste...
Aug 15, 2005 2:18 pm
Hi! 1) How do I see the actual envelope that is produced by SoapLite? 2) What is the syntax when using X509v3-certificates?? Jens...
4844
sergey_lukashevich
sergey_lukas...
Aug 15, 2005 12:51 pm
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: ...
4843
dfrankow
Aug 12, 2005 5:38 pm
... I tried to post this response to the list twice. Yahoo says it's posted, but then it doesn't show up. Anyway, yep, this is an Axis bug. See ...
4842
Duncan Cameron
duncan_camer...
Aug 12, 2005 2:31 pm
... 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 ...
4841
dfrankow
Aug 12, 2005 1:00 pm
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...
4840
Duncan Cameron
duncan_camer...
Aug 11, 2005 1:27 pm
... 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....
4839
Duncan Cameron
duncan_camer...
Aug 10, 2005 6:42 pm
... 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; } ...
4838
Chris
chrsbmw
Aug 10, 2005 12:49 am
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...
4837
TroyVA
Aug 9, 2005 6:52 pm
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....
4836
Andy
mopoke_uk
Aug 8, 2005 3:14 pm
... Hi, Did anyone have any ideas if I'm doing anything wrong here? Thanks Andy...
4835
Call Termination
callterminat...
Aug 7, 2005 5:44 pm
We have united 3000 VoIP providers in our directory! VoIP Providers by Alphabet A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ...
4834
Judith Lebzelter
newtoo2005
Aug 5, 2005 4:38 pm
... This message does not have the patch attached, and it is last in the thread.:( Can you forward the patch? Thanks; Judith...
4833
Pieter Neerincx
pneerincx
Aug 5, 2005 10:16 am
... 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...
4832
Alex Pena
bigel0w21
Aug 5, 2005 3:27 am
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...
4831
Frank Roth
frankcroth2002
Aug 4, 2005 10:54 pm
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....
4830
Duncan Cameron
duncan_camer...
Aug 4, 2005 7:49 pm
... 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...
4829
Duncan Cameron
duncan_camer...
Aug 4, 2005 7:40 pm
... Hi Judith I found a problem with S::L 0.65 not handling attachments on the server.You can see the previous post here ...
4828
Kirti Bodhmage
kirti.bodhmage@...
Aug 4, 2005 4:33 pm
Could u pls tell me is there any good IDE for the PERL+SOAP development on windows ?...
4827
alberto_labarga
Aug 4, 2005 11:40 am
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...
4826
frankcroth2002
Aug 4, 2005 10:05 am
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...
4825
Judith Lebzelter
newtoo2005
Aug 3, 2005 10:23 pm
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...
4824
Andre Merzky
andremerzky
Aug 3, 2005 7:50 am
... 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. ......
4823
Sagitha George
sagitha_george
Aug 3, 2005 7:38 am
When I run my perl script that tries to invoke a WSDL, I get this error. could someoone help out as to which module I am missing? ...
4822
Brad Miele
opiate_mu
Aug 2, 2005 9:07 pm
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])/'' ....