我有以下 enpoint 方法。这是处理 Soaprequest 的结构。
public JAXBElement<com.schema.get_response.v2.GetResponseType> handleGetresponse(@RequestPayload JAXBElement<Byte> Soaprequest){
.......................................
/* how to process the Soaprequest which contains the byte[] of base64Binary objects*/
}
我的 Web 服务正在访问上述端点,并且 Soap 请求具有 base64Binary 对象的 JAXBElement byte[]。在处理上述 JAXBElement 请求对象并从中获取实际请求时遇到问题。请任何人帮助我。