Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

OraBufWriter:ReadResetResponse - Unexpected Packet received

6b87a72d-3a22-4774-a76e-a5b5dae0607eAug 21 2019 — edited Sep 26 2019

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

Comments

Processing

Post Details

Added on Aug 21 2019
6 comments
1,888 views