I'm having a hard time writing a Perl client to my Java web service. So far I've been able to access the service fine, the problem is when one of my methods on...
3289
Aaron Trevena
ajt_stc
Jan 13, 2004 12:59 pm
... You could use complex types representing java objects, but it would make SOAP clients a lot less simple to write in any non-Java language. It would also...
3290
nib000
Jan 14, 2004 9:12 am
Hi, I'm trying to put together complex (atleast in my view) bit of xml using soaplite, with this my @soap_data = ( SOAP::Data->name( 'XXX' =>...
3291
jaustvik
Jan 14, 2004 11:42 am
From time to time, when I send this request: POST /extend/eqs/soap/serv.pl HTTP/1.0 Content-Type: text/xml; charse t=utf-8 Accept: application/soap+xml,...
3292
Byrne Reese
byrnereese
Jan 14, 2004 3:03 pm
First I might point you to the following article... it does take you through how to construct these structures manually, but it also discusses the annoying...
3293
obc_spike
Jan 14, 2004 3:46 pm
I've done a few Unix-to-.NET web services recently, but this is my first Linux-to-Linux version and I can't get past hello world. Installed: apache from...
3294
Chetan Lalye
clalye
Jan 14, 2004 5:18 pm
Hi , In some of the posted messaged, i've been reading about the the wsdl2perl utility. Is this available for download ? if not, when is it expected to be...
3295
gdc00108
Jan 14, 2004 9:18 pm
Site Temporarily Unavailable We apologize for the inconvenience. Please contact the webmaster/ tech support immediately to have them rectify this. error id:...
3296
bob56harrison
Jan 15, 2004 10:22 am
Hi All, Wonder if anyone can advise me on SOAP a little. Have just signed up to be a partner with a company and they offer an XML web service The web service...
3297
Víctor A. Rodrí...
bitman09
Jan 15, 2004 3:37 pm
Hi Chetan, ... You can download from SOAPLITE's CVS under wsdl2perl Cheers -- Víctor A. Rodríguez (http://www.bit-man.com.ar) El bit Fantasma (bit-man) Life...
3298
gdc00108
Jan 15, 2004 4:06 pm
Hi We want to connect to an existing application that accept soap message with mime and dime attachment. We try using ->method, ->call, SOAP::Data, freeform to...
3299
Tim Wood
timwood0@...
Jan 15, 2004 6:36 pm
... Ask them for a client app. or a library that plugs into something you know how to use. Web services have not reached the "here39;s my interface, call it",...
3300
Nayana Hettiarachchi
nayanah
Jan 15, 2004 8:14 pm
Hi there, i actually started using SOAP 24hrs ago and i am really new to this but i manage to gather much information so far. i am trying to write a server...
3301
obc_spike
Jan 15, 2004 10:52 pm
I've been using single-parameter method calls on a Perl-to-.NET web service for a while now, but now that I want to use multiple parameters, the connection...
3302
j0rd_rox
Jan 15, 2004 11:04 pm
I'm having problems setting up my server to use any other package then package main. if i set up my server like this in apache. <Location /mod_xmlrpc> ...
3303
Duncan Cameron
duncan_camer...
Jan 16, 2004 9:03 am
... From: "obc_spike" <obc_spike@...> To: <soaplite@yahoogroups.com> Sent: Thursday, January 15, 2004 10:50 PM Subject: [soaplite] Perl client, .NET...
3304
Orlando Andico
orly_andico
Jan 16, 2004 11:51 am
but SOAP::Lite client can.. Using SOAP::Lite 0.55. Client is Mono 0.29, but the exact sample problem is replicatable on .NET Framework. As can be seen, the...
3305
Byrne Reese
byrnereese
Jan 16, 2004 3:02 pm
There is currently no DIME support in SOAP::Lite (any developers out there want to fill this gap?), but MIME support should be rather easy. In SOAP::Lite 0.60...
3306
obc_spike
Jan 16, 2004 3:37 pm
... Thanks for the help, that was definitely the syntax fix. There was another underlying problem that showed itself in debug mode. In this code: my @param =...
I finally manage to figureout how to specify an output so .NET wont complain about an error in XML document though i am left with one more question (as always)...
3309
cynicalearth
Jan 19, 2004 7:42 am
I need to create some XML that looks like this - xmlns:m0="m0:NAMESPACE"> <SOAP-ENV:Header> <m:LoginHeader xmlns:m="m:NAMESPACE"> ...
3310
redgrittybrick
Jan 19, 2004 11:28 am
How can I access the elements of an object passed to a server? I am using CGI with a general dispatcher ... I'd like to construct a client call using...
3311
redgrittybrick
Jan 19, 2004 11:41 am
Does anyone know of any examples of SOAP::Lite client and server for something like a purchase order or any similar document that contains header+detail type...
3312
Duncan Cameron
duncan_camer...
Jan 19, 2004 1:11 pm
... From: "redgrittybrick" <redgrittybrick5701@...> To: <soaplite@yahoogroups.com> Sent: Monday, January 19, 2004 11:28 AM Subject: [soaplite] Making...
3313
Byrne Reese
byrnereese
Jan 19, 2004 3:00 pm
Aaaah. This is a much better question. Your problem is something that will be fixed in the next release of SOAP::Lite. In the next release, namespaces can be...
3314
nayanah
Jan 19, 2004 9:57 pm
hi.. well i've manage to come along way taking the fact that i am only 4 days old to SOAP.. i manage to get it talk with .NET but then once i put an array in...
3315
orb_soft
Jan 20, 2004 1:01 am
I used the literal serializer verbatim from the following as contributed by Alberto: http://ads.harvard.edu/~alberto/SOAP/ Build your message using SOAP::Data....
3316
nayanah
Jan 20, 2004 4:43 am
i finally did it.... without having to use the Serializer here is a working example of SOAP::Lite perl server to .NET all i had to do with play with the...
3317
cynicalearth
Jan 21, 2004 11:23 am
Ok, I have progressed a lot further. I still have two issues - 1. I still can't get the namespace "m0" into the envolope, i have been looking at the module and...