Skip to content

Instantly share code, notes, and snippets.

@iamggreen
Created January 15, 2013 02:31
Show Gist options
  • Save iamggreen/4535526 to your computer and use it in GitHub Desktop.
Save iamggreen/4535526 to your computer and use it in GitHub Desktop.
Publishing WCF-Rest Services On GoDaddy
public class CustomWebServiceHostFactory : WebServiceHostFactory
{
protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses)
{
return new CustomWebServiceHost(serviceType, baseAddresses);
}
}
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment