Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 SOAP 客户端通过其 Content-Type 定义为 application/x-www-form-urlencoded 的请求发送。我的 jax-ws 服务器响应 HTTP 415 错误,抱怨它需要 text/xml 的内容类型。
显然这个客户端不能被改变所以我试图找出是否有强制我的服务器接受这个内容类型?
Tichodrama 是对的。客户不是肥皂客户。而是通过 HTTP POST 发送 xml。
我正在处理同样的问题,最后我不得不添加一个 servlet,它接受定义为 application/x-www-form-urlencoded 的 Content-Type,并且在内部这个 servlet 调用了所有的 SOAP 逻辑。