如何从SOAP Web服务获取映像

时间:2013-09-20 07:38:33

标签: java web-services soap wsdl

我的客户端会给我WSDL网址,它会返回 JPEG图像和一些文字。

我还没有获得WSDL所以我想知道如何在SOAP消息中获取图像?

<?xml version="1.0"?> 
<soap:Envelope></soap:Envelope>
<soap:Body>
**??**
</soap:Body>

请注意SOAP Body中的问号。 其中标记/格式我将获得图像?

在获取图像之后我应该用什么数据类型的Java 来设置 POJO

有点解释或任何相关的Tutorail将真的很有帮助..

3 个答案:

答案 0 :(得分:1)

我希望这个链接可以帮到你..    http://www.ibm.com/developerworks/xml/library/x-tippass/

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
              xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ps:retrieve 
       soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
       xmlns:ps="http://psol.com/2004/ws/retrieve">
<address xsi:type="xsd:base64Binary">d3d3Lm1hcmNoYWwuY29t</address>
</ps:retrieve>
</soapenv:Body>
</soapenv:Envelope>

答案 1 :(得分:1)

服务响应可能包含图片base64或信封外的附件。 解码base64的示例:

public static BufferedImage decodeToImage(String imageString) {

    BufferedImage image = null;
    byte[] imageByte;
    try {
        BASE64Decoder decoder = new BASE64Decoder();
        imageByte = decoder.decodeBuffer(imageString);
        ByteArrayInputStream bis = new ByteArrayInputStream(imageByte);
        image = ImageIO.read(bis);
        bis.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
    return image;
}

JAVA已经有一个用于处理SOAP with attachments的API。

    SOAPMessage response = connection.call(requestMessage, serviceURL);
    Iterator attachmentsIterator = response.getAttachments();
    while (attachmentsIterator.hasNext()) {
        AttachmentPart attachment = (AttachmentPart) attachmentsIterator.next();
        //do something with attachment 
    }

答案 2 :(得分:0)

我使用base64binary发送文件,jpg等。

<soap:element name="jpg" type="xs:base64Binary" minOccurs="0" maxOccurs="1"/>