cancel
Showing results for 
Search instead for 
Did you mean: 

SOAPFaultException

Former Member
0 Kudos

Hi All,

i got SOAPFaultException when i am calling the Webservice Model from Webdynpro app,

May i know the possible reasons why this Exception will occure

Thanks in Advance

SIva Sankar N

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Siva,

Just see that are you passing all the input values to your webservice and in the datatype required. This exception is raised where there is a datatype mismatch in your input parameters.

Regards,

Murtuza

Former Member
0 Kudos

Hi Siva,

this exception comes when all the mandatory fields are not getting passed to webservice.Just print the request model & check whether any of the values are null.

regards

Sumit

Former Member
0 Kudos

Goto runtime Workbench and check if your soap adapter is active.

Try adding an additional catch block to the execute method of your custom controller, to catch exceptions of type javax.xml.rpc.soap.SOAPFaultException:

catch (SOAPFaultException sfe) {

manager.reportException("SOAPFaultException: " + sfe.getDetail(),false);

catch(Exception e){

manager.reportException(e.getMessage(), false);

}

This should give you more detail about the error you're getting back