cancel
Showing results for 
Search instead for 
Did you mean: 

login without port 50000

Ronib
Participant
0 Kudos

hi

i implemented iisproxy on my portal to work without enter user & password.

when i login to the portal without port 50000

i can see the homepage and everything looks alright.

after a few "clicks" (display folder in km or navigate to other tab) the browser waits a little and send

me back to the portal homepage again.

if i add in address bar the 50000 ,

everything is ok and i can work without being send to homepage.

can someone help me solve that problem?

thanks

Roni.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Roni,

1. You change the Port by opening the Visual Administrator and going to : Dispatcher -> Services -> HTTP Provider

Change there the "Ports" entry from (Port:50000,Type:http)to (Port:80,Type:http). Then go on "Save".

2. To remove the "/irj" from the portal URL you can create a index.jsp with the following content, and save it in the J2EE Documentation folder:

<Drive>:usrsap<SAPSID>JC<J2EE_instance_number>j2eeclusterserver0appssap.comcom.sap.engine.docs.examplesservlet_jsp\_default oot

-


<%

//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) ;

}

%>

-


If you rather want do the configuration changes on the IIS, than do refer the following link:

Regards

Rajeev.

Please consider awarding points for helpful answers in SDN

Ronib
Participant
0 Kudos

hi Rajeev

1. i dont need to change the portal's ports.

the porblem is after login without enter user & password (ntlm) the iis throws me to the homepage again and again after a few navigation requests.

2. i dont need to change "irj"

if u have other suggestions...

roni.

Former Member
0 Kudos

Hi

Did you activet keep alive in iis?

Florin

Former Member
0 Kudos

I think this thread may help you out.

/thread/45678 [original link is broken]

Ronib
Participant
0 Kudos

hi Florin,

the property "enable http keep alives" in the iis is checked with connection 180 seconds.

the redirect to the homepage is just fews clicks (3 seconds) after logon.

i think maybe the portal "forgets" that the user is authorized and send him again to logon (so the iis logon

for him and send him to the homepage)

any other ideas?

Roni.

Ronib
Participant
0 Kudos

hi Eric,

that link is about http/s and proxy -

i work without proxy and with http only.

thank you anyway,

I will be happy to get more ideas.

Roni Bar David

Former Member
0 Kudos

Look deeper in the thread and you will see that there is a setting on the portal box where you can tell it to rewrite all of the port numbers it sends out so that 50000 is replaced with 80

Former Member
0 Kudos

Can you try to set KeepAliveTimeout value of the J2EE to higher value or (if appropriate) set it to "0" to disable keep alive timeout.

Florin

Ronib
Participant
0 Kudos

Florin,

where do i set j2ee keepAliveTimeOut ???

roni

Ronib
Participant
0 Kudos

Eric,

i dont want to replace port 80 with port 50000,

so i shouldnt change the proxymapping parameter in visual admin.

the ntlm logon goes to iis with port 80, and iis should redirect it with port 50000 to the portal.

my iis dont do that, i dont know why.

roni.

Ronib
Participant
0 Kudos

Florin,

i changed it and restart the server

but with no results.

i stil face the same problem

Roni.