Hi,

i want to add a bean to the details element of an soap fault.


I added the marshaller bean to my SoapFaultMappingExceptionResolver, but the marshaller has only the method

marshaller.marshal(faultType, <RESULT>);

and the the SoapFault method

soapFault.addFaultDetail().addFaultDetailElement(< QNAME>)

. Result is only an interface. What element do i have to create? Should i use the

soapContext.getSoapResponse().getPayloadResult()

element for that?
How do i transform my Result element to a QName?

Cheers,

Ingo