Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4821 - 4850 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4821
Hi How do I uninstall SOAP Lite ? Sagitha...
Sagitha George
sagitha_george
Offline Send Email
Aug 1, 2005
2:25 pm
4822
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])/'&#' ....
Brad Miele
opiate_mu
Offline Send Email
Aug 2, 2005
9:07 pm
4823
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? ...
Sagitha George
sagitha_george
Offline Send Email
Aug 3, 2005
7:38 am
4824
... 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. ......
Andre Merzky
andremerzky
Offline Send Email
Aug 3, 2005
7:50 am
4825
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...
Judith Lebzelter
newtoo2005
Offline Send Email
Aug 3, 2005
10:23 pm
4826
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...
frankcroth2002
Offline Send Email
Aug 4, 2005
10:05 am
4827
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...
alberto_labarga
Offline Send Email
Aug 4, 2005
11:40 am
4828
Could u pls tell me is there any good IDE for the PERL+SOAP development on windows ?...
Kirti Bodhmage
kirti.bodhmage@...
Send Email
Aug 4, 2005
4:33 pm
4829
... Hi Judith I found a problem with S::L 0.65 not handling attachments on the server.You can see the previous post here ...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 4, 2005
7:40 pm
4830
... 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...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 4, 2005
7:49 pm
4831
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....
Frank Roth
frankcroth2002
Offline Send Email
Aug 4, 2005
10:54 pm
4832
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...
Alex Pena
bigel0w21
Offline Send Email
Aug 5, 2005
3:27 am
4833
... 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...
Pieter Neerincx
pneerincx
Offline Send Email
Aug 5, 2005
10:16 am
4834
... This message does not have the patch attached, and it is last in the thread.:( Can you forward the patch? Thanks; Judith...
Judith Lebzelter
newtoo2005
Offline Send Email
Aug 5, 2005
4:38 pm
4835
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 ...
Call Termination
callterminat...
Offline Send Email
Aug 7, 2005
5:44 pm
4836
... Hi, Did anyone have any ideas if I'm doing anything wrong here? Thanks Andy...
Andy
mopoke_uk
Offline Send Email
Aug 8, 2005
3:14 pm
4837
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....
TroyVA
Offline Send Email
Aug 9, 2005
6:52 pm
4838
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...
Chris
chrsbmw
Offline Send Email
Aug 10, 2005
12:49 am
4839
... 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; } ...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 10, 2005
6:42 pm
4840
... 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....
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 11, 2005
1:27 pm
4841
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...
dfrankow
Offline Send Email
Aug 12, 2005
1:00 pm
4842
... 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 ...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 12, 2005
2:31 pm
4843
... 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 ...
dfrankow
Offline Send Email
Aug 12, 2005
5:38 pm
4844
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: ...
sergey_lukashevich
sergey_lukas...
Offline Send Email
Aug 15, 2005
12:51 pm
4845
Hi! 1) How do I see the actual envelope that is produced by SoapLite? 2) What is the syntax when using X509v3-certificates?? Jens...
jens_augustenborg
jens_auguste...
Offline Send Email
Aug 15, 2005
2:18 pm
4846
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@...
Send Email
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...
alberto_labarga
Offline Send Email
Aug 15, 2005
4:26 pm
4848
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 ...
Lawrence Resubal
renceresubal
Offline Send Email
Aug 15, 2005
5:01 pm
4849
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. ...
0paladin@...
jdusek123
Offline Send Email
Aug 15, 2005
5:59 pm
4850
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...
Arthur Christoph
arthur_chris...
Online Now Send Email
Aug 15, 2005
10:58 pm
Messages 4821 - 4850 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help