what is the difference between <SOAP-ENV:Envelope> OR <soap:Envelope> and how does this affect me? for example, writing a Perl client connecting to a .NET web...
1526
jonthorwilliams
May 14, 2002 7:17 pm
if i need to send an envelope like this one, how do i BUILD it when using SOAP::Lite ??? im not sure also how i would add multiple arguments, like the ones in...
1527
Paul Kulchenko
paulclinger
May 15, 2002 12:35 am
Hi, jonthorwilliams! ... As soon as SOAP-ENV and soap prefixes point to the same namespace there is no difference from SOAP perspective. ... it doesn't. Prefix...
1528
Monica Bonett
monicabonett
May 15, 2002 9:25 am
I am having a problem with communication between a Perl server and a Java client. The server is using SOAP-Lite 0.55; the client is using Axis (Beta 2...
1529
kmertsalov
May 15, 2002 10:51 pm
I am trying to send XML formated data to the method and get xml formatted response back from the method using SOAP and SOAP Lite. Is there any pre buit ways...
1530
Tim Jenness
t.jenness@...
May 15, 2002 11:33 pm
... SOAP::Lite will give you the XML data as a string. You then have to deal with that as you would any other XML string. One thing to note is that SOAP::Lite...
1531
Paul Kulchenko
paulclinger
May 16, 2002 6:39 am
Hi, Monica! Truly I don't see anything wrong with 'ur-type39;. It's valid datatype in XML Schema 1999. SOAP 1.2 is still work-in-progress and is not yet ...
1532
Monica Bonett
monicabonett
May 16, 2002 10:06 am
... Hi Paul, Thanks alot for your reply. The switch to XML Schema 2001 was what I needed to encode the arrayType as anyType. This worked fine for the version...
1533
Chris Davies
roaima
May 17, 2002 10:14 am
Hi folks, My SOAP::Lite client can communicate with the other person's .NET server. However, their .NET client can't communicate successfully with my...
1534
Duncan Cameron
dcameron@...
May 17, 2002 5:11 pm
... Chris I'm currently doing a similar thing but using a SOAP::Lite client with .Net server. Is it correct to have your server's returned method...
1535
Randy J. Ray
rjray_perl
May 18, 2002 10:03 am
For an example in my book, I have the following server code: #!/usr/bin/perl use strict; use WishListCustomer::SOAP; use WishListCustomer::Daemon; my $port =...
1536
Paul Kulchenko
paulclinger
May 18, 2002 3:17 pm
Hi, Randy! ... It's difficult to say what's wrong without seeing the WishListCustomer::SOAP class. Class code and wiredumps will be helpful. I don't see...
1537
Duncan Cameron
dcameron@...
May 18, 2002 5:25 pm
... Isn't the above syntax wrong, it's mixing in the autodispatch syntax. Should it be something like: my $soap = SOAP::Lite->uri('urn:/WishListCustomer') ...
1538
Randy J. Ray
rjray_perl
May 18, 2002 9:56 pm
... Duncan> Isn't the above syntax wrong, it's mixing in the autodispatch Duncan> syntax. Should it be something like: my $soap =...
1539
Duncan Cameron
dcameron@...
May 18, 2002 10:18 pm
... Yes, but in your first post you were calling Wishlist() on the result of the new() call, it has to be called on the $soap object. Calling it on the new()...
1540
Chris Davies
roaima
May 20, 2002 9:27 am
... SOAP::Lite ... .Net server. ... different ... To be honest I haven't a clue whether it's correct or not. I use SOAP without really understanding all of the...
1541
Dougal Campbell
dougal@...
May 20, 2002 3:48 pm
... I was able to confirm with one of the Jabber folks that the "AddDelegate" hooks disappeared from Net::Jabber several versions ago. Are there any plans for...
1542
Duncan Cameron
dcameron@...
May 20, 2002 8:45 pm
... Yes, but there's lots of flexibility with SOAP, so interopabilty isn't as easy as it should be. ... I think that the important thing is to ensure that all...
1543
Randy J. Ray
rjray_perl
May 20, 2002 11:14 pm
It should be no surprise that Apache doesn't mix well with configuring the SOAP server to use objects_by_reference. It *should* be no surprise, but it took me...
1544
Paul Kulchenko
paulclinger
May 21, 2002 6:21 am
Hi, Randy! ... That's correct. In fact, I believe it was already discussed on this list some time ago. I was thinking about using Apache::Session interface for...
1545
rjray@...
rjray_perl
May 21, 2002 8:01 am
... Paul> Although I don't know mod_perl well, but if I do 'use SOAP::Lite39; in Paul> the parent process (using PerlModule, startup script or BEGIN{} Paul>...
1546
Chris Davies
roaima
May 21, 2002 10:14 am
CD> My SOAP::Lite client can communicate with the other person's .NET server. CD> However, their .NET client can't communicate successfully with my CD>...
1547
vhanna
May 23, 2002 12:26 pm
Talented Perl/Unix Programmer needed in Bay Area. Part Time or Full Time. San Mateo, CA. Please email back if interested. Great opportunity for the right...
1548
jonthorwilliams
May 23, 2002 5:01 pm
my SOAP::Lite 0.55 script throws this error, and i cannot figure out why. can anyone make a guess? it implies that my SOM object is not defined??? how can...
1549
Paul Kulchenko
paulclinger
May 23, 2002 5:16 pm
Hi, Jon! ... you don't need to call ->result() here. When you call ->result() method it returns result of the method call, which is undef in this case. Just...
1550
jonthorwilliams
May 23, 2002 6:03 pm
I got stuck trying to print out values from the SOM object. I cant seem to get any of the SOM methods to print correctly, except for "result" and...
1551
Richard Maynard
ephur@...
May 24, 2002 6:16 am
I need to compile soaplite statically because I need it to communicate over SSL, but can not install openssl on the box where these scripts will run from. I've...
1552
rjray@...
rjray_perl
May 24, 2002 7:01 am
... Richard> I need to compile soaplite statically because I need it to Richard> communicate over SSL, but can not install openssl on the box where Richard>...
1553
Richard Maynard
ephur@...
May 24, 2002 7:05 am
Gotcha :) And thanks! _____________________ ___________________________________________ / Richard Maynard Y "There is nothing to take a man's freedom \...
1554
Randy J. Ray
rjray_perl
May 24, 2002 7:15 am
The SOAP::Server::Parameters class is very useful for writing server-side methods that have a need for access to the SOAP envelope. Perhaps they need to check...