ORA-01017 with Managed Provider 4.112.3.60.  Bug with ODP on Win 2008 R2?

I'm experiencing some trouble with the manage provider and I can't seem to figure out what's causing the issue.
At first, the Managed Provider seemed to be a drop in replacement for the Unmanaged Provider.  However, when we moved some code to our testing environments, the application started failing with a 'Logon Denied' error.
Our dev machines are 64 bit Win 7 and our test machines are Win 2008 R2.  The DEV machines do not have any trouble connecting to the database with the identical connection string used in the test environment.  I can connect to the database using sql plus with the connection string used in the application.
I'm at a loss on how to trouble shoot this.
Thanks.
Jon

App does not run in share drive, runs on operating system D:drive (However, I do access the Win 2008 via Citrix Desktop)
Removed the canned tags created by Visual Studio from app.config which removed the app.config error noted earlier,
recompiled, and ran app from test directory with this app.config and then app failed with this trace file
As reminder:
No installation of Managed Driver, so machine config should be clear of managed driver settings.
Used XCOPY version of .60 beta, keeping the tnsnames.ora and sqlnet.ora copied from server Oracle Client > network > admin folder
along with the three managed driver files in the test application folder.
Not using transactional services.
App is just simple test of managed driver calling list of tables with SELECT table_name FROM all_tab_cols and placing in List
App environment is WPF .NET Classic 4.0
OS is 64-bit Windows 2008R2
Is the SQLNET NAMES.DEFAULT_DOMAIN : (WORLD) supported?
From trace file, looks like YES as I submit the SID MYDB to the connection string builder and Managed Driver adds (as it should) the domain name .WORLD
Also as reminder, this app works just fine with UNMANAGED driver compile in same environment.
+++++++++++++++++++++++++++++
  <?xml version="1.0"?>
  <configuration>
   <configSections>
       <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler,Oracle.ManagedDataAccess" />
     </configSections>
<system.data>
   <DbProviderFactories>
     <remove invariant="Oracle.ManagedDataAccess.Client" />
     <add name="ODP.NET,Managed Driver"  invariant="Oracle.ManagedDataAccess.Client"   description="Oracle Data Provider for .NET, Managed Driver"   type="Oracle.ManagedDataAccess.Client.OracleClientFactory,
Oracle.ManagedDataAccess, Version=4.112.3.60, Culture=neutral, PublicKeyToken=89b483f429c47342" />
   </DbProviderFactories>
</system.data>
<oracle.manageddataaccess.client>
   <version number="*">
     <settings>
       <setting name="TNS_ADMIN" value="D:\ME\testapp"/>
       <setting name="TraceFileLocation" value=" D:\ME\testapp"/>
       <setting name="TraceLevel" value="7" />
       <setting name="TraceOption" value="1"/>
   </settings>
   </version>
  <version number="4.112.3.60">
    <settings></settings>
   </version>
