
Portal User asked a question.
Office 365 connector setup
I am trying to setup the Office 365 Connector. I have the instructions but I may be missing something.
I have the Office / Portal Azure side all setup.
Trying to enter the info into the Connector Configuration and have a couple questions.
1. API Endpoint , does something need to be setup for this or is it already there? I entered the SLM server name, http://<SLMServerNAME>/API.
2. Username for SLM Config? Which one does it want? My service account. a regular AD account? When I add my AD account and click Get Customer I get an error pop up, Failed to get customer, No Customer returned. What customer is it looking for and from where?
Can't get past this part.
Thanks,
That is quite old, but I've recently had the same problem and I have solution. There is appendix in guide and that is needed to add exclusion for API folder authentication on SLM website
The Snow License Manager Web API (SLM Web API) uses basic authentication. For the SLM Web
API functionality to work properly, authentication requests need to be passed through to the API
instead of being handled by the IIS (web server). This means that if Windows Authentication is
enabled for the SLM site, an exception allowing anonymous requests must be made for the API in
the SLM web configuration.
Add the following changes in the <configuration> section of the SLM web.config file:
<location path="api">
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<basicAuthentication enabled="false" />
<windowsAuthentication enabled="false" />
</authentication>
</security>
</system.webServer>
</location>