是否可以在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的调用就像调用一个方法,如果可能的话,返回我需要进一步处理的方法。