WebService

最近在系统交互时,尝试了webservice传输。标准的spring + cxf,没有什么可说的,网上搬运工一大堆。

一下解决方案均来源网络,非原创。


主要提一下 restful不适用于大文件上传,建议改用soap报文发送。

MTOM 中提到改标准可以减少base64Binary 带来的33%的文件容量变化,但是其本身需要为 MIME 花费同比例的开销,所以不建议在多个大文件的场景下使用。

原文如下:

MTOM is efficient, in the sense that it doesn't have the 33% size increase penalty that xs:base64Binary has. It is interoperable, in the sense that it is a W3C standard. However, MIME multipart incurs a small cost proportional to the number of attachments, so it is not suitable for a large number of tiny attachments.

另外cxf 需要在服务端申明soap接口并开启mtom,clinet同样需要开启。

参考 Optimizing Binary Data Transmission Using MTOM/XOP


建议注释

@SOAPBinding(style = SOAPBinding.Style.RPC)
@MTOM
<jaxws:properties>
        <entry key="mtom-enabled" value="true"/>
</jaxws:properties>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值