Base solution for your next web application
Open Closed

The Chatter is not loading in Azure Web app environment #4415


User avatar
0
mohamedaarif created

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

Kindly assist.


4 Answer(s)
  • User Avatar
    0
    alper created
    Support Team

    is there any console errors? show the client logs

  • User Avatar
    0
    ismcagdas created
    Support Team

    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> ?

  • User Avatar
    0
    mohamedaarif created

    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>

  • User Avatar
    0
    alper created
    Support Team

    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