Apr 19, 2014

Un authorized Response Code with the Call HTTP Webservice Activity with REST call while accessing the Parent web's list contents in SharePoint Designer 2013 Workflow

Hi,

If you are accessing the list from a Parent web(In my case this is root web too) using Call HTTP Web service activity in SharePoint designer 2013 workflow with default headers you will get the Response Code as "Un Authorized".

In this way i am getting the Parent web's list items in the HTTP Call Web Service Activity in my workflow ..

http://workflowcontext:currnetsiteurl/_api/rootweb/lists/getbytitle('listname')/items






       I logged the Response Code to Workflow History to check what the response it is giving.. But after running the workflow on a item,  I found that it is giving the Response Code as "Un Authorized" .


To fix this issue authorization issue, add another header key called Authorization with empty value for the request header along with the accept and content type keys.





After adding this , got the Response Code as OK and im able to retrieve the parent web list items perfectly in  my current web.

Hope this helps in saving some one's time...!

Thanks,
Purna

Apr 3, 2014

AppManagement Shared Service Proxy is not installed : Error in SharePoint 2013 designer workflow when publishing

Hello,

I configured the workflow manager and created a SharePoint designer workflow and tried to publish the workflow and got the following error.

“Errors were found when compiling the workflow. The workflow files were saved but cannot be run. Microsoft.SharePoint.SPException: App Management Shared Service Proxy is not installed”


Causes for this : 

  • App Management service is stopped (or)
  • No App Management service application is exist (or)
  • The App Management service appn is not associated with the default proxy group

Resolution :

AppManagement service is stopped :

Go to Central Administration àManage services on server under system settings section à Start the AppManagement Service if it is in stop mode

No App Management service application is exist (or not created yet) :

Go to Central Administration àManage service applicationsà Create AppManagement Service if already not exist

The App Management service appn is not associated with the default proxy group

Go to Central Administration àApplication Management Tabà  Configure Service Application associations under Service Applications section à Add App management service app proxy to default group if not already added.

Thanks