Try our conversational search powered by Generative AI!

Single sign on CMS/Commerce manager?

Vote:
 

Hi!

Trying to get single sign on to work when going from CMS edit/admin to Commerce manager.
Found a setting in app.settings for Commerce manager, EnableAdminSso that is used in Sso.aspx, that I hoped would magically help me with this, but perhaps is used for something completely different?

I would really like to get rid of the second login.

Thanks for your input :-)
/ Markus

#61954
Oct 08, 2012 15:06
Vote:
 

That is what it is intended for.  I think you need to update the contract in your cms website to be able to talk to the single sign on service in the commerce manager.  There should be a entry similar to this, if not you will need to add it in yoru cms site

<system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="WSHttpBinding_SingleSignOn"
          closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
          bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
          maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
          messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
          ** NOTE: Add Security Here
          <security mode="None">
            <message clientCredentialType="None" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://SET TICKET SERVICE HOST HERE/SsoService.svc" binding="wsHttpBinding"
        bindingConfiguration="WSHttpBinding_SingleSignOn" contract="Mediachase.Commerce.Security.ISingleSignOn"
        name="WSHttpBinding_SingleSignOn" />
    </client>
  </system.serviceModel>  

    You will also need to create a website on iis to host the service.  When you install the commerce there should be a folder called Integration service in the shared folder.  The should be a SSOService.svc file in there.  Make sure all the config files of the project have the correct values as well.

#61967
Oct 09, 2012 2:45
Vote:
 

Thanks again, Mark,

excellent answer :-)

Did you find any documentation about this or figure it by your own?
Neat feature but not that easy to use without a description like this. Do I have to use SsoSharedSecret (also in appsettings)?

#62069
Edited, Oct 11, 2012 14:49
Vote:
 

The SsoSharedSecret should be the same in the cms website, integration service and commerce manager.  I did not find any documentation on this as of yet but we can put on the list to document.  

#62075
Oct 11, 2012 20:03
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.