Re: Bad Type: axis trying to deserialize a primitive boolean

2004-06-22 Thread Venkatesh Kancharla
Hi Jeol, If the problem is not yet solved, then you can try this: add the boolean parameter by calling this function: call.addParameter(arg1,org.apache.axis.encoding.XMLType.XSD_BOOLEAN, ParameterMode.IN); and while invoking the service use: call.invoke( new Object[] {new

Bad Type: axis trying to deserialize a primitive boolean

2004-06-21 Thread Joel Carklin
Hi all, I have a client which calls a method on my web service which is running on axis. One of the method parameters is a primitive boolean. I get the following error thrown by Axis: org.xml.sax.SAXException: Bad types (boolean -gt; class my.path.to.an.Object) It appears to me that axis is

RE: Bad Type: axis trying to deserialize a primitive boolean

2004-06-21 Thread nishit.kumar
eSoapStub.java:1110) Thanks, Nishit -Original Message- From: Joel Carklin [mailto:[EMAIL PROTECTED] Sent: Mon 6/21/2004 1:49 PM To: [EMAIL PROTECTED] Cc: Subject: Bad Type: axis trying to deserialize a primitive boolean

RE: Bad Type: axis trying to deserialize a primitive boolean

2004-06-21 Thread anup sinha
Hi, I found the same exception for the boolean value on axis. I think there is some problem in axis to map it with primitive boolean. Youcreate an objectof boolean typeand use as a parameters. I hope it will work. Anup Kumar[EMAIL PROTECTED] wrote: I am getting an exception of this sort. I am