Click here to Skip to main content
15,868,016 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have two versions of WCF services running in one shared platform with basicHttpBinding. The IT guys need both the versions to listen to same http port 80. How can I share the port in for these services?

The binding is configured in app.config file

HTML
<!-- basicHttp binding-->
     <basicHttpBinding>
       <binding name="BasicHTTPBindingConfiguration">
         <security mode="TransportCredentialOnly">
           <transport clientCredentialType="Windows" />
         </security>
       </binding>
     </basicHttpBinding>


and I tried portSharingEnabled="true" but it did not help. Can anyone help me with this?
Posted
Comments
Arun Abraham Jose 26-Jul-12 2:15am    
Can anybody help me with this?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900