I have some REST APIs deployed to an app service an Azure.
I have added a hybrid connection to the app service, and deployed the hybrid connection manager to the relay server which I verified can connect to the DB. Both show as "connected".
I am having trouble configuring it, as it is my first attempt at this. I have 2 questions that if someone could I would be very grateful.
- The Hybrid Connection Endpoint host. Is this the DB server name, or name and instance?
The DB I want to connect to is on Server\Instance, but it will not allow the "\" at all in the name. I've tried just server, just instance, and IP, they all still gave the error "The server was not found or was not accessible".
Is the problem with the REST services config? They are using the Entity Framework, and have the connection string:
add name="WEBEntities" connectionString="metadata=res:///Models.WEB.csdl|res:///Models.WEB.ssdl|res://*/Models.WEB.msl;provider=System.Data.SqlClient;provider connection string="data source=server\instance;initial catalog=WEB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient"
Do I need to change this to point the Hybrid Connection instead? If so, how?
Thanks for any help, it's very appreciated.