Re: "Chicken-Egg" problem with Java2WSDL/WSDL2Java

2002-10-04 Thread James Black
Vishal Mehra wrote: > I would like to expose e xisting java interfaces and classes via SOAP. > If you run java2wsdl and then wsdl2java, you need to move logic from > existing classes to SOAPBindingImp.java. Ideally, I would like to keep > the logic in the original classes. Is there a way arou

Re: SOAP over SMTP/POP

2002-10-04 Thread Terrell Deppe
It looks like you hit on a hotspot (not a pun). I'm simply responding in order to add to the noise, and hopefully put this concept on the fast track as I'm equally interested. I'm certainly willing to commit a few time slices to this effort. -T On Thu, 2002-10-03 at 13:22, Sam wrote: > Hi > >

Re: SOAP over SMTP/POP

2002-10-04 Thread Steve Loughran
- Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 04, 2002 11:36 AM Subject: Re: SOAP over SMTP/POP > O.K. so I have found the W3C's SOAP email binding stuff at: > > http://www.w3.org/TR/soap12-email > > and they say it is onl

RE: "Chicken-Egg" problem with Java2WSDL/WSDL2Java

2002-10-04 Thread Vishal Mehra
Title: Re: "Chicken-Egg" problem with Java2WSDL/WSDL2Java I have the same issue.   I would like to expose existing java interfaces and classes via SOAP. If  you run java2wsdl and then wsdl2java, you need to move logic from existing classes to SOAPBindingImp.java. Ideally, I would like to k

Re: SOAP over SMTP/POP

2002-10-04 Thread Jason Essington
O.K. so I have found the W3C's SOAP email binding stuff at: http://www.w3.org/TR/soap12-email and they say it is only for discussion. (plus I don't completely understand it all) For lack of a better solution I was planning to write something that checks a mailbox every so often (using javamai

Re: "Chicken-Egg" problem with Java2WSDL/WSDL2Java

2002-10-04 Thread Vervoort, Claude
Title: Re: "Chicken-Egg" problem with Java2WSDL/WSDL2Java If you use wsdl2java -H the type information is actually stored in an Helper class, not in the Javabean itself. Would it be possible then to: 1- generate the code with the Helper in a temp folder 2 - move back only the skeleton and

RE: Char datatypes with SOAP

2002-10-04 Thread Shellman, Joel
A Java char is 16 bits. Often Java's API will require an int where it needs a char because a byte won't work (well, I don't know exactly why they used an int instead of a char, but...) -Original Message- From: James Sent: Thursday, October 03, 2002 8:15 PM To: [EMAIL PROTECTED] Subjec

Re: Interoperability and complex types

2002-10-04 Thread James Black
Ben Souther wrote: > All the interoperability examples that I've seen on the web exchange simple > data types like Strings and Doubles. Does anyone know of any examples that > exchange complex types like Beans. If I map a return value to a Java Bean, > does that mean that only Java clients will

Re: Interoperability and complex types

2002-10-04 Thread Steve Loughran
This is your lucky morning >If I map a return value to a Java Bean, >does that mean that only Java clients will be able to consume my web >services? No. If you create your own 'struct-like' class with getters and setters then the far end will be able to do the same. Fancy java objects are diffe

Interoperability and complex types

2002-10-04 Thread Ben Souther
All the interoperability examples that I've seen on the web exchange simple data types like Strings and Doubles. Does anyone know of any examples that exchange complex types like Beans. If I map a return value to a Java Bean, does that mean that only Java clients will be able to consume my we

xsi type and interop

2002-10-04 Thread Sam
Hi. I was reading this http://www.perfectxml.com/articles/xml/soapguide.asp I believe this xsi type interop issue has been fixed now. Can anyone shed light on how it was fixed (was there any standaization or change on MS part ??) /s

Re: SOAP over SMTP/POP

2002-10-04 Thread Steve Loughran
- Original Message - From: "Ken Hygh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 03, 2002 12:58 PM Subject: Re: SOAP over SMTP/POP > I just submitted a paper to IBM DeveloperWorks about an implementation > I've done, doing both raw SMTP as well as polling a POP

RE: Char datatypes with SOAP

2002-10-04 Thread Jianliang Zhao
Thanks, Steve. -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED]] Sent: 2002?10?4? 8:44 To: [EMAIL PROTECTED] Subject: Re: Char datatypes with SOAP well, it would work but you'd need some kind of wrapper object with a char getValue() method to get the char value back. N

Re: the Wondrous curse of interop

2002-10-04 Thread Steve Loughran
- Original Message - From: "Anthony W. Marino" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 04, 2002 3:36 AM Subject: Re: the Wondrous curse of interop > Attempting to retrieve your ppt, pdf and zipped pdf files presents the > following error message: I'd got the l

Re: the Wondrous curse of interop

2002-10-04 Thread Steve Loughran
oops; fixed that - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 04, 2002 12:03 AM Subject: RE: the Wondrous curse of interop > Steve, > > I'v tried to access the files and I receive a "File Not Found". > > Veton. > > -Original Message--

Re: Char datatypes with SOAP

2002-10-04 Thread Steve Loughran
well, it would work but you'd need some kind of wrapper object with a char getValue() method to get the char value back. Note that .NET sends chars in a com.microsoft. something namespace: - - - where s1="http://microsoft.com/wsdl/types/"; - Original Message - From: "Jian

Re: connection refused

2002-10-04 Thread Prabhakar Chaganti
Are you trying to connect to the axis server which is outside a firewall? -prabhakar >>>Please Anyone help me. >>> >>>I typed this command from dos-window right after installing Axis. >>>And I got this Exception... >>> >>>=== from here = >>> >>>c:\axis\>java samples.usersguide.exampl

Two dimensional Arrays

2002-10-04 Thread Ben Souther
Can the Axis client deserialize a two dimensional array of Strings? I've written a webservice function that returns one and, judging from the generated WSDL, Axis seems to know what it's dealing with. The problem comes when I try to consume the webservice with the Axis client. I get a deserial

Re: the Wondrous curse of interop

2002-10-04 Thread Anthony W. Marino
Attempting to retrieve your ppt, pdf and zipped pdf files presents the following error message: "Either you have typed in the wrong URL, something has moved since the URL wassaved or we have made a mess of our links. The server is case sensitive butthe test PC isn't, so this does happe

connection refused

2002-10-04 Thread Takafumi Sato
Title: connection refused Please Anyone help me. I typed this command from dos-window right after installing Axis. And I got this Exception... === from here = c:\axis\>java samples.usersguide.exampl3.Client hello AxisFault  faultCode: {http://xml.apache.org/axis/}S

connection refused

2002-10-04 Thread $B:4F#!!N4J8(B
Title: connection refused Please Anyone help me. I typed this command from dos-window right after installing Axis. And I got this Exception... === from here = c:\axis\>java samples.usersguide.exampl3.Client hello AxisFault  faultCode: {http://xml.apache.org/axis/}Server.

REPOST: wsdl2java produces uncompilable code

2002-10-04 Thread Peter Klotz
Hi, I have a given WSDL file and want to generate client stubs and server skeletons for it. The problem is that for whatever reason wsdl2java does not generate code for some types defined in the WSDL. I've browsed the list and tried options without success. Esp. I have specified -all. Please