Posted on 02/12/2021 01:07:40
Hi Justin,
it looks like you are using wrong config file settings in the Dynamicweb Connector Service folder.
The connector type is wrong and it needs to be:
<add key="ConnectorType" value="Dynamicweb.Ecommerce.Integration.Connectors.Nav.NavConnector"/>
Try to check your settings so they looks like that:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="NavConnector" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<NavConnector>
<add key="UserName" value="yourUserName" />
<add key="Password" value="password" />
<add key="Domain" value="yourDomain" />
<add key="NavEndpoint" value="" />
<!-- Set IgnoreCertificateWarnings to true for https endpoints using self-signed or untrusted certificates. Useful for testing. Should be avoided in production. -->
<add key="IgnoreCertificateWarnings" value="True" />
<!-- Valid options for ClientCredentialType are: Default, Ntlm, Windows, Basic -->
<add key="ClientCredentialType" value="Ntlm"/>
</NavConnector>
<appSettings>
<add key="ServiceName" value="DynamicwebService" />
<add key="TestMode" value="False" />
<add key="TestOutputFolder" value="d:\test" />
<add key="Secret" value="someText" />
<add key="DebugInfo" value="True"/>
<add key="WebserviceURI" value="http://localhost:8095/DynamicwebService"/>
<add key="ConnectorType" value="Dynamicweb.Ecommerce.Integration.Connectors.Nav.NavConnector"/>
</appSettings>
</configuration>
Also you will need to restart the Dynamicweb service after making the changes in its config file.
BR, Dmitrij