Is it possible to use MTOM in reponse of CXF RESTful Web Service

对着背影说爱祢 提交于 2019-12-01 07:13:29

问题


I'm using CXF 2.2.12 library for my Web Services.

Is it possible to use MTOM (Message Transmission Optimization Mechanism) in RESTful response?

Would appreciate any links to docs/tutorials regarding this. Thanx!


回答1:


MTOM is specific to SOAP so I would argue that it is incompatible with a RESTful architecture. However, HTTP supports multi-part content naturally, so you can do everything that MTOM does in HTTP directly.

If you really wanted you could use XOP for packaging your multi-part content like MTOM does, but it really isn't necessary.

MTOM is solving a problem that HTTP already solved.



来源:https://stackoverflow.com/questions/4790989/is-it-possible-to-use-mtom-in-reponse-of-cxf-restful-web-service

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!