Are you running ActiveState, Cygwin or did you build Perl yourself? I belive ActiveState 5.6.1 comes with XML::Parser and expat as part of the stock...
681
alan_r_young@...
Jul 27, 2001 5:32 pm
Hi Thanks for replying, I am running ActiveState Perl. Here is my error message when I run soap_perl.asp ">Application failed during request deserialization:...
682
Adams, Ryan (GEL, MSX)
Ryan.Adams@...
Jul 27, 2001 5:52 pm
First off, I'm no expert at this NT/ASP stuff, so feel free to ignore anything I say. :) At first glance, I would say that it looks like your @INC is pretty...
683
Michael Percy
mpercy@...
Jul 27, 2001 6:59 pm
ActiveState actually *uses* SOAP::Lite for their ppm (perl package manager) thing. I believe it's the basis for their querying mechanism. ppm is like CPAN, but...
684
alan_r_young@...
Jul 27, 2001 9:40 pm
OK thanks that gives me something to try Ok another question... assuming I get it installed right the soaplite.com web page shows a sample server but one line...
685
alan_r_young@...
Jul 27, 2001 9:51 pm
Hello now I did run "install soap-lite" and it says it cannot find a PPD file??? ... manager) ... is like ... ActiveState ... box". I ... Perl ... the ppm ... ...
686
Michael Percy
mpercy@...
Jul 27, 2001 10:29 pm
That sounds strange. Maybe you need to upgrade to a recent distribution. Here is a screen dump of a session I had: -- C:\>perl -v This is perl, v5.6.0 built...
687
jasonking@...
Jul 30, 2001 11:11 am
XML Found some useful sites for info on XML/Web Services and SOAP.Cape Clear have started to build up their resources on Web Services. They have a separate...
688
Marcello Teodori
m_teodori@...
Jul 30, 2001 11:44 am
When using SOAP encoding with an HASH value that does not contain any keys that are integers, the serialization returns a SOAP-Struct instead of a xmlsoap:map...
689
David Mullens
damullens@...
Jul 30, 2001 3:21 pm
Hi, I would like to send an XML object via soap::lite to a java client. What is the correct way to send it out using soap::lite. Right now I send it as: ...
690
Paul Kulchenko
paulclinger@...
Jul 30, 2001 3:51 pm
Hi, Marcello! ... That is consistent. Map is not a standard type, but it's supported by SOAP::Lite and ApacheSOAP. More toolkits may support it in a future, ...
691
Paul Kulchenko
paulclinger@...
Jul 30, 2001 4:26 pm
Hi, David! ... Yes, that's correct. You may also use custom serializer if you have , say, DOM object to serialize it into XML fragment. Example of it you may...
692
damullens@...
Jul 30, 2001 7:23 pm
Hi, Well....I coudn't get it to work using type->xml, so I ended up trying to send the info as a base64 (even though the docs at interop.soaplite.com suggest...
693
Paul Kulchenko
paulclinger@...
Jul 30, 2001 7:37 pm
Hi, Dave! The advantage of using base64 is encapsulation. Base64 preserves encoding and doesn't require fragment to be valid XML (in SOAP context). If you...
694
Taras Shkvarchuk
tshkvarchuk@...
Jul 30, 2001 8:54 pm
HI, Once SOAP::Data object is built, is there an easy way to get SOAP::SOM object for traversal of the structure? I was not able to find one, but I may have...
695
Taras Shkvarchuk
tshkvarchuk@...
Jul 30, 2001 9:45 pm
When adding a URI to a Data object it has to be after attr call. my $body=SOAP::Data->name("FooTag"=>"HelloWorld is inside") ...
696
David Mullens
damullens@...
Jul 30, 2001 9:52 pm
Thanks for the help and information. Do you happen to know how much larger the files (in general) would be with base64? I'm not sure I understand all the...
697
Paul Kulchenko
paulclinger@...
Jul 30, 2001 10:13 pm
Hi, David! ... base64 encodes 6 bits as 8, so encoded chunk is about 33% bigger than original. Best wishes, Paul. ... ...
698
David Mullens
damullens@...
Jul 31, 2001 7:27 pm
Hi, I'm wanting to have several small scripts (modules) called from a large main script. The main script would basically have: use SOAP::Transport::HTTP; ...
699
Michael Percy
mpercy@...
Jul 31, 2001 7:42 pm
Hi, When inside a dispatched handler (using SOAP Daemon), I am unable to fork a new process to do work without it blocking forever. Even if I localize ...
700
Meisner, Sean
Sean.Meisner@...
Jul 31, 2001 8:06 pm
Michael, This sounds a lot like a problem I had. To do exactly the kind of thing you want to do with forks in my SOAP server, I had to create my own version...
701
Michael Percy
mpercy@...
Jul 31, 2001 8:31 pm
Haha! Sean, you rock man! Thank you so much, this works great... I have a project-prototype "demo" for my boss' boss at 4:30 and I didn't want to screw it up...
702
Meisner, Sean
Sean.Meisner@...
Jul 31, 2001 9:21 pm
... Happy to help :o) ... Ummm, can't recall the exact train of thought that led me to that solution, but I think I burned a good 2 or 3 work days of reading ...
703
Paul Kulchenko
paulclinger@...
Jul 31, 2001 10:09 pm
Hi, Michael! ... Sure, no problem, but the only difference that I can see is: $c->shutdown(2); $c = undef; instead of $c->close; undef $c; close should do this...
704
Michael Percy
mpercy@...
Jul 31, 2001 10:18 pm
... That sounds about right... I was really confused and about to embark on that journey! ... I don't know if this is the case or not, but this issue...
705
Michael Percy
mpercy@...
Jul 31, 2001 10:28 pm
Paul, I believe close() only closes the file descriptor in the local process, while shutdown(2) closes the socket (with (2), for read+write) across all ...
706
Taras Shkvarchuk
tshkvarchuk@...
Jul 31, 2001 10:40 pm
Hello, I was wandering if any of you have been playing around with certificate authentication? I need to have SSL certificate authentication for client and...
707
Meisner, Sean
Sean.Meisner@...
Jul 31, 2001 10:54 pm
Hi Paul, Calling close() after shutdown() is redundant, shutdown() has closed the socket already. The difference between close() and shutdown() is: close()...
708
Michael Percy
mpercy@...
Jul 31, 2001 11:16 pm
Taras, I was looking at this today actually, although I did not get very far. Promising modules look like: Server: - NET::SSLeay by Sampo Kellomaki ...
709
Paul Kulchenko
paulclinger@...
Jul 31, 2001 11:26 pm
Hi, Michael! Thanks for the help :). There is also IO::Socket::SSL that I used for TCP transport (it should also support SSL, even if it's not documented). I...