</oracle.manageddataaccess.client>
</configuration>
+++++++++++++++++++++++++++++++++++++++++++++
2013-07-22 11:08:32.006660 TID:1   (CFG) (ENV)      Machine Name : Win2008Svr
2013-07-22 11:08:32.022285 TID:1   (CFG) (ENV)      User Name : ME
2013-07-22 11:08:32.022285 TID:1   (CFG) (ENV)      OS Version : Microsoft Windows NT 6.1.7601 Service Pack 1
2013-07-22 11:08:32.022285 TID:1   (CFG) (ENV)      64-bit OS : True
2013-07-22 11:08:32.022285 TID:1   (CFG) (ENV)      64-bit Process : True
2013-07-22 11:08:32.022285 TID:1   (CFG) (ENV)      .NET Runtime Version : 4.0.30319.1008
2013-07-22 11:08:32.022285 TID:1   (CFG) (VER)      Oracle Data Provider for .NET, Managed Driver Version : 4.112.3.60
2013-07-22 11:08:32.022285 TID:1   (CFG) (.NET)     TraceOption : 1
2013-07-22 11:08:32.022285 TID:1   (CFG) (.NET)     TraceFileLocation : D:\Me\testapp
2013-07-22 11:08:32.022285 TID:1   (CFG) (.NET)     TNS_ADMIN : D:\Me\testapp
2013-07-22 11:08:32.022285 TID:1   (CFG) (.NET)     TraceLevel : 7
2013-07-22 11:08:32.037911 TID:1   (CFG) (SQLNET)   SQLNET.AUTHENTICATION_SERVICES : (NTS)
2013-07-22 11:08:32.037911 TID:1   (CFG) (SQLNET)   NAMES.DEFAULT_DOMAIN : (WORLD)
2013-07-22 11:08:32.037911 TID:1   (CFG) (SQLNET)   mydb.world : (DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(Host = 10.10.10.30)(Port = 1521))(CONNECT_DATA = (SERVICE_NAME = MYDB)))
2013-07-22 11:08:32.037911 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.ctor()
2013-07-22 11:08:32.053536 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.ctor()
2013-07-22 11:08:32.053536 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.ContainsKey()
2013-07-22 11:08:32.069161 TID:1   (PUB) (EXT) OracleConnectionStringBuilder.TryGetValue()
2013-07-22 11:08:32.069161 TID:1   (PUB) (ENT) OracleConnection.ctor()
2013-07-22 11:08:32.084786 TID:1   (PRI) (CP) (ENT) ConnectionString.GetCS()
2013-07-22 11:08:32.084786 TID:1   (PRI) (CP) (ENT) ConnectionString.ctor()
2013-07-22 11:08:32.100412 TID:1   (PRI) (CP) (ENT) ConnectionString.Parse()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (ENT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (ENT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (ENT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (ENT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.SetProperty()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.Parse()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.ctor()
2013-07-22 11:08:32.116037 TID:1   (PRI) (CP) (EXT) ConnectionString.GetCS()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleConnection.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (ENT) OracleCommand.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleCommand.ctor()
2013-07-22 11:08:32.116037 TID:1   (PRI) (ENT) OracleParameterCollection.ctor()
2013-07-22 11:08:32.116037 TID:1   (PRI) (EXT) OracleParameterCollection.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (ENT) OracleParameterCollection.Clear()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleParameterCollection.Clear()
2013-07-22 11:08:32.116037 TID:1   (PUB) (ENT) OracleParameterCollection.Add()
2013-07-22 11:08:32.116037 TID:1   (PRI) (SVC) (ENT) OracleParameter.ctor()
2013-07-22 11:08:32.116037 TID:1   (PRI) (SVC) (EXT) OracleParameter.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (ENT) OracleParameter.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleParameter.ctor()
2013-07-22 11:08:32.116037 TID:1   (PUB) (ENT) OracleParameterCollection.Add()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleParameterCollection.Add()
2013-07-22 11:08:32.116037 TID:1   (PUB) (EXT) OracleParameterCollection.Add()
2013-07-22 11:08:32.131662 TID:1   (PUB) (ENT) OracleConnection.Open() (conid=17792110) (state=Closed) (sessid=0) (implid=0) (oper=open)
2013-07-22 11:08:32.131662 TID:1   (PRI) (CP) (ENT) OracleConnectionDispenser`3..cctor()
2013-07-22 11:08:32.131662 TID:1   (PRI) (CP) (EXT) OracleConnectionDispenser`3..cctor()
2013-07-22 11:08:32.131662 TID:1   (PRI) (CP) (ENT) OracleConnectionDispenser`3.Get()
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (ENT) PoolManager`3.ctor()
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (EXT) PoolManager`3.ctor()
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (ENT) PoolManager`3.Initialize() (pmid=18437496) (txnctxid=18437496)  (constr=PERSIST SECURITY INFO=True;USER ID=ME;DATA SOURCE=MYDB.WORLD;)
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (ENT) ConnectionString.Secure()
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (EXT) ConnectionString.Secure()
2013-07-22 11:08:32.147288 TID:1   (PRI) (CP) (EXT) PoolManager`3.Initialize() (pmid=18437496)
2013-07-22 11:08:32.147288 TID:1   (PRI) (BUF) (OBP.CTOR) (poolid:31719739) (OracleConnectionDispenser`3.GetPM)
2013-07-22 11:08:32.162913 TID:1   (PRI) (TUN) Tuning thread started.
2013-07-22 11:08:32.162913 TID:1   (PRI) (TUN) OracleTuningAgent::Register(): Registered pool PERSIST SECURITY INFO=True;USER ID=ME;DATA SOURCE=MYDB.WORLD;PASSWORD=
2013-07-22 11:08:32.162913 TID:1   (PRI) (CP) (ENT) OraclePoolManager.Get()
2013-07-22 11:08:32.178538 TID:1   (PRI) (CP) (ENT) PoolManager`3.Get()
2013-07-22 11:08:32.178538 TID:1   (PRI) (CP) (ENT) PoolManager`3.CreateNewPR()
2013-07-22 11:08:32.194164 TID:1   (PRI) (SVC) (ENT) OracleConnectionImpl.Connect() (oper=connect) (pmid=18437496) (sessid=-1) (implId=19162058) (intxn=False) (app=False) (dtc=False) (put=False)
2013-07-22 11:08:32.194164 TID:1   (PRI) (BUF) (COBP.CTOR) (poolid:1) (parentpoolid:31719739) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.241039 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:1)
2013-07-22 11:08:32.303541 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:2)
2013-07-22 11:08:32.303541 TID:1   (NET)      NS Handshake completed successfully
2013-07-22 11:08:32.303541 TID:1   (NET)      Negotiated SDU size = 8192
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:3)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:3) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:3) (count:1) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:4)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:4) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:4) (count:2) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:5)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:5) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:5) (count:3) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:6)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:6) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:6) (count:4) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:7)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:7) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:7) (count:5) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:8)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:8) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:8) (count:6) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:9)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:9) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:9) (count:7) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (ALLOCATION) (bufid:10)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (OBP.GET) (poolid:31719739) (key:8192) (bufid:10) (count:0) (ConOraBufPool.Init)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.PUT) (poolid:1) (key:8192) (bufid:10) (count:8) (OracleConnectionImpl.Connect)
2013-07-22 11:08:32.319166 TID:1   (PRI) (BUF) (COBP.GET) (poolid:1) (key:8192) (bufid:10) (count:7) (OraBufWriter.Initialize)
2013-07-22 11:08:32.319166 TID:1   (PRI) (SVC) (ENT) OracleConnectionImpl.DoProtocolNegotiation()
2013-07-22 11:08:32.334791 TID:1   (PRI) (TTC) (ENT) TTCProtocolNegotiation.WriteMessage()
2013-07-22 11:08:32.334791 TID:1   (PRI) (TTC) (ENT) TTCMessage.WriteTTCCode()
2013-07-22 11:08:32.334791 TID:1   (PRI) (TTC) (EXT) TTCMessage.WriteTTCCode()
2013-07-22 11:08:32.334791 TID:1   (PRI) (TTC) (EXT) TTCProtocolNegotiation.WriteMessage()
2013-07-22 11:08:32.334791 TID:1   (PRI) (TTC) (ENT) TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.334791 TID:1   (PRI) (BUF) (COBP.GET) (poolid:1) (key:8192) (bufid:9) (count:6) (OraBufReader.GetDataFromNetwork)
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.366042 TID:1   (PRI) (TTC) (ERR) TTCProtocolNegotiation.ReadResponse() OracleInternal.Network.NetworkException (0x80004005):
   ORA-03135: Connection lost contact ---> System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OracleException.ctor()
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OracleError.ctor()
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) OracleError.ctor()
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.366042 TID:1   (PRI) (TTC) (EXT) TTCProtocolNegotiation.ReadResponse()
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OracleConnectionImpl.DoProtocolNegotiation()
2013-07-22 11:08:32.366042 TID:1   (PRI) (SVC) (ERR) OracleConnectionImpl.DoProtocolNegotiation() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135: Connection lost contact --->
System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) OracleConnectionImpl.DoProtocolNegotiation()
2013-07-22 11:08:32.366042 TID:1   (PRI) (SVC) (EXT) OracleConnectionImpl.DoProtocolNegotiation()
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OracleConnectionImpl.Connect()
2013-07-22 11:08:32.366042 TID:1   (PRI) (SVC) (ERR) OracleConnectionImpl.Connect() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135: Connection lost contact --->
System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) OracleConnectionImpl.Connect()
2013-07-22 11:08:32.366042 TID:1   (PRI) (SVC) (EXT) OracleConnectionImpl.Connect() (oper=connect) (pmid=18437496) (sessid=-1) (implId=19162058) (intxn=False) (app=False) (dtc=False) (put=False) (pooling=True)
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) PoolManager`3.CreateNewPR()
2013-07-22 11:08:32.366042 TID:1   (PUB) (CP) (ERR) PoolManager`3.CreateNewPR() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135: Connection lost contact --->
System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
   at OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd)
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) PoolManager`3.CreateNewPR()
2013-07-22 11:08:32.366042 TID:1   (PRI) (CP) (EXT) PoolManager`3.CreateNewPR() (pmid=18437496) (total=0)
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) PoolManager`3.Get()
2013-07-22 11:08:32.366042 TID:1   (PUB) (CP) (ERR) PoolManager`3.Get() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135: Connection lost contact --->
System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
   at OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.PoolManager`3.Get(ConnectionString csWithDiffOrNewPwd)
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) PoolManager`3.Get()
2013-07-22 11:08:32.366042 TID:1   (PRI) (CP) (EXT) PoolManager`3.Get()
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OraclePoolManager.Get()
2013-07-22 11:08:32.366042 TID:1   (PUB) (CP) (ERR) OraclePoolManager.Get() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135: Connection lost contact --->
System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
   at OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.PoolManager`3.Get(ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.OraclePoolManager.Get(ConnectionString csWithNewPassword)
2013-07-22 11:08:32.366042 TID:1   (PRI) (EXT) OraclePoolManager.Get()
2013-07-22 11:08:32.366042 TID:1   (PRI) (CP) (EXT) OraclePoolManager.Get() (pmid=18437496)
2013-07-22 11:08:32.366042 TID:1   (PRI) (ENT) OracleConnectionDispenser`3.Get()
2013-07-22 11:08:32.381667 TID:1   (PUB) (CP) (ERR) OracleConnectionDispenser`3.Get() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005): ORA-03135:
Connection lost contact ---> System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
   at OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.PoolManager`3.Get(ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.OraclePoolManager.Get(ConnectionString csWithNewPassword)
   at OracleInternal.ConnectionPool.OracleConnectionDispenser`3.Get(ConnectionString cs, PM conPM, ConnectionString pmCS, SecureString securedPassword, SecureString securedProxyPassword)
