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...
3318
cynicalearth
Jan 21, 2004 12:43 pm
Point 2, I have now worked out. Still can't get point 1 though ... still ... xmlns:m="m:NAMESPACE"m:sDestination/m:sDestinationm:sHotelName/m:sHote...
3319
cynicalearth
Jan 21, 2004 2:04 pm
I forgot to include this in the post below.... my code currently looks like this but it doesn't give me what i need $soap = SOAP::Lite -> autotype(0) ->...
3320
Byrne Reese
byrnereese
Jan 21, 2004 3:00 pm
I don't mean to be hard headed, but placing the NS declaration in the Envelope and in the method call is functionally equivalent. I say that only to underscore...
3321
rjdevet
Jan 21, 2004 10:30 pm
I can't believe that I've this working, after struggling with it for a whole day. It should not have be this hard: #!perl -w use SOAP::Lite; $soap =...
3322
Tilman Baumann
Tilman.Baumann@...
Jan 22, 2004 4:43 pm
hi, i have a little problem withe the funktions in the package which i dispatch. I need a special object (a database) in every funktion of the dispatched ...
3323
Christopher Parker
cparker15
Jan 22, 2004 7:08 pm
I've written a SOAP::Lite-powered Web service and now I'm coming across a crossroads. I'm not sure what direction I should be taking now. My Web service...
3324
John Walstra
john_walstra
Jan 22, 2004 7:45 pm
I need to generate a WSDL for a .Net client. At first my perl package was returning value by a simple return. I could generate a WSDL file using...
3325
John Walstra
john_walstra
Jan 22, 2004 10:06 pm
ok, got it to work. Had to @ISA SOAP::Server::Parameters. However not I get this in my WSDL file, and it's not what I want. <xsd:complexType...
3326
Tilman Baumann
Tilman.Baumann@...
Jan 23, 2004 3:24 pm
Thank you. I'm using the SOAP::Transport::HTTP::Daemon way. My error in reasoning was the availability of my database object in the different namespace of the...
3327
Zazie Queneau
zazie_6969
Jan 26, 2004 9:40 am
Hi there, there's a nice example for changing the HTTP protocol in order to talk to servers that understand HTTP/1.1 only. I found it in the SOAP Cookbook on...
3328
Duncan Cameron
duncan_camer...
Jan 26, 2004 12:42 pm
... From: "Zazie Queneau" <zazie_6969@...> To: <soaplite@yahoogroups.com> Sent: Monday, January 26, 2004 9:40 AM Subject: [soaplite] Forcing HTTP/1.1 for...
3329
Marten Lehmann
martenlehmann
Jan 27, 2004 9:49 pm
Hello, at least I tried so. But I wasn't successful yet, because although I didn't choose to install Net-Jabber and MQSeries-support, this packages show up as...
3330
Andrew Moore
amoore
Jan 28, 2004 5:19 pm
Hi - I'm working with an IBM redback application server from a SOAP::Lite client. The server doesn't seem to like the default Accept: headers that ...
3331
amoore
Jan 28, 2004 6:45 pm
Hello - I'm working with an (apparently rather ancient) IBM redback server and a SOAP::Lite client. The server consistantly responds with "SOAP Version...
3332
Chetan Lalye
clalye
Jan 29, 2004 8:19 am
Hi I'm using the following code to test attachments.Everything works as expected and I can save the attachment on the server side but during the invocation,...
3333
Randy J. Ray
rjray_perl
Jan 29, 2004 8:48 pm
... Unfortunately, the problem is less with SOAP::Lite than with LWP, the package that SOAP::Lite uses for HTTP transport. Unless a message is assembled in a ...
3334
Byrne Reese
byrnereese
Jan 29, 2004 11:05 pm
Thanks for the thoughtful reply. This issue is being tracked in the bud database, and I will see what I can negotiate with the LWP maintainers. As for...
3335
Jordan Erenrich
jerenrich
Jan 30, 2004 4:21 pm
I am using Soap::Transport::HTTP::Daemon to handle soap requests, and I reguarly need to restart my server (i.e., when I make changes to the functions that it...
3336
Eric Amick
eamick
Jan 31, 2004 2:10 pm
... I don't think it has anything to do with how you kill the server. I believe you need to include ReuseAddr => 1 as a parameter to your new() call for...
3337
Randy J. Ray
rjray_perl
Feb 1, 2004 1:33 am
... I had the same issue when I was writing the basic server class for my XML-RPC package (RPC::XML::Server). ReuseAddr should be enough, I don't use...