Using Oracle.ManagedDataAccess.Core 2.19.31 to manage the connection to an onsite Oracle database.
I'm able to run queries when i build my .net core application on the IDE, but when publishing it to my local IIS server running Kestral it gives the following error:
Exception: OraBufWriter:ReadResetResponse - Unexpected Packet received.
OracleInternal.ConnectionPool.PoolManager<PM, CP, PR>.CreateNewPR(int reqCount, bool bForPoolPopulation, ConnectionString csWithDiffOrNewPwd, OracleConnection connRefForCriteria, string instanceName, List<string> switchFailedInstNames)
OracleInternal.ConnectionPool.PoolManager<PM, CP, PR>.Get(ConnectionString csWithDiffOrNewPwd, bool bGetForApp, OracleConnection connRefForCriteria, string affinityInstanceName, bool bForceMatch)
OracleInternal.ConnectionPool.OraclePoolManager.Get(ConnectionString csWithNewPassword, bool bGetForApp, OracleConnection connRefForCriteria, string affinityInstanceName, bool bForceMatch)
OracleInternal.ConnectionPool.OracleConnectionDispenser<PM, CP, PR>.Get(ConnectionString cs, PM conPM, ConnectionString pmCS, SecureString securedPassword, SecureString securedProxyPassword, OracleConnection connRefForCriteria)
Oracle.ManagedDataAccess.Client.OracleConnection.Open()
The only relevant issue that I could find for reference is this one: OraBufWriter:ReadResetResponse - Unexpected Packet received
I've also tried turning on tracing, but nothing seems to be generating. These are the trace options I configured with OracleConfiguration before opening my OracleConnection:
OracleConfiguration.TraceOption = 1;
OracleConfiguration.TraceFileLocation = @"C:\logs";
OracleConfiguration.TraceLevel = 7;
Any help would be appreciated. Thanks