- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在向外部 SOAP 服务发送一条消息,该服务应该使用包含图像等内容的 soap 消息进行回复。
这是我写的发送消息的代码:
@Bean
Jaxb2Marshaller jaxb2Marshaller() {
Jaxb2Marshaller jaxb2Marshaller = new Jaxb2Marshaller();
jaxb2Marshaller.setContextPath("myContextPath");
return jaxb2Marshaller;
}
@Bean
public WebServiceTemplate webServiceTemplate() {
WebServiceTemplate webServiceTemplate = new WebServiceTemplate();
webServiceTemplate.setMessageSender(webServiceMessageSender());
webServiceTemplate.setMarshaller(jaxb2Marshaller());
webServiceTemplate.setUnmarshaller(jaxb2Marshaller());
webServiceTemplate.setDefaultUri(defaultUri);
return webServiceTemplate;
}
public ProcessDocumentResponse sendRequest(MyRequest myRequest) {
MyResponse response = (MyResponse) webServiceTemplate.marshalSendAndReceive(
myRequest,
message -> ((SoapMessage) message).setSoapAction(theAction));
return response;
}
Receiving response: HTTP/1.1 200 OK
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: multipart/related; type="application/xop+xml";start="<http://tempuri.org/0>";boundary="uuid:_someUUID_";start-info="text/xml"
Server: Microsoft-IIS/10.0
MIME-Version: 1.0
X-AspNet-Version: ...
X-Powered-By: ...
Date: Wed, 11 Oct 2017 09:10:36 GMT
Content-Length: 228346
Connection can be kept alive indefinitely
"[\r][\n]"
"--uuid:_someUUID_[\r][\n]"
"Content-ID: <http://tempuri.org/0>[\r][\n]"
"Content-Transfer-Encoding: 8bit[\r][\n]"
"Content-Type: application/xop+xml;charset=utf-8;type="text/xml"[\r][\n]"
"[\r][\n]"
"<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body>
<here a long response and at some point:><OutputImages><ImageData><xop:Include href="cid:http://tempuri.org/1/636433219150087850" xmlns:xop="http://www.w3.org/2004/08/xop/include"/></ImageData><Metadata i:nil="true"/></OutputImages>
</s:Body></s:Envelope>[\r][\n]"
"--uuid:_someUUID_[\r][\n]"
"Content-ID: <http://tempuri.org/1/636433098360776690>[\r][\n]"
"Content-Transfer-Encoding: binary[\r][\n]"
"Content-Type: application/octet-stream[\r][\n]"
"[\r][\n]"
"[0xff][0xd8][0xff][0xe0][0x0]_here a long sequence o bytes representing an image_
<< "--uuid:_someUUID_[\r][\n]"
<OutputImages><ImageData><xop:Include href="cid:http://tempuri.org/1/636433219150087850" xmlns:xop="http://www.w3.org/2004/08/xop/include"/></ImageData><Metadata i:nil="true"/></OutputImages>
最佳答案
经过一番挣扎,我找到了解决方案。
关键是要了解这个机制是如何调用的,我忽略了它,我感到羞耻。
它被称为 MTOM,我的问题的解决方案只是在编码器创建中多出一行:
@Bean
Jaxb2Marshaller jaxb2Marshaller() {
Jaxb2Marshaller jaxb2Marshaller = new Jaxb2Marshaller();
jaxb2Marshaller.setContextPath("myContextPath");
jaxb2Marshaller.setMtomEnabled(true); //that's it!!
return jaxb2Marshaller;
}
关于jaxb - Spring WS WebServiceTemplate : access to the content of the response or customising the unmarshaller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46685609/
我正在将 Unmarshaller 与 Spring Web Services 一起使用。我在网上看到了一些例子,看起来这两个接口(interface)可以互换使用。我想知道其中一个是否比另一个更好?
下面有一个 Unmarshaller 实现,因为 time.Unix 只接受秒或纳秒,但我的数据源以毫秒为单位。在问我这里的问题之前是一些代码 代码: type Platform struct {
我在使用 Morphia 读取/解码多维数组时遇到了麻烦。 以下类: @Entity class A { double[][] matrix; } 被正确编码并存储在 mongodb 中,但是在读
我正在学习Spray,使用spray-can和spray-httpx(没有spray-routing)来接受上传的文件。我提出了以下建议: def receive = { ...
我看过一些帖子,例如 this one解决了在不同键上解码的问题。但是,当我有多个图层时,我似乎很难弄清楚如何去做。 这是我想解码的内容: {"chainlink":{"usd":3.75}}然而,c
我目前正在尝试实现一个 PATCH 端点,该端点应该只更改 JSON 帖子正文中实际提供的值。不幸的是, jackson 似乎将未提供的值视为 NULL,从而重置了这些现有值。以下示例: public
我在读取 .xml 文件时得到以下信息。这是错误 javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.dJoh
我创建了一个简单的网络服务 (spring-web),用于验证关于 XSD 的传入 XML,如果发生任何验证错误,它们应该返回给请求者。 下面的代码完成了它的工作...... @PostMapping
我在各种堆栈溢出帖子和博客条目中看到了以下语法: JAXBElement sc = unmarshaller.unmarshal(is, SomeClass.class); 那么当我尝试使用此语法时,
好吧,我的问题绝对不同于针对同一问题提出的所有其他问题。 这是我的写法: public Folder(Parcel in, ClassLoader loader) { id = in.read
我有关于将 XML 转换为 Java 对象的问题,在这里我使用 JAXB。 就我而言: XML 数据: Aris Tonar XML 数据
我正在一个简单的 java 类上尝试 Marshaller 和 unMarshaller 的测试代码。 我创建了我的对象并设置了它的 ID。遇到的问题是在将它解码回 java 对象后 ID 变量不一样
我在一个由解码器设置的类中有一个可为空的字段: @XmlElement(name = "value", nillable = true) private BigDecimal valueVariabl
我使用 JAXB 解析器将通过 http 请求发送的 XML 转换为 Java 对象,同时根据我的 XSD 模式对其进行验证。问题是当调用 unmarshal() 方法时会引发此异常: javax.x
我有一个 MysqlTime 结构,它有自己的编码和解码。 type MysqlTime struct { time.Time } const MYSQL_TIME_FORMAT = "200
我是 JAXB 的新手并且继承了一个项目,该项目使用它来编码/解码 xml - 已经使用各种 JAXB 注释编写了自定义验证 - 目前没有使用模式。 我需要在解码时添加一些验证以检查给定元素是否只出现
我从 API 获取如下 JSON: { "unknownkey" : { "sum" : 7030.76636, "low" : 6787.05692, "avg" : 0
在网上尝试了无数解决方案后,我在近一周的时间里遇到了以下困难。具体问题与在我的 JUnit 测试中调用方法 Configuration.getUnmarshallerFactory().getUnma
我收到了 xml [ERROR] Reference Number Same 2007 我想解码它,我正在使用下面的代码 JAXBCo
我从 git 克隆了 optaplanner-examples 以了解如何针对我的问题案例实现该库。 我修改了示例 PassionAdmissionSchedule,我只想要没有 swing 的代码。
我是一名优秀的程序员,十分优秀!