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 Boolean(boole

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. You create an object of boolean type and use as a parameters. I hope it will work .   Anup Kumar[EMAIL PROTECTED] wrote: I am getting an exception of this sort.

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

2004-06-21 Thread nishit.kumar
I am getting an exception of this sort. I am not sure whether it relates to your problem or not. My scenario is my clients run perfectly fine when run as a java application however once I deploy it on WebLogic and then try to invoke it using a JSP it fails giving the following exception. org.x