Let me answer my own question. In order to deserialize the explicit
response headers which are defined in the WSDL of the service you grab
first the SOAP header element
GepirParty value = binding.getOwnerOfGLN( go );
SOAPHeaderElement she = binding.getResponseHeader(ns,
"gepirResponseHeader");
And then deserialize it with:
GepirResponseHeader grh = (GepirResponseHeader)
she.getObjectValue(GepirResponseHeader.class);
The GepirResponseHeader class is emitted by WSDL2Java.
I found the answer in
http://wiki.apache.org/ws/FrontPage/Axis/WSDLJavaHeaderServer . This
should be anyway better documented.
BR
Silvester