Hi all, I upgraded my soaplite to the latest one to avoid the security flaw. I like to thank Paul and everyone else in the contribution. However, I just...
Hi all, I have a namespace problem with soaplite. I use soaplite on server side and describe my service using wsdl. In my description I define a complex type...
1439
Duncan Cameron
dcameron@...
Apr 23, 2002 9:31 pm
... I think that you need to provide your own serialiser for AEC_AttributeType. define a subroutine similar to this: sub SOAP::Serializer::as_mytype { my $self...
Hi. I am trying to extract the attributes on the server side from the following SOAP message: <SOAP-ENV:Header> <Ah:head xmlns:Ah=uri>test</Ah:head> ...
Hi, I'm trying to run the VisualSTudio.NET sample TCP Server with a SoapLite TCPClient. However on the server side I get the error: accept() Accepted,...
I'm not familiar with VisualStudio.NET. However, it seems the error seem to indicate the <?xml version="1.0" encoding="UTF-8"> tag. I have experience with a...
I hacked together a SOAP interface to Amazon's REST interface, using SOAP::Lite of course. Thought 'the gang' might like to see it - I welcome feedback of...
... That's easy, use your HTTPS capable web server as a proxy to you soap daemon. If you use Apache, here how you do it: - Run the SOAP::Lite HTTP daemon on a...
I must be missing something obvious. How do I return a boolen value from a method? For Example. sub method{ $Class=shift(@_); $Value=shift(@_); if($value){ ...
This is win32's perl 5.6.1 on win2k box (by Randy Kobes, with his big package that contains perl, openssl, apache). OpenSSL 0.9.6a, Soap-Lite 0.52,...
1449
Bob Wilkinson
bob@...
Apr 26, 2002 4:15 pm
... I don't believe that you can explicitly type booleans in Perl. Perl is a very contextual language. Your calling program can easily distinguish between the...
1450
Duncan Cameron
dcameron@...
Apr 26, 2002 5:13 pm
... Something like this should work (untested!): return SOAP::Data->type(boolean => $value ? 1 : 0); Regards, Duncan Cameron...
1451
Michael Percy
mpercy@...
Apr 26, 2002 6:02 pm
That should work if you've got SOAP::Lite on both sides. Note that if you are trying to interop with Apache SOAP, you may have to write a custom deserializer...
Found the problem. It has nothing to do with perl ( I tried using activeperl39;s 5.6.0 version, but it crahses as well). It is the openssl. I was using openssl...
I have created a tiny Webservice using SOAP::Lite and a client written in vb.net. When the client calls the webservice it gets the following error: SOAPAction...
1454
Duncan Cameron
dcameron@...
Apr 28, 2002 8:25 pm
... This error is from the SOAP::Lite server which is rejecting the message from your VB client. Somewhere in your VB code you need to specify the SOAPAction...
I am trying to send a param from SOAP::Lite . it is a String..For some reason .NET Service is getting empty string.. Any one has any example how to send a...
Hi, Sandeep! What's your client code? Wiredumps can be helpful too. My first guess would be incorrect name of one of the parameters. You can use my $string =...
Guys, I've the seen the example code that creates a HTTP daemon in basic using the COM dll. I've got the code up & running on win9x and 2k but have hard...
Can no one help with my message, re-posted below? Does no one care about logging anything on their systems? Could someone maybe post their code to do logging...
Hi, Peter! I'll take a look and get back to you later today. I don't think there were any changes in logging algorithm between 0.52 and 0.55, so something...
Does any have any sample code which tells how a .NET client talks to SOAP::Lite Server..What are steps needed to get this interoperability working..Any help...
I tried a .NET client to talk to SOAP::Lite ..Follwoed the interoperability doc. but I still do not get any value back from the SOAP::Lite server.. If I run...
How do I do a wiredump at the SOAP::Lite server .. for ex. if this is a SOAP::Lite server how do I enable debug or wiredump in this ... #!perl -w use...