<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Workflow Manager Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/workflow-manager/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/workflow-manager/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Mon, 03 May 2021 10:50:10 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Error: The root of the certificate chain is not a trusted root authority &#8211; Register-SPWorkflowService &#8211; SharePoint 2013</title>
		<link>https://blog.binarybits.net/error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-register-spworkflowservice-sharepoint-2013/</link>
					<comments>https://blog.binarybits.net/error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-register-spworkflowservice-sharepoint-2013/#comments</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Sat, 15 Nov 2014 08:12:30 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Certificate]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[Workflow Manager]]></category>
		<category><![CDATA[Workflow Service]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=702</guid>

					<description><![CDATA[<p>When I was trying to register Workflow Service with SharePoint 2013 Server, I was getting error &#8220;The root of the certificate chain is not a trusted root authority&#8221;. The reason for this error is while registering the service we point to workflow site with https as shown below, this site has a certificate which the [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-register-spworkflowservice-sharepoint-2013/">Error: The root of the certificate chain is not a trusted root authority &#8211; Register-SPWorkflowService &#8211; SharePoint 2013</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When I was trying to register Workflow Service with SharePoint 2013 Server, I was getting error &#8220;The root of the certificate chain is not a trusted root authority&#8221;.</p>
<p>The reason for this error is while registering the service we point to workflow site with https as shown below, this site has a certificate which the SharePoint server doesn&#8217;t trust.</p>
<blockquote><p>Register-SPWorkflowService –SPSite &#8220;http://spapp/sites/dev/&#8221; –WorkflowHostUri &#8220;https://wfserver:12290/&#8221; –AllowOAuthHttp</p></blockquote>
<p>There are 2 things to check.</p>
<ol>
<li>Check if the <em>WorkflowHostUri</em> is having a Fully Qualified Domain (FQD) instead of machine name.</li>
<li>Check if the SharePoint server trusts the workflow site&#8217;s certificate</li>
</ol>
<p>1. Use FQD. Hence instead of using machine name for <em>WorkflowHostUri</em>, use full domain name, like <em>https://wfserver.domain.com:12290/</em><br />
2. Make sure the SharePoint Server trusts the certificate of Workflow site. For that do the following</p>
<ol>
<li>In the server browse the site <em>https://wfserver.domain.com:12290/</em> and check if you get Certificate trust error, if so proceed to next point</li>
<li>Start Management Power Shell as Administrator in the workflow server and run the following 2 commands</li>
<li><em>$rootCert = (Get-SPCertificateAuthority).RootCertificate</em></li>
<li><em>$rootCert.Export(&#8220;Cert&#8221;) | Set-Content C:\SharePointRootAuthority.cer -Encoding byte</em></li>
<li>Navigate to the SharePoint Server and open run or command prompt and type MMC and hit Enter. This will open Console1.</li>
<li>In Console1 navigate to file in the ribbon menu and select “Add/Remove snap-in”</li>
<li>Add “Certificates” to the right hand side and then click “OK”. You will prompted with the Certificates snap-in. I selected “Computer account”&gt;Next&gt;Local computer&gt;Finish&gt;OK</li>
<li>Import the certificate &#8220;C:\SharePointRootAuthority.cer&#8221; into &#8220;Trusted root certification authority&#8221; location. You can complete this by right clicking on “Trusted root certification authority” and selecting All Tasks &gt; Import</li>
</ol>
<p>Source:<br />
<a title="Microsoft MSDN Forum" href="https://social.msdn.microsoft.com/Forums/en-US/026e14fa-8e22-48db-88c3-f3a5837db1b4/the-root-of-the-certificate-chain-is-not-a-trusted-root-authory-register-spworkflowservice-with?forum=sharepointcustomization" target="_blank" rel="noopener">Microsoft MSDN Forum</a>, <a title="EPM Partners" href="http://www.epmpartners.com.au/blog/seven-steps-to-correct-the-error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-when-in-sharepoint-and-project-server-workflows-2013/" target="_blank" rel="noopener">EPM Partners</a></p>
<p>The post <a href="https://blog.binarybits.net/error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-register-spworkflowservice-sharepoint-2013/">Error: The root of the certificate chain is not a trusted root authority &#8211; Register-SPWorkflowService &#8211; SharePoint 2013</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/error-the-root-of-the-certificate-chain-is-not-a-trusted-root-authority-register-spworkflowservice-sharepoint-2013/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: blog.binarybits.net @ 2026-04-23 06:42:13 by W3 Total Cache
-->