Re: Apache SOAP, JBoss and deployment descriptor

2002-10-03 Thread Scott Nichol
You have a typo: /WEF-INF/soap.xml should be WEB-INF Scott Nichol - Original Message - From: "penguin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 02, 2002 11:51 PM Subject: Re: Apache SOAP, JBoss and deployment descriptor > I'm so sorry but nothing is

Re: Samples Error - famous ns2 - all test work

2002-10-03 Thread Scott Nichol
FYI, the Axis list is [EMAIL PROTECTED] Scott Nichol - Original Message - From: "James Black" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 02, 2002 11:01 PM Subject: Re: Samples Error - famous ns2 - all test work > Brian Rowe wrote: > > >I have Xerces 2.2.0 firs

Re: Silly Error

2002-10-03 Thread Scott Nichol
To handle a mixture of int and Integer, you must map a new serializer for one or both so that the two are serialized using different values for xsi:type. For any new serializer mapping, you must add a new de-serializer mapping. I would recommend leaving the handling of int as it is. It will be

Re: Silly Error

2002-10-03 Thread Tanmay Kumar
Hi, Thanks for quick response. But as I have mentioned , my method signature is like this . public float method1(String str, int count, Integer size) As per ur explaination, with current mapping inside SOAPMappingRegistry, both arguments will be converted to int and we will get a intDeserializ

Re: Silly Error

2002-10-03 Thread Neha Srivastava
hi, change > params.addElement(new Parameter("p", Integer.class, p, null)); to- > params.addElement(new Parameter("p", Integer.class, new Integer(p), null)); u r using servlet client or simple java class client? regards neha - Original Message - From: "Tanmay Kumar" <[EMAIL P

Fw: Silly Error

2002-10-03 Thread Tanmay Kumar
Hi all, There is very poor response today. Scott have answered to my question . But today due to his absence in mailing list, no reply has yet come. I hope u all have a solution for my question as u might have faced this before. Please answer as I am unable to proceed. Pls. read the below mentio