tomj 2002/06/03 18:03:38 Modified: java/test/wsdl/interop3/docLit DocLitTestCase.java Log: Add a call to echoVoid to the test client. NOTE: This fails against Axis since we get an empty soap body and have no element to dispatch the operation with. The engine needs to be fixed to search the service for operations that take no arguments, and invoke the first one it finds. Revision Changes Path 1.5 +3 -0 xml-axis/java/test/wsdl/interop3/docLit/DocLitTestCase.java Index: DocLitTestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLit/DocLitTestCase.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- DocLitTestCase.java 30 May 2002 23:46:03 -0000 1.4 +++ DocLitTestCase.java 4 Jun 2002 01:03:37 -0000 1.5 @@ -74,6 +74,9 @@ assertTrue("Structs weren't equal", struct.equals(binding.echoStruct(struct))); + + // test echoVoid + binding.echoVoid(); }