RE: ResultSet arguments

2002-11-07 Thread Brian Ward
Title: RE: ResultSet arguments Yes.  If you establish your complex datatypes (the row from your ResultSet) as a JavaBean (with getters and setters), then Axis will use it's generic Bean serialization/deserialization routines to build the SOAP/XML. When you use the wsdl.exe tool in .NE

RE: ResultSet arguments

2002-11-07 Thread Mattia dongili
vember 07, 2002 3:46 PM > To: [EMAIL PROTECTED] > Subject: Re: ResultSet arguments > > > Thank you very much, Mahindra and Bill Grubbs. > So, do you mean, for example, to create an array of strings > for each datarow > of the ResultSet and to put all of them in an array > (ob

Re: ResultSet arguments

2002-11-07 Thread Paolo Paganotto
beanmapping, instead? - Original Message - From: "Mahindra" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 07, 2002 3:17 PM Subject: RE: ResultSet arguments > Hi, > Just a suggestion > Why don't u get the data from resultset set it

RE: ResultSet arguments

2002-11-07 Thread Mahindra
Hi, Just a suggestion Why don't u get the data from resultset set it into bean and pass across the bean to .NET client.Bean is represented as a complex type which .NET client would recognize . -Original Message- From: Paolo Paganotto [mailto:paolo.paganotto@;txt.it] Sent: Thursday

RE: ResultSet arguments

2002-11-07 Thread Brian Ward
Title: RE: ResultSet arguments I guess I did something similar.  But, I never thought to try and serialize the ResultSet, per se.  I created serializable value objects that represented the contents of a "row" in the ResultSet and my WebService returns an array of these