I use eclipse plugins and I pass object[][] and any type of objects through axis2. There is just 2 simple rules I follow.
1: I never have a webservice method that "throws Exception" , I handle the error inside the webservice method and I return null object to mean a error. 2: When I want to return Object[][] or any other java object I use XStream java library to convert Object[][] into an XML String. Then when the client gets the String I use XStream again to convert it back into Object[][]. It's very simple and works well. There are other ways I've tried like returning byte[] and using JBoss serializer but it seems to work 80%. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
