Login Page over SSL -- rest of traffic over HTTP

E

Edgar

Has anybody implemented Project Server 2k3 with SSL on the login page
only?
httpS://server1/projectserver/LGNPS.ASP
After successfull login, the rest of the communications should go over
http: instead of https.

httpS://server1/projectserver/LGNPS.ASP
to http://server1/ProjectServer/Home/HomePage.asp

I am able to redirect the page from httpS to http by making the
following modification under the redirect.asp page,
[response.redirect("http://" + Request.ServerVariables("SERVER_NAME")
+ "/projectserver/" + urlArray[0] + queryParams);]
but after changing to http -- I get a page cannot be display. I think
the redirect makes project server lose the connection or session
information. any ideas?
 
D

David Gage

Edgar said:
Has anybody implemented Project Server 2k3 with SSL on the login page
only?
httpS://server1/projectserver/LGNPS.ASP
After successfull login, the rest of the communications should go over
http: instead of https.

httpS://server1/projectserver/LGNPS.ASP
to http://server1/ProjectServer/Home/HomePage.asp

I am able to redirect the page from httpS to http by making the
following modification under the redirect.asp page,
[response.redirect("http://" + Request.ServerVariables("SERVER_NAME")
+ "/projectserver/" + urlArray[0] + queryParams);]
but after changing to http -- I get a page cannot be display. I think
the redirect makes project server lose the connection or session
information. any ideas?

Edgar,

Do you know for sure that this is possible or are you just hoping it
is? My guess is that there is indeed session information that is
separate between https and http. You might want to try the IIS
newsgroups to see what they say as this is more a question of how IIS
handles session state.

David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top