问题描述
我正在将 CXF 2.2.12 库用于我的Web服务。
I'm using CXF 2.2.12 library for my Web Services.
是否可以在 RESTful中使用 MTOM (消息传输优化机制)
响应?
将感谢与此相关的文档/教程的任何链接。谢谢!
Would appreciate any links to docs/tutorials regarding this. Thanx!
推荐答案
MTOM特定于SOAP,因此我认为它与RESTful体系结构不兼容。但是,HTTP自然支持多部分内容,因此您可以直接执行HTTP中MTOM的所有操作。
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.
如果您确实需要,可以使用进行包装您的多部分内容就像MTOM一样,但是确实没有必要。
If you really wanted you could use XOP for packaging your multi-part content like MTOM does, but it really isn't necessary.
MTOM正在解决HTTP已经解决的问题。
MTOM is solving a problem that HTTP already solved.
这篇关于是否可以使用MTOM响应CXF RESTful Web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!