Binding setup for WHS Vail hosted WCF service
-
2011. február 21. 14:54
Hi
I'd like to expose a WCF service with my remote addin on a WHS v2 (Vail) server.
When I setup my binding like this :
<customBinding> <binding name="RelativeBinding"> <binaryMessageEncoding /> <httpTransport /> </binding> </customBinding>
I get this error :
[InvalidURIScheme]
Arguments: https,httpWhich I assume is due to the "httpTransport" setting. If I change it to :
<customBinding> <binding name="RelativeBinding"> <binaryMessageEncoding /> <httpsTransport /> </binding> </customBinding>
I get this error :
[HttpWebRequest_WebException_RemoteServer]
Arguments: NotFoundWhich I know can be due to a lot of things, but I can hit the server on my development PC, so I don't think anything's wrong with the service itself. If I try basicHttpBinding, like this :
<basicHttpBinding> <binding name="RelativeBinding"> <security mode="Transport" /> </binding> </basicHttpBinding>
I get this error :
SFxChannelFactoryNoBindingFoundInConfig1]
Arguments: RelativeBindingHas anyone successfully setup a WCF service on the WHS Vail remote site? Care to offer any guidance?