we are facing a connectivity issues in ASP.net application , Please find the below information .
DOT net Framework : 3.5
Application Type : Web
IIS Version : 8.5
OS Version : Win 2012 R2
Bit : 64 bit
Oracle client :12 C
Error :
Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation. Provider is unable to function until these components are installed.
OleDbException (0x80004005): Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation.
Connectivity Tried:
Public con As New System.Data.OleDb.OleDbConnection
oradb = "Provider=MSDAORA.1;Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=" & splitIP_Port(0) & ")(PORT=" & splitIP_Port(1) & ")))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=PDBORCLE)));Password=" & DBPassword & ";User ID=" & DBUser& ";"
con = New OleDbConnection(oradb)
con.open()
We have installed I tried to install the “ODAC121024Xcopy_x64.zip” from the below url ,Still I am facing the oracle client issue in the server .
http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
This was working in windows server 2008 with 32 bit version server
Please help me to resolve this issues