how to call a jsp which is in a different WAR file
I have a click here link 开发者_Python百科on a jsp. On clicking, another jsp which is in another WAR file has to be called. I'm using JSF frmework.
Can anyone help me out please....!!!
How about just anchor tag ?
<a href="http://someserver:port/app2/some.jsp">Click Me </a>
JSF
<h:outputLink value="http://someserver:port/app2/some.jsp"><h:outputText value="Click Me"/></h:outputLink>
精彩评论