The code is deployed and working. But the chatter at the top right corner is not loading. Please refer attachment. I have already tried the below forum suggestion. But no luck.
#3783@6f1d9bc9-04fc-44e2-99d3-85040ddbe290
WEBSITE_LOAD_USER_PROFILE = 1
4 Answer(s)
-
0
is there any console errors? show the client logs
-
0
Hi @mohamedaarif,
Have you also tried this <a class="postlink" href="https://github.com/Sustainsys/Saml2/issues/427#issuecomment-199050448">https://github.com/Sustainsys/Saml2/iss ... -199050448</a> ?
-
0
This is the current web.config <?xml version="1.0" encoding="utf-8"?> <configuration> <a class="postlink" href="http://go.microsoft.com/fwlink/?LinkId=786380">http://go.microsoft.com/fwlink/?LinkId=786380</a> --> <system.webServer> <handlers> <add name="aspNetCore" path="" verb="" modules="AspNetCoreModule" resourceType="Unspecified" /> </handlers> <aspNetCore processPath=".\vNextFSM.Web.Mvc.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" /> </system.webServer> </configuration>
Where to add this????
<system.identityModel> <identityConfiguration> <securityTokenHandlers> <add type="System.IdentityModel.Services.Tokens.MachineKeySessionSecurityTokenHandler, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <remove type="System.IdentityModel.Tokens.SessionSecurityTokenHandler, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </securityTokenHandlers> </identityConfiguration> </system.identityModel>
When I add like this... getting error...
<?xml version="1.0" encoding="utf-8"?> <configuration> <a class="postlink" href="http://go.microsoft.com/fwlink/?LinkId=786380">http://go.microsoft.com/fwlink/?LinkId=786380</a> --> <system.webServer> <handlers> <add name="aspNetCore" path="" verb="" modules="AspNetCoreModule" resourceType="Unspecified" /> </handlers> <aspNetCore processPath=".\vNextFSM.Web.Mvc.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" /> </system.webServer> <system.identityModel> <identityConfiguration> <securityTokenHandlers> <add type="System.IdentityModel.Services.Tokens.MachineKeySessionSecurityTokenHandler, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <remove type="System.IdentityModel.Tokens.SessionSecurityTokenHandler, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> </securityTokenHandlers> </identityConfiguration> </system.identityModel> </configuration>
-
0
hi
you may need to add this entry in configSections. <a class="postlink" href="https://stackoverflow.com/questions/38877106/unrecognized-configuration-section-system-identitymodel">https://stackoverflow.com/questions/388 ... ntitymodel</a>
by the way if it's .net core, then it doesn't read web.config at all.
And share the result with exception logs