on 2004 Dec 13 9:25 PM
Hi every one,
I have configured iisproxy.xml by editing the source and target in the code. Now when i give www.webadd.com i get the documentation page of J2EE and then i would have to enter /irj in there to get the portal page. So how could i map the address www.webadd.com/irj to www.webadd.com so that i could get the portal page directly.
Thanks,
Fahad
what would you do for NW04?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Fahad,
you can realize what you want by creating a index.jsp with the following content, and save it in the J2EE Documentation folder: <Drive>:\usr\sap\<SAPSID>\j2ee\j2ee_<J2EE_instance_number>\docs\ (<= for EP6.0 SP2)
-
<%
//Send the redirect using server redirection (not client script)
//This will also send the HTTP GET parameters
String queryString = request.getQueryString() ;
if (queryString==null ) {
response.sendRedirect
("irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default") ;
} else {//redirect with HTTP GET parameters
response.sendRedirect
("irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default?" + queryString) ;
}
%>
-
Btw: If this tip was helpfull please consider rewarding points by clicking on the yellow star!
Best regards,
Robert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
83 | |
12 | |
10 | |
10 | |
10 | |
9 | |
8 | |
7 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.