2013-07-22 11:08:32.381667 TID:1   (PRI) (EXT) OracleConnectionDispenser`3.Get()
2013-07-22 11:08:32.381667 TID:1   (PRI) (CP) (EXT) OracleConnectionDispenser`3.Get()
2013-07-22 11:08:32.381667 TID:1   (PRI) (ENT) OracleConnection.Open()
2013-07-22 11:08:32.381667 TID:1   (PUB) (ERR) OracleConnection.Open() Oracle.ManagedDataAccess.Client.OracleException (0x80004005):
ORA-03135: Connection lost contact ---> OracleInternal.Network.NetworkException (0x80004005):
ORA-03135: Connection lost contact ---> System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   at OracleInternal.TTC.OraBufReader.GetDataFromNetwork()
   at OracleInternal.TTC.OraBufReader.Read(Boolean bIgnoreData)
   at OracleInternal.TTC.MarshallingEngine.UnmarshalUB1(Boolean bIgnoreData)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCProtocolNegotiation.ReadResponse()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.DoProtocolNegotiation()
   at OracleInternal.ServiceObjects.OracleConnectionImpl.Connect(ConnectionString cs, Boolean bOpenEndUserSession)
   at OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.PoolManager`3.Get(ConnectionString csWithDiffOrNewPwd)
   at OracleInternal.ConnectionPool.OraclePoolManager.Get(ConnectionString csWithNewPassword)
   at OracleInternal.ConnectionPool.OracleConnectionDispenser`3.Get(ConnectionString cs, PM conPM, ConnectionString pmCS, SecureString securedPassword, SecureString securedProxyPassword)
   at Oracle.ManagedDataAccess.Client.OracleConnection.Open()
