Re: Document/Literal : bad part name in axis server response

2005-01-14 Thread Anne Thomas Manes
file, without manually calling wsdl2java. Bill -Message d'origine- De : Michael Schuerig [mailto:[EMAIL PROTECTED] Envoyé : mardi 11 janvier 2005 11:51 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 07:26

Re: Document/Literal : bad part name in axis server response

2005-01-12 Thread Anne Thomas Manes
PROTECTED] Envoyé : mardi 11 janvier 2005 11:51 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 07:26, Ephemeris Lappis wrote: I don't use wsdl2java. I had it the wrong way around and confused the java2wsdl from your original

Re: Document/Literal : bad part name in axis server response

2005-01-12 Thread Bill Keese
uerig [mailto:[EMAIL PROTECTED]] Envoy : mardi 11 janvier 2005 11:51 : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 07:26, Ephemeris Lappis wrote: I don't use wsdl

RE: Document/Literal : bad part name in axis server response

2005-01-12 Thread Ephemeris Lappis
wsdl2java. Bill -Message d'origine- De : Michael Schuerig [mailto:[EMAIL PROTECTED]] Envoyé : mardi 11 janvier 2005 11:51 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 07:26, Ep

Re: Document/Literal : bad part name in axis server response

2005-01-11 Thread Michael Schuerig
On Tuesday 11 January 2005 07:26, Ephemeris Lappis wrote: I don't use wsdl2java. I had it the wrong way around and confused the java2wsdl from your original message with wsdl2java. In Jonas, using the new (not so new) ejb 2.1 service endpoint features, i just provide the wsdl (that is

RE: Document/Literal : bad part name in axis server response

2005-01-11 Thread Ephemeris Lappis
that... if they do it ! Thanks anyway... -Message d'origine- De : Michael Schuerig [mailto:[EMAIL PROTECTED] Envoyé : mardi 11 janvier 2005 11:51 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 07:26, Ephemeris

Re: Document/Literal : bad part name in axis server response

2005-01-10 Thread Bill Keese
, around document/literal style,and perhaps a new fixed version. Thanks again. -Message d'origine- De: Bill Keese [mailto:[EMAIL PROTECTED]] Envoy: vendredi 7 janvier 2005 09:35 : [EMAIL PROTECTED] Objet: Re: Document/Literal : bad part name in axis server response

Re: Document/Literal : bad part name in axis server response

2005-01-10 Thread Bill Keese
OST"); http.setDoOutput(true); http.setRequestProperty("Content-Type", "text/xml"); http.setRequestProperty("Content-Length", String.valueOf(sb.length())); http.setRequestProperty("SOAPAction", ""); PrintStream ps = new

Re: Document/Literal : bad part name in axis server response

2005-01-10 Thread Michael Schuerig
On Tuesday 11 January 2005 01:57, Bill Keese wrote: Since all the method request/response info is in the WSDL file, I thought you shouldn't need to duplicate any of that information in the WSDD file.  You would simply have the WSDD file point to the WSDL file. Does Axis even use the WSD_L_

RE: Document/Literal : bad part name in axis server response

2005-01-10 Thread Ephemeris Lappis
it generated itself... -Message d'origine- De : Michael Schuerig [mailto:[EMAIL PROTECTED] Envoyé : mardi 11 janvier 2005 04:03 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response On Tuesday 11 January 2005 01:57, Bill Keese wrote: Since all

Re: Document/Literal : bad part name in axis server response

2005-01-07 Thread Bill Keese
http = (HttpURLConnection) url.openConnection(); http.setRequestMethod("POST"); http.setDoOutput(true); http.setRequestProperty("Content-Type", "text/xml"); http.setRequestProperty("Content-Length", String.valueOf(sb.length())); http.setRequestPropert

RE: Document/Literal : bad part name in axis server response

2005-01-07 Thread Ephemeris Lappis
"" URL("http://localhost:/j2me05ws-ejb/J2ME-05-WS/J2ME05WS"); HttpURLConnection http = (HttpURLConnection) url.openConnection(); http.setRequestMethod("POST"); http.setDoOutput(true); http.setRequestProperty("Content-Type", "text/xml");

RE: Document/Literal : bad part name in axis server response

2005-01-07 Thread Ephemeris Lappis
I do agree !!! -Message d'origine- De : Anne Thomas Manes [mailto:[EMAIL PROTECTED] Envoyé : vendredi 7 janvier 2005 18:31 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response Even though there is a work-around, this is still a bug. When using

Re: Document/Literal : bad part name in axis server response

2005-01-06 Thread Bill Keese
OK. I looked over your mail again and I saw a problem. You are using document/literal, right? For the request, you should have the name of the method within your soap body. And for the response, I'm not sure what is correct but I listed my hypothesis below. (I'm still figuring it out

RE: Document/Literal : bad part name in axis server response

2005-01-06 Thread Ephemeris Lappis
; System.out.println(line); } http.disconnect(); } } -Message d'origine- De : Bill Keese [mailto:[EMAIL PROTECTED] Envoyé : vendredi 7 janvier 2005 02:39 À : [EMAIL PROTECTED] Objet : Re: Document/Literal : bad part name in axis server response OK. I