I'm developing a project in asp.net with Oracle data base 12c. The connection to the database, locally, works. It does all the CRUD functions. I am also using azure services (project requirement) for both the bank and the website. When I publish with Visual Studio and the site is published, by azure too, it is not possible to establish a connection to the database. All oracle dlls are in the project. But only when you upload to the azure publishing service, you can not connect to the database.
Example of the connectionstring running localhost.
<connectionStrings><add name="Ativos" connectionString="DATA SOURCE=IP/DATA;PASSWORD=SENHA;USER ID=USUARIO;" providerName="System.Data.EntityClient" /></connectionStrings></configuration>
Has anyone ever had a similar problem?
Thank you all.