I try to execute a VIP exchange through the azure portal, and I get an error message:
Windows Azure cannot perform a VIP exchange between deployments with a different number of endpoints.
I looked closer and I see the difference in # endpoints (2 in production versus 3 in production).
Production:
Input Endpoints
OUR.API:168.62.21.50:80
OUR.API:168.62.21.50:3389
Choreographer:
Input Endpoints
OUR.API:168.62.22.55:80
OUR.API:168.62.22.55:3389
OUR.API:168.62.22.55:8172
Port 80 is the web, and 3389 is the remote desktop. So far, so good. Where is this additional port, 8172, where from? Nothing in the application listens for anything except port 80. In addition, applications in the intermediate and production areas are almost identical - so it should be the foundation. Any steps to narrow this down?
[]
, ServiceDefinition.csdef :
<Sites>
<Site name="Web">
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" />
</Bindings>
</Site>
</Sites>
<Endpoints>
<InputEndpoint name="Endpoint1" protocol="http" port="80" />
</Endpoints>