[JBoss-user] [JBossWS] - Re: trouble with deserialization of arrays

2005-12-15 Thread jpowerwa
Argh. I thought I replied to this weeks ago. Trying again, as I still need help to get away from using RPC/encoded and use RPC/literal instead. Service Endpoint interface: | package com.mycompany.tws; | | import java.rmi.Remote; | import java.rmi.RemoteException; | import com.mycom

[JBoss-user] [JBossWS] - trouble with deserialization of arrays

2005-11-19 Thread jpowerwa
I have a web service using JBoss 4.0.2. I am generating the WSDL and jax-rpc mapping file using wscompile in rpc/literal mode. I am having problems on the server with the deserialization of objects that contain arrays of Java Strings. The SOAP message that is being generated by the client see

[JBoss-user] [JBossWS] - Re: custom exception received by ws client as AxisFault with

2005-11-14 Thread jpowerwa
Thanks for the reply. Regarding the multiple declarations of the package/namespace mapping in the jaxrpc mapping file, I don't know why that is happening. My only guess is that it comes from the fact that the service endpoint has three methods. I'm only dealing with one right now, but there i

[JBoss-user] [JBossWS] - Re: custom exception received by ws client as AxisFault with

2005-11-14 Thread jpowerwa
A little more info. Part of my original problem went away when I changed the name of the single member data field in my custom exception. It was named "message," which was causing problems because of a JBoss exception serialization bug detailed here: http://www.jboss.org/index.html?module=bb

[JBoss-user] [JBossWS] - Re: custom exception received by ws client as AxisFault

2005-11-12 Thread jpowerwa
Thanks for that tip. I've changed my setup so that both the wsdl and the jax-rpc mapping file are being generated with wscompile, and I changed the encoding style to RPC/LITERAL. My client is still not properly generating the custom exception thrown by the web service endpoint, but it looks di

[JBoss-user] [JBossWS] - custom exception received by ws client as AxisFault with bla

2005-11-09 Thread jpowerwa
I am trying to get custom exceptions working from a web service on JBoss 4.0.2. The custom exception is being written into the SOAP response properly, at least to my eyes, but it is not being deserialized properly by the client. It comes across as an AxisFault with no cause or detail. The det