Welcome to the navigation

Fugiat aliquip in aute officia magna consectetur sed dolore sit sint lorem minim ea eu id pariatur, dolor mollit ad ut enim in laboris in. Amet, laborum, sed aliquip esse consequat, irure cillum id adipisicing proident, aliqua, ex ea veniam, laboris deserunt commodo enim ut nulla sint et officia ut

Yeah, this will be replaced... But please enjoy the search!

EPiServer Commerce error message "Failed to check the license."

Usually I develop most of my EPiServer Commerce stuff in console applications and then deploy them in a proper .net manner. Occasionally this error shows up when invoking a method that has license check involved.

License section

Verify that everything in this section in the app (or web) config is correct

<mediachase.license>
    <licenseProvider defaultProvider="sqlProvider" allowUpload="True" licenseServerUri="http://licensing.mediachase.com/2.0/License.aspx">
        <providers>
            <add name="fileProvider" type="Mediachase.Licensing.FileStorageProvider, Mediachase.Licensing" storagePath="C:\EPiServer\eCommerceFramework\5.2\EPiServerCommerceManager\Licensing"/>
            <add name="sqlProvider" type="Mediachase.Licensing.SqlStorageProvider, Mediachase.Licensing" connectionStringName="EcfSqlConnection" tableName="" createTable="True"/>
        </providers>
    </licenseProvider>
</mediachase.license>

and this section

These settings may not even be present in your app/web.config. Please ensure that they are and setup according to your preferences.

<appSettings>
    <add key="BaseCatalog" value="Everything"/>
    <add key="BaseAddress" value="http://localhost:17000"/>
</appSettings>