2013-07-22 11:08:32.381667 TID:1   (PRI) (EXT) OracleConnection.Open()
2013-07-22 11:08:32.381667 TID:1   (PUB) (EXT) OracleConnection.Open() (conid=17792110) (state=Closed) (sessid=0) (implid=0) (oper=open)
2013-07-22 11:08:32.381667 TID:1   (PUB) (ENT) OracleCommand.Dispose()
2013-07-22 11:08:32.381667 TID:1   (PUB) (EXT) OracleCommand.Dispose()
2013-07-22 11:08:32.381667 TID:1   (PUB) (ENT) OracleConnection.Dispose()
2013-07-22 11:08:32.381667 TID:1   (PUB) (EXT) OracleConnection.Dispose()

Similar Messages

  • Satellite P70-A-112 - Windows 8 - Bug with Application Manager & Display

    Hello,
    I bought this Toshiba laptop in August with windows 8 (64 bit) inbuilt.
    It all began yesterday, when Windows crashed due to a "BAD_POOL_HEADER" error. Ever since, I cannot access the "start menu" of Windows 8, neither can I run any applications linked to this tablet-like menu. For instance, I can't even open a picture anymore ou neither can I open a PDF file with Acrobat Reader.
    My problem is thus twhreefold:
    Firstly, it seems that the Application Manager does not seem to run when I start the computer. And this application manager seems to be necessary to run the start menue.
    Secondly, I cant access the parameters of my computer when putting my cursor on the top-right corner, making it impossible to close my computer the normal way.
    Thirdly, when I manage to restart my computer, I arrive most of the times to a black background, and just a non-working picture picture of the quick access bar at the bottom of the screen. Nothing works.
    Oddly enough, the only way I've found to "solve" this problem is by pluging-in a second screen. However, it is merely a temporary solution: whenever I de-plug the second screen, the nightmare begins again.
    Could you please help me identify the exact problem and help me solve it?
    Thanks a lot.

    > According to other forums on the net, it might be a hard-drive problem.
    Yes, probably its memory module problem. I think the memory modules should be tested.
    > What to do?
    Your notebook is new. Right?
    This means that warranty is valid and hardware problems should be fixed under warranty conditions.
    In my opinion you should as your authorized service provider for assistance.

  • ORA-01017: invalid username/password when using TNS Alias

    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AM

    SSNair wrote:
    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AMHere's your problem:
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DBBecaue of the dollar-sign, The shell is trying to expand the environment variable $bvs#ir@DB
    Of course you have no environment variable by that name so what gets passed to sqlplus is not "IRES_USER/U9$bvs#ir@DB", but rather "IRES_USER/U9"
    In your first test, you didn't pass the password on the command line, so the shell didn't get a chance to intercept it.
    You can have a similar issue if you have a '@' in your password
    oracle> sqlplus scott/P@ssword@orclTns will catch that first "@" as the delimiter to the tns string, and come up with something that cant' be resolved.
    Edited by: EdStevensTN on Jun 17, 2011 8:59 AM

  • ORA-01017 Error when installing Grid Control 10.2.0.3

    Hello all,
    I have the following problem: I am installing the Grid Control on a Linux machine and when I get to the "Specify Repository Database Configuration" step and enter the SYS password I get an ORA-01017 error. I still can connect under SQLPLUS with the same pwd as SYSDBA.
    Any clue how to get ride of this will be very appreciated.
    Best regards.
    Askia

    Yes this is what I do, but still receive "Insufficient privileges to write to that location". So I am forced to use normal file system to be able to continue.
    After that I run into the current problem saying OMS configuration failed (see details....) and I try:
    ./opmnctl startall
    opmnctl: starting opmn and all managed processes...
    ================================================================================
    opmn id=uxlpgrid01:6200
    3 of 5 processes started.
    ias-instance id=EnterpriseManager0.uxlpgrid01
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OC4J/home/default_island
    Error
    --> Process (pid=0)
    no port available from the port range
    failed to start a managed process after the maximum retry limit
    no port available from the port range
    no port available from the port range
    Log:
    none
    ias-component/process-type/process-set:
    OC4J/OC4J_EMPROV/default_island
    Error
    --> Process (pid=0)
    no port available from the port range
    failed to start a managed process after the maximum retry limit
    no port available from the port range
    no port available from the port range
    Log:
    none
    Then:
    ./opmnctl status
    Processes in Instance: EnterpriseManager0.uxlpgrid01
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | 23861 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 27021 | Alive
    OC4J | home | N/A | Down
    OC4J | OC4J_EM | 10403 | Alive
    OC4J | OC4J_EMPROV | N/A | Down
    WebCache | WebCache | 23872 | Alive
    WebCache | WebCacheAdmin | 23863 | Alive
    Overwhelming :-(
    Thanks for helping
    Askia.

  • Web part with managed navigation terms

    So I decided to use managed navigation feature for a site I'm working on, however as a requirement, there's a need to have three different sections of navigation (top, side, bottom) and because of the limitation to use only one term set as managed navigation
    on each site collection, I decided to create two web parts to fulfill the requirement (side and bottom). It's important to mention that the same manageability provided to the top navigation bar with termset is required for this other two sections.
    When I edit the page to test the web parts, the side web part works just fine, but when I add the bottom web part, the top navigation bar and the ribbon stops wroking, meaning, all buttons on the ribbon are disabled and the second level of the navigation
    top bar isn't showed. The only difference between this two webparts is that in the side web part I use an ASP control tree view and populate it, meanwhile, in the bottom web part I create those tree views dinamically.
    Here's the code for the bottom web part:
                TaxonomySession session = new TaxonomySession(SPContext.Current.Site);
                TermStore store = session.TermStores[0];
                Group group = almacen.Groups["Nav"];
                TermSet termSet= group.TermSets["Bottom"];
                NavigationTermSet navTermSet = NavigationTermSet.GetAsResolvedByWeb(termSet, SPContext.Current.Web, StandardNavigationProviderNames.GlobalNavigationTaxonomyProvider);
                foreach (NavigationTerm navParentTerm in navTermSet.Terms)
                    TreeView tree= new TreeView();
                    tree.ID = "tvData" + navParentTerm.Title.Value;
                    tree.ShowExpandCollapse = false;
                    TreeNode parentNode = new TreeNode(navParentTerm.Title.Value);
                    parentNode .NavigateUrl = navParentTerm.TargetUrl.Value;
                    parentNode .ToolTip = navParentTerm.HoverText;
                    tree.Nodes.Add(parentNode );
                    foreach (NavigationTerm navTerm in navParentTerm.Terms)
                        TreeNode childNode = new TreeNode(navTerm.Title.Value);
                        childNode.NavigateUrl = navTerm.TargetUrl.Value;
                        childNode.ToolTip = navTerm.HoverText;
                        tree.Nodes[0].ChildNodes.Add(childNode);
                    tree.CssClass = "BottomMenu";
                    pnlLinks.Controls.Add(tree);
    Thanks in advance.

    Thanks for sharing the answer here, it will be helpful for others with similar issue.
    Qiao Wei
    TechNet Community Support

  • Oracle ESSO, Logon Manager Console couldn't connect to repository ORA-01017

    I installed Logon Manager Console on my Windows XP SP3 and try to connect to repository (Oracle DB 11g) with instanse name:
    Provider=OraOLEDB.Oracle;Data Source=MYDB;User Id=user;Password=password;
    Repository type: Oracle Database
    And get following error: ORA-01017: invalid username/password; logon denied
    But i can connect to database with sql developer. Same DB, user and password
    Please help, what i'm doing wrong?
    Edited by: LITBe on Sep 2, 2010 4:25 AM

    Update:
    If I attempt to connect with instanse name:
    Provider=OraOLEDB.Oracle;Data Source=myOESSO;User ID=system;Password=oracle;Integrated Security=no;
    Repository type: Oracle Database
    I get another error: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
    If
    instanse name: Provider=OraOLEDB.Oracle;Data Source=myOESSO;User ID=system;Password=oracle;
    Repository type: Generic Database
    I get another error: ORA-00942: table or view does not exist
    ORA-00942: table or view does not exist
    Maybe this help someone to understand what happening because i don't understand...

  • Discoverer Portlet fails with ora-01017

    This is about OAS 10gR2
    Middle tier version: 10.1.2.0.2
    Discoverer version: 10.1.2.48.18
    I've manually changed password for Discoverer EUL Owner schema (using "alter user blablabla identified by blablabla" statement, in sqlplus) and now I can't register discoverer portlet provider.
    It fails with the following message:
    "Error!
    BaseException is ... ORA-01017: invalid username/password; logon denied
    Recognizing component versions...
    ptlshare.jar version: 10.1.2.0.2
    pdkjava.jar version: 10.1.2.0.0"
    I make no idea what was the password for discover5 schema before and that was the reason i changed it.
    Already have redeployed discoverer.ear file in OAS administration, but it didn't change a thing.
    I've tried the Discoverer Forum but no one there answered my question.
    Any ideas of what could bring this kind of issue?
    TIA
    Marcos

    Solved!
    The problem was that when I changed user password in database, i did not synchronized Database user with OID attributes.
    Step by step solution:
    Reset Password for DB user in sqlplus with
    "Alter user XXXX identified by YYYYYY;"
    Enter OID (Oracle Directory Management) as the "superuser" (ORCLADMIN);
    Navigate to
    -> Entry Management
    -> cn=OracleContext
    -> cn=Product
    -> cn=IAS
    -> cn=IAS InfraStructure Databases
    -> cn=orclReferenceName=appsdb.ecovias.com.br
    -> OrclResourceName=DISCOVERER5
    Alter orclPasswordattribute for the user, using the same password you have resetted in Sqlplus.
    Bounce OAS middle tier instance (ompnctl startall/stopall or using Application Server Control).
    Touché, it's done!
    Alternativelly, you can keep geniuses away from altering passwords...
    Thanx y'all...
    Marcos

  • Oem 12.1.0.3 installer fails with ora-01017

    Greetings,
    I am attempting to upgrade my OEM 12.1.0.1 installation to 12.1.0.3. I am following the instructions in the Oracle Enterprise Manager Cloud Control Upgrade Guide and Oracle Support Note 1568143.1. I have verified that all prerequisites are met and have installed patch 11061801 to the repository. The repository and OMS are on different machines. The 12.1.0.1 installation is able to connect to the repository, it has been running successfully for some time now. On the OMS server I stopped the OMS and the Agent and I invoke the 12.1.0.3 installer. I follow the steps and when it gets to the connection page it fails with ORA-01017. The messages are shown -
    1. Verify if the SYS password you entered is valid.
    2. Verify if the database initialization parameter REMOTE_LOGIN_PASSWORDFILE is set to either Shared or Exclusive.
    3. Verify if a password file with the file name orapw<SID> exists in the <ORACLE_HOME>/dbs directory.
    All conditions are met:
    -bash-3.2$ echo $ORACLE_SID
    oemrepos
    SQL> connect sys as sysdba
    Enter password:
    Connected.
    SQL> connect sysman
    Enter password:
    Connected.
    SQL> show parameter remote_login_passwordfile
    NAME                                 TYPE        VALUE
    remote_login_passwordfile            string      EXCLUSIVE
    -bash-3.2$ ls -l $ORACLE_HOME/dbs/orapwoemrepos
    -rw-r----- 1 oracle dba 1536 Jan 30  2013 /usr/local/oracle/app/oracle/product/11.2.0/dbhome_1/dbs/orapwoemrepos
    I am able to connect remotely from another machine. sqlplus is not installed on the OMS server.
    I am completely stumped and in need of assistance. Searching the web only indicates that I need to insure that the above listed conditions should be met, they are. If anyone has any suggestions I would appreciate the help.
    Thank you.
    Bill Wagman

    On repository server , can you login as sys user ?
    Try to connect through listener and share the result.
    sqlplus sys/<password>@<connectstring> as sysdba
    Thanks
    Rajesh

  • How to solve this Data Configuration issue with error message ORA: 01017

    Bad public user name or password. ORA-01017: invalid username/password; logon denied
    How to solve this?

    I'm using JCreator jdk1.5.0_7.But i don't know how
    to use command prompt. When i execute my program, the
    command prompt showed
    Exception in thread "main"
    java.lang.NoClassDefFoundError: StringManipulation
    Press any key to continue...So you managed to compile your code since now you are running it. This error means that the class StringManipulation was not found. Usually an indicator that your classpath is incorrect.
    What did you do to generate this error? That is, how did you execute your program?
    [edit] if you did not compile your code then there is no class file StringManipulation.class and this error will appear.

  • Sqlldr failing with ORA-01017: invalid username/password; logon denied

    Hi,
    I am running the import of some files through an internal application (in C++) using Oracle 11.2.0.3: the load uses sqlldr and I am getting the below error
    SQL*Loader-128: unable to begin a session
    ORA-01017: invalid username/password; logon denied
    However, sqlldr used through the DOS command, connects without an issue with the same account.
    I have tried the same test using the same application on my local install which uses 11.2.0.2 and I am not having any issue...any idea what may be the cause of it?
    Thanks

    user13045898 wrote:
    Hi,
    I am running the import of some files through an internal application (in C++) using Oracle 11.2.0.3: the load uses sqlldr and I am getting the below error
    SQL*Loader-128: unable to begin a session
    ORA-01017: invalid username/password; logon denied
    However, sqlldr used through the DOS command, connects without an issue with the same account.
    I have tried the same test using the same application on my local install which uses 11.2.0.2 and I am not having any issue...any idea what may be the cause of it?
    ThanksOracle is too dumb to lie. Your app is obviously not passing the credentials you believe it is.

  • Getting ORA-01017: invalid username/password error only with specific tools

    Hi,
    I am a Junior DBA still getting familiar with Oracle. I am having trouble accessing one of my databases through both TOAD and SQLDetective tools. When I try to log in to my database using these tools, I get the error:
    ORA - 01017: invalid username/password; login denied
    Even though the password and username is correct.
    I can successfully login through other tools like SQLTools and through SQL Plus. I have searched this issue and I have seen people with the same problems but I couldnt find a solution. The weird thing is, I can use TOAD and SQLDetective to login to other databases without any issues. It seems to be this one specific database.
    My database is an 11g database on a linux box. I have 9i and 10g clients installed on my machine. The all my apps use the tnsnames from the 9i home on my machine.
    Any help on this would be greatly appreciated. Thanks.
    Rgs,
    Rob
    Edited by: rgilligan on 16-Apr-2010 02:11

    Hello, if it is 11g, look at the parameter sec_case_sensitive_logon. This parameter defaults to true, which makes the password case sensitive. Some tools/apps do a UPPER or LOWER on the password and so this may the reason for the error
    Henner

  • SQL Developer connect to RAC12c (Basic) failed with ORA-01017 invalid username/password; logon denied

    I'm using scan in hostname to connect as Basic that failed ORA-01017.  I'm using the same credential system to logon from sqlplus and is fine.
    Any ideas?

    Essentially all you have said is: help me, I have a problem.
    1. full version of sql developer being used
    2. full version of Java SDK being used
    3. full version of JDBC jar file being used
    4. full details on the connection information being used
    5. full version of the Oracle client being used
    6. confirm that both your sql*plus and sql developer connections were made from the SAME machine
    A Basic connection uses the thin driver while sql*plus is using OCI

  • 9.0.1.1.1 DBCA fails with ORA-01017

    I've just downloaded Oracle9i 9.0.1.1.1 from OTN and have attempted to install it on my Win XP Pro machine.
    Everything seems to progress fine until the DBCA starts up, at which time I eventually get an error: "ORA-01017: invalid username/password; login denied" and the DBCA fails.
    Has anybody seen this before; know of any causes or workarounds?

    On repository server , can you login as sys user ?
    Try to connect through listener and share the result.
    sqlplus sys/<password>@<connectstring> as sysdba
    Thanks
    Rajesh

  • ORA-01017: invalid username/password; logon denied(Please help)

    Hi
    I have read few thread of the above problem..but still i cant figure out where is the problem..
    i am installing oracle vm manager 3.0.1
    i m following this
    http://www.oracle-base.com/articles/vm/OVM3Installation.php
    i have added the following lines to /etc/pam.d/login
    session required /lib/security/pam_limits.so
    session required pam_limits.so
    permission for u01 is as fofollows:::
    drwxrwxr-x 3 oracle oinstall 4096 Sep 6 2011 u01
    and i have set the password for "oracle" user
    and i am keeping same password for every account
    but i am seeing bellow error
    Retrieving Oracle Database 11g XE ...
    Installing Oracle Database 11g XE ...
    Configuring Oracle Database 11g XE ...
    Step 2 of 9 : Java ...
    Installing Java ...
    Step 3 of 9 : Database Schema ...
    Creating database schema 'ovs' ...
    Failed to find Oracle VM schema in Oracle Database
    ORA-01017: invalid username/password; logon denied
    can any one please please help me with this problem
    i am realy stuck
    if i hvae to setup enviromental variable.. could you please tel me how ... if that is the reason for this problem..
    im confused about oracle path : ref: http://www.oracle-base.com/articles/11g/OracleDB11gR1InstallationOnEnterpriseLinux4and5.php
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.1.0/db_1; export ORACLE_HOME
    ORACLE_SID=DB11G; export ORACLE_SID
    ===================
    what will i put for ORACLE_HOME, because my path is like
    cd /u01/app/oracle/product/11.2.0/xe/
    I dont have db_1 ..
    Please some one give me some light..
    thanks
    Edited by: 881083 on 05-Sep-2011 16:15
    Edited by: Fosiul on 06-Sep-2011 15:08

    I was reading on gogole
    i have set
    alter system set SEC_CASE_SENSITIVE_LOGON=false scope=spfile;
    now i can connect from sqlplus
    sqlplus SYSTEM/password
    also
    sqlplus SYSTEM/password@localhost:1521/XE
    also :
    From GUI i can connect to oracle db from http by port 8080
    but its seems like oracle VM manager does not connect ...
    example
    Would you like to install Oracle Database 11g Express Edition (XE) or connect to an existing Oracle database?
    1: Install Oracle Database 11g XE
    2: Use an existing Oracle database
    Select Number (1-2): 2
    Enter the Oracle Database hostname [localhost]:
    Enter the Oracle Database System ID (SID) [XE]:
    Enter the Oracle Database SYSTEM password:
    Enter the Oracle Database listener port [1521]:
    Enter the Oracle VM Manager database schema [ovs]:
    Enter the Oracle VM Manager database schema password:
    Enter the Oracle VM Manager database schema password (confirm):
    Oracle Weblogic Server 11g
    ==========================
    Enter the Oracle WebLogic Server 11g user [weblogic]:
    Enter the Oracle WebLogic Server 11g user password:
    Enter the Oracle WebLogic Server 11g user password (confirm):
    Oracle VM Manager application
    =============================
    Enter the username for the Oracle VM Manager administration user [admin]:
    Enter the admin user password:
    Enter the admin user password (confirm):
    Verifying configuration ...
    The database could not be reached using the provided connection info.
    ORA-01017: invalid username/password; logon denied
    Configuration verification failed ...
    can any one please help me

  • Could not create pool connection. The DBMS driver exception was:java.sql.SQLException: ORA-01017: invalid username/password

    Could not create pool connection.The DBMS driver exception was:java.sql.SQLException:
    ORA-01017: invalid username/password
    Even though I could able to connect to Oracle database using correct userid,password
    and HostString using OracleClient, I couldnt able to do with connectionpool. Here
    is the error message..
    <Jan 21, 2003 2:27:50 AM PST> <Notice> <WebLogicServer> <Starting WebLogic Admin
    Server "examplesServer" for domain "examples">
    Starting Loading jDriver/Oracle .....
    ---------- LOGIN ERROR CODE: 1017
    ---------- LOGIN ERROR CODE: 1017
    <Jan 21, 2003 2:28:06 AM PST> <Error> <JDBC> <Cannot startup connection pool "or
    aclePool" weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied - (Obj
    ectel/********@ora8i)
    at weblogic.db.oci.OciConnection.getLDAException(OciConnection.java:164)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:112)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:193)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    at weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    at weblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    at weblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    at weblogic.management.configuration.ApplicationManagerMBean_CachingStub
    .start(ApplicationManagerMBean_CachingStub.java:480)
    at weblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:209)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    at weblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    at weblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    at weblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    at weblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    at weblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    at weblogic.management.configuration.ApplicationManagerMBean_CachingStub
    .start(ApplicationManagerMBean_CachingStub.java:480)
    at weblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    >
    <Jan 21, 2003 2:28:14 AM PST> <Notice> <Management> <Application Poller started
    for development server.>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <ListenThread listening
    on port 7001>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <SSLListenThread listeni
    ng on port 7002>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <Management> <Starting discovery of Manag
    ed Server... This feature is on by default, you may turn this off by passing -Dw
    eblogic.management.discover=false>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogic Admin
    Server "examplesServer" for domain "examples" running in Development Mode>

    URL=jdbc:weblogic:oracle:oracle8i(server)
    Driver Classname=weblogic.jdbc.oci.Driver
    AClname=weblogic.jdbc.connectionPool.oraclePool
    intialcapacity=1
    MaximumCapacity=10
    Capacity Increment=2
    Login Delay Seconds=1sec
    Refresh Period=15 Minutes
    Supports Local Transaction=No
    Allow Shrinking=No
    Shrink Period=15
    Prepared Statement Cache Size=10
    TargetServer=ExamplesServer
    Properties
    user=Objectel
    password=superman
    Test table=yes
    Test Reserved Connections=yes
    Test Released Connections=Yes
    I could able to connect to oracledataBase if I use
    user=scott
    password=tiger
    with any other database user Iam getting the following error
    Could not create pool connection. The DBMS driver exception was:java.sql.SQLException:
    ORA-01017: invalid username/password
    "Neo Gigs" <[email protected]> wrote:
    By end of the error you shown:
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogicAdmin
    Server "examplesServer" for domain "examples" running in DevelopmentMode>
    You are running the Examples application shipped with WLS, which I guest
    the
    correct DB to connect with is Cloudscape yet to Oracle, unless you make
    changes to the original ConnectionPool in the examples. Anyhow, please
    show
    us your configuration of the ConnectionPool used when this error pops.
    "Raj" <[email protected]> wrote in message
    news:[email protected]...
    Could not create pool connection.The DBMS driver exceptionwas:java.sql.SQLException:
    ORA-01017: invalid username/password
    Even though I could able to connect to Oracle database using correctuserid,password
    and HostString using OracleClient, I couldnt able to do withconnectionpool. Here
    is the error message..
    <Jan 21, 2003 2:27:50 AM PST> <Notice> <WebLogicServer> <Starting WebLogicAdmin
    Server "examplesServer" for domain "examples">
    Starting Loading jDriver/Oracle .....
    ---------- LOGIN ERROR CODE: 1017
    ---------- LOGIN ERROR CODE: 1017
    <Jan 21, 2003 2:28:06 AM PST> <Error> <JDBC> <Cannot startup connectionpool "or
    aclePool" weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: ORA-01017: invalid username/password; logondenied - (Obj
    ectel/********@ora8i)
    atweblogic.db.oci.OciConnection.getLDAException(OciConnection.java:164)
    at weblogic.jdbc.oci.Driver.connect(Driver.java:112)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:193)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    atweblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    atweblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    atweblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    atweblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    atweblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    atweblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    atweblogic.management.configuration.ApplicationManagerMBean_CachingStub
    start(ApplicationManagerMBean_CachingStub.java:480)
    atweblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:209)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:134)
    atweblogic.common.internal.ResourceAllocator.makeResources(ResourceAllo
    cator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocator.j
    ava:282)
    atweblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:623)
    atweblogic.jdbc.common.JDBCService.addDeployment(JDBCService.java:107)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:329)
    atweblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:279)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:233)
    atweblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:193)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy45.updateDeployments(Unknown Source)
    atweblogic.management.configuration.ServerMBean_CachingStub.updateDeplo
    yments(ServerMBean_CachingStub.java:2761)
    atweblogic.management.mbeans.custom.ApplicationManager.startConfigManag
    er(ApplicationManager.java:370)
    atweblogic.management.mbeans.custom.ApplicationManager.start(Applicatio
    nManager.java:160)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    java:621)
    atweblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:359)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    55)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    23)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy64.start(Unknown Source)
    atweblogic.management.configuration.ApplicationManagerMBean_CachingStub
    start(ApplicationManagerMBean_CachingStub.java:480)
    atweblogic.management.Admin.startApplicationManager(Admin.java:1180)
    at weblogic.management.Admin.finish(Admin.java:590)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:518)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:203)
    at weblogic.Server.main(Server.java:35)
    >
    <Jan 21, 2003 2:28:14 AM PST> <Notice> <Management> <Application Pollerstarted
    for development server.>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <ListenThreadlistening
    on port 7001>
    <Jan 21, 2003 2:28:19 AM PST> <Notice> <WebLogicServer> <SSLListenThreadlisteni
    ng on port 7002>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <Management> <Starting discoveryof
    Manag
    ed Server... This feature is on by default, you may turn this off bypassing -Dw
    eblogic.management.discover=false>
    <Jan 21, 2003 2:28:20 AM PST> <Notice> <WebLogicServer> <Started WebLogicAdmin
    Server "examplesServer" for domain "examples" running in DevelopmentMode>

Maybe you are looking for