I might get this error in Visual Studio when creating the WCF config file, since the VS editor doesn't know about that extension. I need to know where to place transportClientEndpointBehavior, any help ? thanks.
<behaviors>
<endpointBehaviors>
<behavior name="sharedSecretClientCredentials">
<transportClientEndpointBehavior credentialType="SharedSecret">
<clientCredentials>
<sharedSecret issuerName="***********" issuerSecret="**********" />
</clientCredentials>
</transportClientEndpointBehavior>
<ServiceRegistrySettings discoveryMode="Public"/>
</behavior>
</endpointBehaviors>
...
</behaviors>
I also have a problem with basicHttpRelayBinding which i suppose to be included under bindings.
There is a sample in the Windows Azure Platform Training Kit that does this programmaticly. Here is the sample snippit...