Author
Accessing Servlet from different war Files
Eshwar Prasad
Ranch Hand
Joined: Mar 21, 2008
Posts: 191
I have two applications called A.war and B.war.
There is a servlet available in A.war which on validating parameters dispatches the call to servlet in B.war
Please let me know if can be possible
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
posted Jul 20, 2009 10:48:43
0
You want to use a request made in one application in a completely separate web application?
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56192
Major design flaw. If the code is to be re-used it should be included in both applications. This should be build-time, not run-time sharing
[Smart Questions ] [JSP FAQ ] [Books by Bear ] [Bear's FrontMan ] [About Bear ]
Rex Tan
Greenhorn
Joined: Mar 26, 2009
Posts: 8
Well if you really want it that way you can just import information using
<c:import url="...."/>
However you should really put those servlets in the same application, since you can't forward requests to the other servlet using RequestDispatcher unless they are in the same web application context
SCJP 1.6, SCWCD 1.5, MCTS, MCT
subject: Accessing Servlet from different war Files