Waypoint Development FAQ

Posted on 5/18/2012 | Printable Version | Comments (0)

The following are answers to common issues with setting up Waypoint.


Server Error in '/' Application.
This version of RadControls for ASP.NET Ajax is licensed only for use by Waypoint v3 from Twin Harbor Web Solutions, Inc.

This can happen if the Global.asax file is missing from your website. Be sure this file file is in place.


MVC Routes result in 404 Errors

If you have ASP.NET Routing set up and routes are resulting in 404 errors, note that a few things are needed to support MVC functionality on production servers.

1. MVC must be installed. To install, run the AspNetMVC3ToolsUpdateSetup.exe setup file that should be in the Installs folder. 
2. The following code is needed in the web.config file of your website. The local development environment won't need this if Visual Studio is set up.  
<system.webServer>
    <modules runAllManagedModulesForAllRequests="true" /> </system.webServer>
3. In some older installations of Waypoint Commerce, the ConnectorAssemblyName and ConnectorTypeName properties are not set. To correct, open /WPData/Plugins.xml and ensure the following lines are set properly. **Note: When you change this you need to restart the site to make the change take effect. You can edit the web.config file and save it to force that to go through.

      <AutomatorAssemblyName>WPCommerce</AutomatorAssemblyName>
      <AutomatorTypeName>WPCommerce.Automator.WPCommerceAutomator</AutomatorTypeName>
      <ConnectorAssemblyName>WPCommerce</ConnectorAssemblyName>
      <ConnectorTypeName>WPCommerce.Core.WaypointPluginCommunicator</ConnectorTypeName>

This version of RadControls for ASP.NET Ajax is licensed only for use by Waypoint v3 from Twin Harbor Web Solutions, Inc.
This can happen if the global.asax file is missing or renamed in the website root. This file must be present in order to authenticate the use of the Telerik control set.


Comments

Be the first to comment below.

Post Comment