在将服务器响应传递到 Axis 之前对其进行预处理

发布于 2024-08-17 04:54:01 字数 310 浏览 7 评论 0原文

我正处于一个非常特殊的位置,试图访问其答案封装在 HTML 中的 SOAP 服务。这是服务提供商 (SourceForge) 的一个错误,已在 7 个月内得到承认,但目前还没有预计到达时间。 具体细节

如果我可以在将实际响应传递给 Axis 之前拦截它,我将能够删除 HTML 内容,但我不知道该怎么做。任何指示(以及替代解决方案)将不胜感激。


更新:使用轴 1.4

I'm in the very peculiar position of trying to access a SOAP service whose answers are wrapped in HTML. This is a bug with the service provider ( SourceForge ) , acknowledged for seven months, with no ETA so far. Nitty-gritty details.

If I can intercept the actual response before passing it on to Axis, I would be able to strip the HTML content, but I don't know how to do that. Any pointers ( as well as alternative solutions ) would be appreciated.


Update: Using Axis 1.4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

<逆流佳人身旁 2024-08-24 04:54:01

我会尝试看看是否可以添加一个拦截器剥离 HTML。他们似乎使用它来进行 SOAP 压缩,看看:
http://www.thomas-bayer.com/soap-compression-howto。嗯
看看客户端配置部分,也许你可以做类似的事情。

I would try to see if I can add a interceptor Stripping the HTML. They seem to use that for SOAP compression, have a look at:
http://www.thomas-bayer.com/soap-compression-howto.htm
Look at the client configuration part, maybe you can do something similar.

拔了角的鹿 2024-08-24 04:54:01

如果您可以添加到服务器端,ServletFilter 可能是一个解决方案。

如果您只能在客户端进行更改,则可以创建一个代理 servlet 来接收 SOAP 数据,将其传播到服务器并剥离结果。

实际的剥离可以使用 XSLT 来完成,尽管如果包装 html 是恒定的,这可能有点过分了。

If you can add to the server side, a ServletFilter could be a solution.

If all you can change is on the client side, you can create a proxy servlet that receives the SOAP data, propagates it to the server and strips the result.

The actual stripping can be done using XSLT although that might be overkill if the wrapping html is constant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文