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,http
Which 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: NotFound
Which 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: RelativeBinding
Has anyone successfully setup a WCF service on the WHS Vail remote site? Care to offer any guidance?