ADBException: Unexpected subelement return

2008-10-14 Thread Audino, Jeremy
I've got a Java Client and Server using the Calculator.wsdl supplies with the original Axis (not Axis2). I've generated Axis2 bindings using WSDL2Java. I also have a client and server written in C++ using gSoap. I have no issue with both the Java and C++ clients communicating with the C++

Re: ADBException: Unexpected subelement return

2008-10-14 Thread keith chapman
Hi Jeremy, It looks like your WSDL is RPC encoded (Which is not supported by axis2). How about simply deploying the calculator service as a POJO and then using the generated WSDL to write your client. That should work for you just fine (The WSDL generated by Axis2 by default is doc/lit). Thanks,