January 13, 2026
Adding items to Launch Pad Widget
Learn how to add items via My Apps Content App
The Following Instructions are for setting up the AppManager website files for On-Premises:
Login to your AppManager Web Site Hosting Server as Administrator
From the Windows Start menu, open IIS as an administrator.
IIS Authentication changesFirst in IIS, the Authentication settings for the AppManager website must be set like this:
Add the following lines AFTER the lines highlighted in grey:
<deny users="?" /> </authorization><authorization>
The result should look as follows:
2. Next, ADD the following lines to the web.config AFTER the </system.web> line
<location path="api/connector/configuration">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/connector/getwidgetjs">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/connector/pageobjects">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/connector/users">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/connector/facets">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/connector/appmanager/isloggedin">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/config/getSiteAddresses">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/background/formsubmissions">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/background/marksubmissionasprocessed">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/background/senddownloadlink">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/background/sendnotificationemails">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
<location path="api/background/marksubmissionstatus">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
If your organization is going to enable the “My Apps” functionality, there is an additional setting required:
Access the “DigispaceConfigurationIDS_AK” list and set the “LOADER_STEPS_ENABLE_FETCHSPGROUPS” key to “true”