on 2011 Apr 27 7:47 AM
Hi,
We are facing below error.
#Application schema 'http' differs from Portal schema 'https'
Session Management will not work for Application 'http://hostname:8000/sap/bc/bsp/sap/ZREG/Main.htm
dsm session management is off.
We are using Apache & below is rewrite rule
RewriteRule ^/(sap\(.*) http://hostname:8000/$1 [P,L]
Anybody has faced this problem before ?
Best Regards,
Tushar.
Edited by: TChavan on Apr 27, 2011 8:47 AM
Your Apache rewrite rule:
RewriteRule ^/(sap\(.*) http://hostname:8000/$1 P,L
is rewriting every request to http://hostname:8000, ignoring the protocol used.
You'll need a rewrite rule that also take the protocol used into consideration.
br,
Tobias
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
DSM session management only works for https not for http. It looks like you rewrite some https to http so you run into this information.
Anja
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
DSM will work with HTTP, but the protocols need to be consistent ([Note 529924|https://service.sap.com/sap/support/notes/529924]):
> If the portal is accessed through http, all the content Web servers also have to be configured for http access. Similarly, if the portal is accessed through https, the content Web Servers have to be configured with https.
More to the point, you need to use a fully-qualified host name, like hostname.company.com:8000 and not just "hostname:8000".
Regards,
Sean
User | Count |
---|---|
70 | |
9 | |
8 | |
7 | |
7 | |
6 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.