Setting up the AppManager Website Files On-Premise - Akumina Community

Setting up the AppManager Website Files On-Premise

You are here:

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 changes

First in IIS, the Authentication settings for the AppManager website must be set like this:

AppManager web.config file changes

  1. Edit the web.config file and find the section highlighted in grey below

Add the following lines AFTER the lines highlighted in grey:

<authorization>
<deny users="?" />
</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>

Enabling “My Apps” Functionality 

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”

Views: 465
//]]>