Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

soaplite · SOAP::Lite for Perl (soaplite.com)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1205
  • Category: Protocols
  • Founded: Jan 28, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 1605 - 1634 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1605 xz_sg Send Email Jun 11, 2002
3:05 am
Hi all, Can someone help me to figure out what is the most convenient way to do this: If I have this in my xml respose from a web service: .......... <Person> ...
1606 Paul Kulchenko
paulclinger Send Email
Jun 11, 2002
4:21 am
Hi, Mark! ... Yes, I can confirm that. The reason for that is that data: protocol expects all data to be escaped or base64 encoded. '#' symbol marks end of...
1607 Mark Wilkinson
professorwil... Send Email
Jun 11, 2002
3:02 pm
That works just dandy! thanks Paul, M ... -- ... "Speed is subsittute fo accurancy." ________________________________ Dr. Mark Wilkinson, RA Bioinformatics ...
1608 marceusx Send Email Jun 12, 2002
4:29 pm
Hi, I have a SOAP::Lite server that issues a LWP and returns the contents of an arbitrary URL and in some instances there are charecters which force SOAP::Lite...
1609 One4K4 Send Email Jun 13, 2002
2:23 pm
Maybe an option would be to have little "wrapper" subroutines: sub byposGetAcctNumber { my $self = shift; my ($name,$ss) = @_; ...
1610 Keanan Smith
KSmith@... Send Email
Jun 13, 2002
2:33 pm
Err shouldn't that be: sub bynameGetAcctNumber { my $self = shift; my %args = (@_); GetAcctNumber(name=>$args{name},ss=>$args{ss}); } (Note the % on the 1st...
1611 One4K4 Send Email Jun 13, 2002
2:35 pm
Yes, yes it should. I'm left handed. ;) ... http://docs.yahoo.com/info/terms/...
1612 One4K4 Send Email Jun 13, 2002
2:51 pm
... Every method on server side will be called as class/object method, so it will get an object reference or a class name as the first parameter, then the...
1613 One4K4 Send Email Jun 13, 2002
3:13 pm
FYI: You need: package Foo; @Foo::ISA = 'SOAP::Server::Parameters&#39;; At the top of your package declration. *If* you're dynamically/non- statically...
1614 Keanan Smith
KSmith@... Send Email
Jun 13, 2002
3:14 pm
"You will get this functionality ONLY if you inherit your class from the SOAP::Server::Parameters class. This should keep existing code working and provides...
1615 One4K4 Send Email Jun 13, 2002
3:21 pm
Yeap, that did it... consider: package DocPub; @DocPub::ISA = 'SOAP::Server::Parameters&#39;; Which solved my problem, using the pod doc's code sample. Thanks! ...
1616 Byrne Reese
byrnereese Send Email
Jun 13, 2002
3:37 pm
SOAP::MIME is a patch to SOAP::Lite that makes attachments parsed by SOAP::Lite available through the SOAP::SOM object. I admit, it is a bit hackish, but it...
1617 Paul Kulchenko
paulclinger Send Email
Jun 13, 2002
4:19 pm
Hi, Tom! There are also byName and byNameOrOrder functions (Randy Ray made a great suggestion to make them methods instead of functions) in ...
1618 One4K4 Send Email Jun 13, 2002
5:30 pm
Nice. As this is my next step in my little project here at work. Attaching attachments is the biggest part, because I'm using SOAP::Lite on both sides. :)...
1619 danielyacob Send Email Jun 14, 2002
1:04 am
Greetings, I've been using SOAP::Lite 0.55 with mod_perl using dynamic dispatching without incident until I named a class "Convert". Invariably I get the error...
1620 One4K4 Send Email Jun 14, 2002
4:28 pm
This may be a FAQ, I'm not sure. If so, feel free to flame away. Anyway, after reading the various docs on soaplite.com, and especially t/04-attach.t. My...
1621 sylvainstg Send Email Jun 14, 2002
8:55 pm
Hi all, When I write: my $header = SOAP::Header->name('biBusHeader' => new biBusHeader()); my SOAP header is being serialized as: <biBusHeader...
1622 Duncan Cameron
dcameron@... Send Email
Jun 14, 2002
9:25 pm
... You need to serialize the individual elements of biBusHeader, if your object is a hash then something like this should work: return [ $name, {'xsi:type&#39; =>...
1623 Paul Kulchenko
paulclinger Send Email
Jun 14, 2002
9:29 pm
Hi, Sylvain! ... all you need to do is this: $soap->maptype->{'biBusHeader&#39;} = 'http://.../bibus/2'; If you don't do this, SOAP::Lite will use default...
1624 Sylvain St-Germain
sylvainstg Send Email
Jun 14, 2002
10:02 pm
Thanks Paul, I'll give it a try on monday, looks rather simple... I am happy to undertand I shouldn't have to implement the serialization for my complexTypes...
1625 jbpion Send Email Jun 16, 2002
6:53 am
Hello all, I am afraid that I am new to SOAP and hope that my question has not already been answered in the archives (I've looked at a lot of posts to find the...
1626 Duncan Cameron
dcameron@... Send Email
Jun 16, 2002
8:35 am
... What is ca? Should it be 'ca' ? ... You don't want this. GetAuthors() returns the real result. See the examples in the 'SOAP::Schema&#39; section of the pod. ...
1627 sylvainstg Send Email Jun 17, 2002
2:55 pm
Paul, Is there a way to set the namespace a little more globally? I must have roughly 100 types or so... Sylvain....
1628 jbm15260 Send Email Jun 17, 2002
6:26 pm
I'm having the same problem, but it seems as though a blessed reference is returned when you use the uri and proxy methods, but not when you use the service...
1629 Jerome Pion
jbpion Send Email
Jun 18, 2002
2:36 am
... Thank you for your help. After Duncan narrowed the problem for me (the service was not returning any data) I was able to come up with a solution. I tried...
1630 Broadfoot, Kieran J
kieranbroadfoot Send Email
Jun 18, 2002
5:08 pm
Hi everyone, As Ive just starting having a play with soap::lite today I hoped you would not mind if I asked a couple of simple questions regarding the use of ...
1631 gwzoller Send Email Jun 18, 2002
8:01 pm
Hello... Does anyone have an example of how to pass an object from Perl to a non-Soap::Lite server? Not sure, but I think my problem is that I'm not ...
1632 Paul Kulchenko
paulclinger Send Email
Jun 19, 2002
4:16 am
Hi, Kieran! ... you may put your functions in "main" package that should be used in this case. Or you can use dispatch_with() method and link your uri to any...
1633 Andersson, Kimmo
Kimmo.Andersson@... Send Email
Jun 20, 2002
11:09 am
Hi ! I'm writing a library in C++ which provides an interface for SOAP::Lite SOAP toolkit. I have decided to use an own intermediary Perl module between my ...
1634 William McCracken
usiwill Send Email
Jun 20, 2002
3:01 pm
I want to capture the error returned when a remote server is not responding, the line I get back with trace enabled is: envelope: Server 500 Can't connect to...
Messages 1605 - 1634 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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