Apache Axis WSDL2Java error - Missing <soap:fault> element
Posted
by Pearl
on Stack Overflow
See other posts from Stack Overflow
or by Pearl
Published on 2010-01-25T23:07:16Z
Indexed on
2010/05/20
15:00 UTC
Read the original article
Hit count: 596
We are integrating a third party SOAP web services in our application. The WSDL is used with SOAPUI tool, where sample requests and responses worked fine.
When we try to integrate with apache Axis 1.3, where we tried WSDL2JAVA with the WSDL. We received the following error
java.io.IOException: ERROR: Missing element inFault "serviceFault" in operation "serviceFault", in binding saveRegistration at org.apache.axis.wsdl.symbolTable.SymbolTable.faultsFromSOAPFault(SymbolTable.java:2858) at org.apache.axis.wsdl.symbolTable.SymbolTable.populateBindings(SymbolTable.java:2549) at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:744) at org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:543) at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:518) at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495) at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361) at java.lang.Thread.run(Unknown Source)
Anyone already faced this issue and solved?
© Stack Overflow or respective owner