i'm kinda new to wcf, facing some issues that i wasn't able to find on the web or misunderstood.
<service name="Columba.Services.DataConnector.DataConnectorManager" behaviorConfiguration="ServiceBehavior">
<endpoint address="net.tcp://localhost:8888/IDataConnectorManager/" binding="netTcpBinding" contract="Columba.Services.Common.Contracts.DataConnector.IDataConnectorManager">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="net.msmq://./private/columba/IQueueItems" binding="netMsmqBinding" bindingConfiguration="MSMQBinding" contract="Columba.Services.Common.Contracts.Delivery.IQueueItems" >
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</service>
what i'm trying to achieve is to change the behaviorConfiguration="ServiceBehavior" to a different behaviorConfiguration (found at serviceBehaviors tag) for only the second endpoint. is it even possible to achieve such functionality?!
The new behavior is configuring serviceCredentials service certificate, but its only needed for the second endpoint.
Thanks in advance guys.