I've made simple AJAX enabled WCF which runs on localhost, but when I tried it to over HTTP, WCF is not running. How do I configure web config for it to host over HTTP? My web config which created automatically adding WCF and running on localhost:
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="ASPXCommerceWCFServiceAspNetAjaxBehavior">
<enableWebScript />
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<services>
<service name="ASPXCommerceWCFService">
<endpoint address="" behaviorConfiguration="ASPXCommerceWCFServiceAspNetAjaxBehavior"
binding="webHttpBinding" contract="ASPXCommerceWCFService" />
</service>
</services>
</system.serviceModel>