|
Additional web.config options |
Top Previous Next |
|
SSO Exclude settings
Due to Asp.Net limitation the Single Sign On doesn't work across different domains, in this case, on parent portals. To circumvent that problem we developed an "URL rewrite" mechanism to manage Single Sign On for multiple parent portals.
However, some modules don't work properly when the url is being rewritten - notably payment gateways. This doesn't mean you will not be able to use payment gateway as we solved the problem by adding "exclude settings" The SSO version has a built-in mechanism for excluding specific files from the rewrite process (for example PaymentGateway.ascx) To exclude specific files from the rewrite you have to add the following entry(entries) to your web.config file:
<appSettings> ... <add key="MPUS_exclude1" value="PaymentGateway.ascx"/> ... </appSettings>
You can exclude as many files as needed - just add new key for each file.
<appSettings> ... <add key="MPUS_exclude1" value="PaymentGateway.ascx"/> <add key="MPUS_exclude2" value="Test.ascx"/> <add key="MPUS_exclude3" value="SomethingElse.ascx"/>
...
</appSettings>
|