This section describes how to configure the On-Premise SharePoint Server.
As of Microsoft SharePoint Portal Server 2016, the WebFOCUS App Parts are packaged as a SharePoint Add-in (WfApp.app), which is located in the following directory of your WebFOCUS installation:
drive:\ibi\WebFOCUS82\utilities\ops\sharepoint-addin
where:
In terms of security, ensure that the same security paradigm is used on both environments (WebFOCUS and SharePoint).
Add-PSSnapin Microsoft.Sharepoint.Powershell
Add-SPShellAdmin -UserName domain\username
Set-SPAppDomain "wfapp.ibi.com"
$account = New-SPManagedAccount
a. $account = Get-SPManagedAccount "domain\user" b. $appPoolSubSvc = New-SPServiceApplicationPool -Name SettingsServiceAppPool –Account $account c. $appPoolAppSvc = New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account d. $appSubSvc = New-SPSubscriptionSettingsServiceApplication -ApplicationPool $appPoolSubSvc -Name SettingsServiceApp -DatabaseName SettingsServiceDB (Note: The user ID must be sysadmin or dbcreator for this command.) e. $proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc f. $appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp -DatabaseName AppServiceDB g. $proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc
Set-SPAppSiteSubscriptionName -Name "add-in" -Confirm:$false
The full app (Add-in) name will appear as shown in the following example:
http://add-in-61844c031b3e0d.wfapp.ibi.com/sites/WFapp/
Note: Providing the support for wfapp.ibi.com (or other) domain is the responsibility of the SharePoint administrator.
The SharePoint Server is now configured to support apps (Add-ins).
WebFOCUS | |
Feedback |