If you have deployed your AB Suite system with an alternate name, then you must make some adjustments in Web.config to cater to this.
By default, the MVC Client infrastructure assumes that the deployed component name for the AB Suite application is the same as the MVC system name that is derived from the segment name. However, if you have deployed your application with an alternate name, then the component name is different from the MVC System name. To cater for this, you can specify the alternate name for the system in Web.config by using the following entry in the <appSettings> section:
<add key="AltNameFor_<Segment Name>" value="<Alternate Name" />
For example,
<add key="AltNameFor_Sample" value="ALTSample" />
This ensures that the component name “ALTSample” is used to connect to the deployed system instead of the Segment name.