I was working on hosted app when I encountered below error:
The Subscription Settings service and corresponding application and proxy needs to be running in order to make changes to these settings.
Solution:
Copy and paste below script in SharePoint Management Shell.
$acc = Get-SPManagedAccount <AccountName>
$appPool = New-SPServiceApplicationPool -Name "<Application pool name>" -Account $acc
$app = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPool –Name "Subscription Settings Service Application" –DatabaseName <Database name>
$proxy = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $app
Where
Replace your <AccountName> with managed account
Replace your <Application pool name> with Subscription Settings Service Apppool
Replace your <Database name> with SPMT_Settings_Service_DB
Reference:
https://technet.microsoft.com/en-us/library/fp161236(v=office.15).aspx
Subscribe to:
Post Comments (Atom)
Fixing the “Refinement Filters Limit (100)” Issue in SharePoint Search Using JavaScript
Issue: Receently we were working PNP search webparts. When working with SharePoint Search refiners, you may eventually run into a frustratin...
-
Code Review :- General 1. Remove the commented code 2. Variable name should not be contain "_". 3. Query should be in separat...
-
Issue : Recently, we had a requirement to sync the calendar between shared mailbox outlook and SharePoint Calendar list. We have created 2 f...
-
Issue: Recently, we were developing a SPFx webpart in which we needed to open a dialog. For that we decide to use Office Fabric UI Dialog co...
No comments:
Post a Comment