Exception not getting displayed in the SOAP response
Sat Nar
Ranch Hand
Joined: Oct 22, 2004
Posts: 83
posted
0
Hi, iam trying to throw an exception using SOAPFaultException.My requirement is that the exception should be the part of the SOAP response.But even after throwing the explicitly,iam not getting the error message in my SOAP response.Below is the code.
QName qname = new QName("Test Fault Exception"); throw new SOAPFaultException(qname,"SOAP Method failed",null,detail);
//SOAP Response
Service Response Submitted at Tuesday, April 4, 2006 11:44:23 AM IST <ns:ArrayOfTestVO xmlns:ns="http://www.openuri.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"></ns:ArrayOfTestVO>
Kindly help me out.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
The Web Services FAQ links to 2 articles about generating and handling exceptions. Those should be a good starting point.