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 to share photos of your group with the world? 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 4621 - 4650 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4621
I'm creating a SOAP service which I want to username/password protect, against the database the service modifies. It seems to me that the easiest way to do...
Paul TBBle Hampson
tbble
Offline Send Email
May 2, 2005
1:41 pm
4622
You can't do that in 0.60. Try 0.65. But you could use mod_auth_mysql or my_auth_postgres which are Apache plugins which will automatically do...
Byrne Reese
byrnereese
Online Now Send Email
May 2, 2005
2:35 pm
4623
I suspect my problem is because I'm using an older version of SOAP::Lite but can anybody tell me if I'm using SOAP::Lite $VERSION = sprintf("%d.%s", map...
robert@...
robertatelas...
Online Now Send Email
May 2, 2005
8:05 pm
4624
... That wouldn't help, as I need to know which record it was that the username/password identified. ... This covers the client, but I need to do it in the...
paul.hampson@...
tbble
Offline Send Email
May 3, 2005
1:27 am
4625
Hi all... I didn't see this come to me from the list, so I'll try agian... If anyone has a hint several people will be most appreciative! The vast majority of...
Chris Nielsen
zchris98119
Offline Send Email
May 3, 2005
2:08 am
4626
The same methods are available on the server. Simply instantiate an instance of SOAP::Transport::HTTP::*, access the http_request/http_response elements from...
Byrne Reese
byrnereese
Online Now Send Email
May 3, 2005
2:13 am
4627
Does anybody know why when I make a soap lite call to a document/ literal service why when it returns xml that xml comes back entity encoded. I'm assuming it's...
Robert Nicholson
robertatelas...
Online Now Send Email
May 3, 2005
2:16 am
4628
I'm trying out the Google API with SOAPLite, what does the error message mean below? Did I fail to include any module when I compiled SOAPLite? Service...
netstat
Offline Send Email
May 3, 2005
10:39 am
4629
In the SOAP Lite user guide (http://guide.soaplite.com/), you test many examples against a remote server. However, I'd like to test these examples locally....
Matthew
obc_spike
Offline Send Email
May 3, 2005
2:45 pm
4630
We've just run into this problem using SOAP::Lite 0.60 on Apache 1.33 on Perl 5.8.6 using SOAP::Transport::HTTP::Apache and dispatch_with handlers. When our...
kgoess
Offline Send Email
May 4, 2005
12:30 am
4631
... I would actually say this isn't the way to do this. You are mating application requirements (e.g. the need to have auth/auth info associated with the SOAP...
Jay A. Kreibich
jaykreibich
Offline Send Email
May 4, 2005
4:35 am
4632
... It means that the WSDL file coudn't be loaded, you can try to access the file using HTTP instead. Good luck. ... ...
Juan Fco Rodriguez
yonailo
Offline Send Email
May 4, 2005
7:15 am
4633
Hi Juan! I tried specifying the full path and it still gives me the same error message. Muchas gracias! ... __________________________________________________ ...
netstat
Offline Send Email
May 4, 2005
7:47 am
4634
Say good bye to prepaid calling cards! No more spending money on calling cards, Earn free Calling cards at our site using this link, Register, Login and earn ...
damocalup
Offline Send Email
May 4, 2005
8:50 am
4635
Hello, just, if anyone else should run into this message ... It seems, for some reason a method signature foo(String xml) cannot be processed in a SOAP::Lite...
Merten Schumann
merten_schumann
Offline Send Email
May 4, 2005
12:32 pm
4636
... Please post your code that's trying to load the module. (Using wsdl is a little different than proxies.) Matthew...
obc_spike
Offline Send Email
May 4, 2005
2:55 pm
4637
... examples ... I'll answer my own question here. If the package on the server is called "Demo"... ... Matthew...
obc_spike
Offline Send Email
May 4, 2005
3:05 pm
4638
I'm calling this service to test using a wsdl file in a perl client: #!/usr/bin/perl -w use strict; use SOAP::Lite +trace => "debug", service => ...
obc_spike
Offline Send Email
May 4, 2005
3:24 pm
4639
Trust me it has never been easier to refinance your home loan at a better interest rate saving you thousands. Check out this free service....
kyxssvdzhlbg
Offline Send Email
May 4, 2005
8:17 pm
4640
Is this module what I need to access a https url? I'm using ActiveState Perl 5.8.6 build 811. Here is the document I found in ActivePerl which did not spell...
yflai98006
Offline Send Email
May 4, 2005
9:15 pm
4641
I got this to work after adding "xmlns:SOAP-ENC" => "http://schemas.xmlsoap.org/soap/encoding/" in the last attr() clause. Great example! Steve...
steve_f_maher
Offline Send Email
May 4, 2005
9:54 pm
4642
It's a definite bug in 0.60 and 0.60a and I see it's been fixed in 0.65_3. If a parse failure occurs the SOAP::Parser doesn't clear its state before the next...
kgoess
Offline Send Email
May 4, 2005
11:59 pm
4643
... OK, fair point and well taken. I've found the '@ISA' thing that lets me pop the SOM out of @_ at the start of every function, so I'm guessing I just call...
paul.hampson@...
tbble
Offline Send Email
May 5, 2005
3:22 am
4644
After tinkering a bit with my perl client connecting to a .NET server, I have this: #!/usr/bin/perl -w use strict; use SOAP::Lite +trace=>'debug'; my $soap =...
obc_spike
Offline Send Email
May 5, 2005
5:14 am
4645
... $soap and the bless ... nothing. It ... the data in $soap? ... See this prior thread about using WSDL and getting the SOM object ...
Duncan Cameron
duncan_camer...
Offline Send Email
May 5, 2005
8:13 am
4646
... libwww- ... Randy Kobes repository is usually a good place to look for ppms http://theoryx5.uwinnipeg.ca Duncan ...
Duncan Cameron
duncan_camer...
Offline Send Email
May 5, 2005
8:15 am
4647
Hi Matt! Here's the line that is giving me the problem. I tried using http as suggested by somebody from this list and it worked. I need to understand why it...
netstat
Offline Send Email
May 5, 2005
8:41 am
4648
... It looks like you may have an old version of LWP::Protocol installed. Do you have a file under the Perl directory site/lib/LWP/Protocol/file.pm ? If not,...
Duncan Cameron
duncan_camer...
Offline Send Email
May 5, 2005
11:58 am
4649
... Hi Duncan, Thanks for your note. I've tested the example from that thread and it works fine for validating a result or fault, but I'm still unable to ...
obc_spike
Offline Send Email
May 5, 2005
2:14 pm
4650
... You need to access everything through the som object. In your case it looks like the return value from Listbooks() does not give you everything that you...
Duncan Cameron
duncan_camer...
Offline Send Email
May 5, 2005
2:40 pm
Messages 4621 - 4650 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