... way ... No, I need the SOAP Envelope, Body and so on. But the SOAP Server has not defined a valid method. Thank Duncan Cameron to have suggested me to use...
4200
jansimunek
Nov 16, 2004 1:32 pm
Hello. I have a problem. I call some WS using SOAP::Lite. SOAP::Lite cannot parse WS response and failed with following error: Unrecognized type ...
4201
Christy
christyaustin7
Nov 16, 2004 10:33 pm
Using the following bit of code: my $query=qq{ <EverNetQuerySpecification xmlns="urn:www.nwmls.com/Schemas/General/EverNetQueryXML.xsd"> <Message> <Head> ...
4202
David Inglis
david.inglis@...
Nov 18, 2004 11:01 pm
Hello I'm am having difficulty setting up a soap connection and am willing to pay someone to help me understand/ achieve this. If anybody is interested please...
4203
Bryce Harrington
bryceharrington
Nov 19, 2004 1:16 am
WebService::TicketAuth version 1.02 has been posted to CPAN and will be available shortly at: http://cpan.uwinnipeg.ca/module/WebService::TicketAuth The change...
4204
ssaxena62
Nov 19, 2004 1:19 am
Hello All, I just need a small sample where small perl client can use https and talk to weblogic web service. Regards, ssaxena Also for http perl client how do...
4205
Richard Boehme
rfboehme
Nov 19, 2004 4:15 pm
Hi there. I'm trying to use the COM DLL and getting an automation error. We wrote this code a number of months ago and have just re-unearthed it. I also can't...
4206
karl_kramsch
Nov 19, 2004 6:14 pm
Hi! I'm new to SOAP programming and it would be helpful for me to study some sample programs integrating the use of Perl's DBI module and SOAP::Lite. I have...
4207
ankurb1
Nov 19, 2004 6:53 pm
Hi, I am writing perl clients using wsdl to access web service. The server uses gSOAP and is written in C++. I am facing some problem in associating namespaces...
4208
Bryce Harrington
bryceharrington
Nov 19, 2004 7:12 pm
... Hi Karl, I've got a DBI-based SOAP web service on CPAN you could take a look at as an example. WebService::TestSystem: ...
4210
joelb1985
Nov 20, 2004 9:24 pm
I need to generate tags that contain an ID like the following: <ArrayOfRequest id="ID1" xsi:type="enc:Array" enc:arrayType="Request[3]"> <item href="#ID2"/> ...
4211
karl_kramsch
Nov 23, 2004 12:05 am
What's up with the crazy little '+' before dispatch in the snippet below from Paul Kulchenko's intro to SOAP::Lite? use SOAP::Lite +autodispatch => uri =>...
4212
karl_kramsch
Nov 25, 2004 11:22 pm
I have the line SOAP::Transport::HTTP::CGI ->dispatch_to('/path/to/my/modules39;) ->handle; in my dispatcher.pl CGI script (with an actual path as an argument to...
4213
sheikmohamed7
Nov 26, 2004 9:21 am
Hi Guys, I am calling the webservice with the method updateStatus().This is webservice wsdl - <s:complexType name="StatusArray"> - <s:sequence> <s:element...
4214
mquayle1972
Nov 26, 2004 11:14 am
I am unable to return attachments from a server. I am using SOAP-Lite- 0.65-beta2.1 - I notice in post 4123 that there was a problem with this. Has this code...
4215
skyeybubble
Nov 29, 2004 7:59 pm
Hi, I'm new to SOAP::Lite and I'm trying to play with the http daemon example I learned from the Quick Start Guide, but I get a denied access to method error....
4216
James Detwiler
dev_jsd
Nov 30, 2004 4:57 pm
Up to this point the SOAP servers I have worked with have a generic method that I call. The specific function is contained in the XML that I pass as an...
4217
Duncan Cameron
duncan_camer...
Nov 30, 2004 11:04 pm
... The envelope() method in the SOAP::Serializer class does seem to support a 'freeform39; option where the complete XML is passed in, but there isn't a way to...
4218
James Detwiler
dev_jsd
Nov 30, 2004 11:31 pm
After searching and browsing through a lot of posts in the soaplite group and reading Duncan's reply to my original problem, I am starting to wonder if I...
4219
David Inglis
david.inglis@...
Nov 30, 2004 11:52 pm
Not sure if this is a stupid question but here goes How do I make soaplite send the envelope with this format <?xml version="1.0" encoding="utf-8" ?> -...
4220
Ryan
pseudo_echo
Dec 1, 2004 6:44 am
All, I'm just starting out with SOAP::Lite, and have a quick question. The service that I'm working with returns something like the following section: ...
4221
Duncan Cameron
duncan_camer...
Dec 1, 2004 7:07 am
... I take it that bt xpath you mean the S::L method of specifying an xpath using match(), dataof() etc. To get the value of an attribute you need to use the...
4222
laurentf_ml
Dec 1, 2004 9:52 am
Hello, I would like to write a little stand-alone soap server, which is very easy with SOAP::Transport::HTTP::Daemon, but, for security reasons, I would like...
4223
Bryce Harrington
bryceharrington
Dec 1, 2004 11:55 pm
For my project, we've got a similar need, but it appears that because Perl lacks decent certificate management, ssl can't be used in daemon mode. We'd be...
4224
Medi Montaseri
montaseri2003
Dec 2, 2004 12:20 am
Hi, New to SOAP::Lite...I have read the manpage and a few other links. I am interested in reaching a SOAP standalone server via SOAP::Lite on my client....
4225
Bryce Harrington
bryceharrington
Dec 2, 2004 12:41 am
Check this out... http://johnbokma.com/perl/https.html...
4226
Byrne Reese
byrnereese
Dec 2, 2004 1:06 am
This is a feature that exists in the next version of SOAP::Lite. The sources have been checked into CVS so you could technically check them out of soaplite's...
4227
laurentf_ml
Dec 2, 2004 8:57 am
... because ... daemon ... issue ... Hello Bryce, I'm happy to learn that I'm not alone :-) here are the results of my searchs done before posting here : ...
4228
Hostile
hostile1976
Dec 2, 2004 12:05 pm
I think it should be possible in theory to do a https server with certificates. I did some reading into it a few months back. I soon decided I would rather...
4229
Matt Hahnfeld
hahnfeld
Dec 2, 2004 4:35 pm
We're using Apache::SOAP to serve up our SOAP services. Our methods all respond using Document/Literal and need to communicate with C#/.NET clients. Because...