I have a wcf service application that I host on IIS and works very well.
Now I need to transfer the services to windows azure, where I place them in roles on the Internet.
I'm not sure, but I heard that there are various bindings for windows azure
Example:
azure has various bindings equivalent to basicHttp, WebHttp.
May I know what exactly I need to do to achieve the same. here is my current service configuration
<service behaviorConfiguration="mybehavior" name="***"> <endpoint address="mobile" behaviorConfiguration="web" binding="webHttpBinding" contract="*" /> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> <host> <baseAddresses> <add baseAddress="http://127.0.0.1:81/Mobile.svc" /> </baseAddresses> </host> </service>
what change needs this Thanks
source share