Hi,
Is there a way to expose a service from a single endpoint like "https://mydomain.com/Myservice.svc" but to be able to have differents binding configuration.
I know that a endpoint must be unique on URL + Contract + Binding, but I wonder how can I have multiple bindings without coping all the .svc files for every bindings that I whant to support (since a URL in IIS is a folder or a virtual directory)
In example, I want to have Http with encryption, Http without encryption.. If later I whant no securityContext to be established, than I have to copy 4 times my svc files to support
One with : establishSecuriTyContext = true Encryption = true
One with : establishSecuriTyContext = true Encryption = false
One with : establishSecuriTyContext = true Encryption = true
One with : establishSecuriTyContext = false Encryption = false
and so on....
It don't makes sense to me.