gpt4 book ai didi

java - 如何从 SOAPEnvelope 响应中获取 byte[]

转载 作者:太空宇宙 更新时间:2023-11-04 11:10:07 24 4
gpt4 key购买 nike

我正在尝试使用 SOAP 服务下载 pdf 文件。 wsdl 导入存在一些问题,因此 stub 没有正确的方法,我正在尝试使用 Apache Axis 服务调用方法下载文件。

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns2:getFileStreamResponse xmlns:ns2="http://spring.io/guides/gs-producing-web-service">
<ns2:FileByteStream>L1VzZXJzL3BrdW1hci9Eb2N1bWVudHMvTmFyZW5kcmFTaW5naC5wZGY=</ns2:FileByteStream>
</ns2:getFileStreamResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

这是我正在尝试使用的java代码。

  String SOAP_REQUEST = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n" +
"\t\t\t\t xmlns:gs=\"http://spring.io/guides/gs-producing-web-service\">\n" +
" <soapenv:Header/>\n" +
" <soapenv:Body>\n" +
" <gs:getFileStreamRequest>\n" +
" <gs:id>12313</gs:id>\n" +
" <gs:token>Ratakkdajd</gs:token>\n" +
" <gs:path>/Users/pkumar/Documents/NarendraSingh.pdf</gs:path>\n" +
" </gs:getFileStreamRequest>\n" +
" </soapenv:Body>\n" +
"</soapenv:Envelope>";

String HOST_ADDRESS = "http://localhost:8080/ws";

SOAPEnvelope resp = null;
try {
byte[] reqBytes = SOAP_REQUEST.getBytes();
ByteArrayInputStream bis = new ByteArrayInputStream(reqBytes);
StreamSource ss = new StreamSource(bis);
MessageFactoryImpl messageFactory = new MessageFactoryImpl();
SOAPMessage msg = messageFactory.createMessage();
SOAPPart soapPart = msg.getSOAPPart();
soapPart.setContent(ss);
Service service = new Service();
org.apache.axis.client.Call call = (org.apache.axis.client.Call)service.createCall();
call.setTargetEndpointAddress(HOST_ADDRESS);
call.setProperty(call.CHECK_MUST_UNDERSTAND, false);
resp = call.invoke(((org.apache.axis.SOAPPart)soapPart).getAsSOAPEnvelope());
byte[] output = resp.getBodyElements().get(0).toString().getBytes();
return output;

} catch (Exception ex) {
throw new Exception(ex.getMessage());
}

我找不到从 SOAPEnvelope resp 获取 byte[] FileByteStream 的方法。有没有人有使用这样的 SOAP api 并创建文件的经验。

如果 wsdl 导入工作正常,我可以使用此代码轻松下载该文件

CountriesPortServiceLocator locator = new CountriesPortServiceLocator();
CountriesPort service = locator.getCountriesPortSoap11(new URL("http://localhost:8080/ws"));
GetFileStreamRequest request = new GetFileStreamRequest(123,
"321323",
"remote_file_path.pdf");
GetFileStreamResponse response = service.getFileStream(request);

byte[] fileStream = response.getFileByteStream();
new FileOutputStream("output.pdf").write(fileStream);

最佳答案

经过几天的研究,客户的一位好心人帮助我找到了解决方案。

SOAPEnvelope 类支持类似于 DOM 的方法,使用这些方法我们可以导航到结果标记 (fileByteStream),并且文本节点中的字符串表示形式实际上是 Byte64 编码的,因此我们需要将其解码以获得原始 byte[]。

//Invoke the WebService.
SOAPEnvelope resp = call.invoke(((org.apache.axis.SOAPPart) soapPart).getAsSOAPEnvelope());
//Extract and decode the fileStream from the response
byte[] output = Base64.decode(resp.getBody().getElementsByTagName("FileByteStream").item(0).getLastChild().getNodeValue());

关于java - 如何从 SOAPEnvelope 响应中获取 byte[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46114946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com