Welcome to the navigation

Sit aliquip commodo incididunt ut velit fugiat magna ut minim exercitation sed voluptate sint mollit dolore occaecat dolor do deserunt in in dolore adipisicing est. Consequat, ullamco commodo exercitation aliquip nostrud lorem aute cupidatat non velit do dolore nisi dolore incididunt pariatur, quis anim dolor eiusmod sint id deserunt ut

Yeah, this will be replaced... But please enjoy the search!

Howto fix the '/GetSecondsBeforeUserLogout' error in Umbraco

In some Umbraco installations there are very frequent calls to the service

/umbraco/webservices/legacyajaxcalls.asmx/GetSecondsBeforeUserLogout

This may leave errors like this

Request format is unrecognized for URL unexpectedly ending in '/GetSecondsBeforeUserLogout'.

Here is how to fix it

Insert the webServices section in your web.config

<configuration>
    <system.web>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
                <add name="HttpPost"/>
            </protocols>
        </webServices>
    </system.web>
</configuration>

There, it works

You may get other errors from here on, but the webservice(s) should at least be accessible