0

是否可以在 struts 操作中间调用远程 servlet,然后使用其结果?

例如,假设我在同一台服务器上有两个 webapps A 和 B

Webapp A 有一个动作,我想做这样的事情:

processing
"call" servlet in webapp B
process using response from remote servlet
forward to whatever page is appropriate (success/error/etc)

在我的具体示例中,webapp B 中的 servlet 将生成一个 PDF 文件,该文件在响应中返回,我需要在 webapp A 中的操作的进一步处理中使用此 pdf 文件。

所以我希望对servlet的调用就像调用一个方法,如果可能的话,它会返回我需要进一步处理的东西。

4

1 回答 1

0

您可以使用 vanilla HttpURLConnection或更强大的Apache HttpClient Api

于 2012-08-15T14:04:24.167 回答