cancel
Showing results for 
Search instead for 
Did you mean: 

How to map www.webadd.com/irj to www.webadd.com

Former Member
0 Kudos
64

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

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

what would you do for NW04?

Former Member
0 Kudos

Hi Jeremy,

I already answered your own thread:

Why don't you try that and post there again if you have problems???

Thanks,

Robert

Former Member
0 Kudos

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