jsp navigation from different application
In one of my application ,i need to send request from one jsp to other jsp in different application.
Both the applications are gateweighed through plumtree portal and using MVC1(almost all serverside and client side code in jsp pages)
I.e
redirect from one jsp to other jsp in different application if there is no data in collection in first jsp.
===============================
[4/26/07 18:27:36:247 EDT] 16d9ac88 SystemOutO test.jsp - Error
=java.lang.IllegalStateException
[4/26/07 18:27:36:247 EDT] 16d9ac88 SystemOutO java.lang.IllegalStateException
[4/26/07 18:27:36:247 EDT] 16d9ac88 SystemOutO at
com.ibm.ws.webcontainer.srt.SRTServletResponseContext.sendRedirectWithStatusCode(SRTServletR
esponseContext.java:118)
================================
<table>
<tr><td>
<%
if(arrEngFindingRequests!=null && arrEngFindingRequests.size()>0){
.........
-
}else{
System.out.println("test.jsp - refereshing....test.jsp...");
response.sendRedirect(response.encodeURL("test_application2.jsp?no="+strNo+"&from=search"));
}
%>
<td>
<tr>
</table>

