Re: java.util.Calendar serializer patch contribution

2004-03-12 Thread Scott Nichol
We are always open to contributions. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Frank Cohen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 12, 2004 8:3

java.util.Calendar serializer patch contribution

2004-03-12 Thread Frank Cohen
My open-source framework and utility TestMaker bundles Apache SOAP. A user pointed out a problem where he was trying to serialized a java.util.Calendar object in a complex data type. The Apache SOAP code serializes GregorianCalendar but not Calendar. So, I modified the Calendar serializer class

Re: Serializing java.util.Calendar

2004-03-12 Thread Scott Nichol
It depends on what you consider "easy" ;-). Writing a serializer+deserializer for a Calendar is probably not hard: most of the code could be re-used from CalendarSerializer. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specifi

Re: COM Components

2004-03-12 Thread Scott Nichol
Yes. There was a bug fix after the 2.3.1 release, which is in the nightly builds. If I recall, it was a memory leak. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Vishal

RE: overloaded methods?

2004-03-12 Thread Vishal Shah
Steve,   In that case, you may have too many fine-grained, atomic services vs a coarse-grained business service. From the managebility standpoint, having too many fine-grained services , nightmare, unless you embrace Web Services Management platform. Steve Sanden <[EMAIL PROTECTED]> wrote: Yes ..

Serializing java.util.Calendar

2004-03-12 Thread Frank Cohen
Probably a silly questions, but I have a Java bean that contains a java.util.Calendar object. I get a cannon serialize java.util.Calendar exception when I try using the BeanSerializer. The Apache SOAP 2.3.1 code includes a serializer for java.util.GregorianCalendar. Is there an easy way to seri

COM Components

2004-03-12 Thread Vishal Shah
Does Apache SOAP 2.3 offer a plug-in to handle COM components? thanks Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster.

Re: WSIF

2004-03-12 Thread Scott Nichol
There is an active Apache project for WSIF: http://ws.apache.org/wsif/ Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Vishal Shah" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

WSIF

2004-03-12 Thread Vishal Shah
Has any one experienced with WSIF (Web services Invocation Framework) ? Is it real  ? Does it stand up to its premises ? Please share your good/bad experiences and the best resources to learn ? What's IBM stance on WSIF ?   Thanks Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster.

Re: int[][] as parameter

2004-03-12 Thread Scott Nichol
I looked at the current code in CVS. It "handles" deserialization of an array-of-arrays by throwing an exception "Arrays of arrays are not supported", which tells me they are not supported in 2.3.1, either. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered

Re: int[][] as parameter

2004-03-12 Thread Martin Gainty
Ying: Where is the server side addParameter() method? Here is an example of how to setup a service which returns an Array of strings http://www.mail-archive.com/[EMAIL PROTECTED]/msg18067.html HTH, ~Martin~ - Original Message - From: "Ying Ying" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> S

Re: int[][] as parameter

2004-03-12 Thread Ying Ying
Hi Scott, I am using Apache SOAP 2_3_1. When I am sending a string[][] parameter, the SOAP message is like: http://schemas.smlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/2001/XMLScehema-instance"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";> http://schemas.xmlsoap.org/soap/encodin

Re: int[][] as parameter

2004-03-12 Thread Scott Nichol
What version of Apache SOAP are you using? What exception are you getting? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Ying Ying" <[EMAIL PROTECTED]> To: <[EMAIL PROTECT

int[][] as parameter

2004-03-12 Thread Ying Ying
Hi all,   If i wanna pass an int[][] as parameter on the call, it seems defalut SOAPMappingRegistry can't work with it. So, in this case, what should I do?   Thanks & Regards, Ying