12570

Hi All
I'm getting this below error once in a while, can anyone help me on this...  Thanks in advance.
Oracle.ManagedDataAccess.Client.OracleException: ORA-12570: Network Session: Unexpected packet read error ---> OracleInternal.Network.NetworkException: ORA-12570: Network Session: Unexpected packet read error ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
   at OracleInternal.Network.ReaderStream.Read(OraBuf OB)
   --- End of inner exception stack trace ---
   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.TTCExecuteSql.ReceiveExecuteResponse(Accessor[]& defineAccessors, Accessor[] bindAccessors, Boolean bHasReturningParams, SQLMetaData& sqlMetaData, SqlStatementType statementType, Int64 noOfRowsFetchedLastTime, Int32 noOfRowsToFetch, Int32& noOfRowsFetched, Int64& queryId, Int32 longFetchSize, Int64 initialLOBFetchSize, Int64[] scnFromExecution, Boolean& bAllPureInputBinds, DataUnmarshaller& dataUnmarshaller, MarshalBindParameterValueHelper& marshalBindParamsHelper, Int64[]& rowsAffectedByArrayBind, Boolean bDefineDone, Boolean& bMoreThanOneRowAffectedByDmlWithRetClause, Boolean bLOBArrayFetchRequired)
   --- End of inner exception stack trace ---
   at Oracle.ManagedDataAccess.Client.OracleException.HandleError(OracleTraceLevel level, OracleTraceTag tag, Exception ex)
   at OracleInternal.TTC.TTCExecuteSql.ReceiveExecuteResponse(Accessor[]& defineAccessors, Accessor[] bindAccessors, Boolean bHasReturningParams, SQLMetaData& sqlMetaData, SqlStatementType statementType, Int64 noOfRowsFetchedLastTime, Int32 noOfRowsToFetch, Int32& noOfRowsFetched, Int64& queryId, Int32 longFetchSize, Int64 initialLOBFetchSize, Int64[] scnFromExecution, Boolean& bAllPureInputBinds, DataUnmarshaller& dataUnmarshaller, MarshalBindParameterValueHelper& marshalBindParamsHelper, Int64[]& rowsAffectedByArrayBind, Boolean bDefineDone, Boolean& bMoreThanOneRowAffectedByDmlWithRetClause, Boolean bLOBArrayFetchRequired)
   at OracleInternal.ServiceObjects.OracleCommandImpl.ExecuteNonQuery(String commandText, OracleParameterCollection paramColl, CommandType commandType, OracleConnectionImpl connectionImpl, Int32 longFetchSize, Int64 clientInitialLOBFS, OracleDependencyImpl orclDependencyImpl, Int64[]& scnFromExecution, OracleParameterCollection& bindByPositionParamColl, Boolean& bBindParamPresent, OracleException& exceptionForArrayBindDML, Boolean isFromEF)
   at Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteNonQuery()
   at System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch[TTarget,TInterceptionContext,TResult](TTarget target, Func`3 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed)
   at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.NonQuery(DbCommand command, DbCommandInterceptionContext interceptionContext)
   at System.Data.Entity.Core.Mapping.Update.Internal.DynamicUpdateCommand.Execute(Dictionary`2 identifierValues, List`1 generatedValues)
   at System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update()
   --- End of inner exception stack trace ---
   at System.Data.Entity.Core.Mapping.Update.Internal.UpdateTranslator.Update()
   at System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction[T](Func`1 func, IDbExecutionStrategy executionStrategy, Boolean startLocalTransaction, Boolean releaseConnectionOnSuccess)
   at System.Data.Entity.Core.Objects.ObjectContext.SaveChangesToStore(SaveOptions options, IDbExecutionStrategy executionStrategy, Boolean startLocalTransaction)
   at System.Data.Entity.Core.Objects.ObjectContext.SaveChangesInternal(SaveOptions options, Boolean executeInExistingTransaction)
   at System.Data.Entity.Internal.InternalContext.SaveChanges()

I am getting this error message
ORA-12570: TNS:packet reader failure
i haven't got any sensible detail about it.
Does anyone know about it.
Ajwat The configuration of your environment variables are not correct
(ORACLE_HOME, ORACLE_SID,...)

Similar Messages

  • ORA-12570 TNS PACKET READER FALIURE

    Dear Gurus
    I am using following:
    1- Oracle 10g (10.1.0.2.0) at server level using operating system Windows 2003 server.
    2- Windows Vista 32 Bit (Service Pack 2) client
    3- Oracle 9.2.0.1.0 Install at client machince (administrative level)
    4- Forms6i, Report6i
    now the problem is that when I install Oracle 9.2.0.1.0. on my CLIENT machine and try to connect to the server error generate
    ORA-12514: TNS:Listner could not resolve SERVICE_NAME given in Descriptor.
    and when i connect forms then error generate ORA-12570 TNS PACKET READER FALIURE
    Can any one help me in this regard
    Salman

    with the new 9i install you may now have a new oracle home with a new tnsnames. ora
    here you have to add the necessary connection profiles (or copy the old tnsnames.ora to the new).
    look here also: Re: connecting to database
    update: this is a double thread ....
    Edited by: jowal on 29.11.2010 09:11

  • Message: ORA-12570: TNS:packet reader failure

    Hi,
    when i execute the below program,getting "Message: ORA-12570: TNS:packet reader failure" error. java version is 1.3.1 and oracle
    version is :9.1.
    able to connect to database using sql plus with the same user-id and
    password.
    Any help in this regard is appreciated.
    Thanks
    Chat
    import java.sql.*;
    import java.io.*;
    import java.util.Date;
    class JdbcTest
      public static void main (String args [])
        System.out.println ("Loading Oracle driver");
        try
          Class.forName ("oracle.jdbc.OracleDriver");
         System.out.println ("Connecting to the local database");
        Connection conn =
          DriverManager.getConnection("jdbc:oracle:oci8:@orcl,scott,tiger");
        System.out.println("debug 1 ....\n");
        Statement stmt = conn.createStatement ();
        System.out.println("debug 2 ....\n");
        // Query the employee names
        ResultSet rset = stmt.executeQuery ("select ename from emp");
        while (rset.next ())
          // Print the name out
          System.out.println (rset.getString (1));
      } catch (ClassNotFoundException cnfe){
          System.out.println ("Could not load the driver");
          cnfe.printStackTrace ();
      } catch (SQLException sqle) {
              System.out.println( "State  : " + sqle.getSQLState()  ) ;
               System.out.println( "Message: " + sqle.getMessage()   ) ;
               System.out.println( "Error  : " + sqle.getErrorCode() ) ;
      } catch (Exception e) {
          System.out.println ("Could not load the driver");
          e.printStackTrace ();
    C:\mjava>java JdbcTest
    Loading Oracle driver
    Connecting to the local database
    State  : 66000
    Message: ORA-12570: TNS:packet reader failure
    Error  : 12570
    C:\mjava>

    Hi Chat,
    You are using the oci8 driver and you may or may not be aware that oci8 is a type 3 driver that requires that the Oracle client be installed on the computer that is running the Java program. It also requires that you setup Oracle networking correctly, usually by putting an entry into your Oracle tnsnames.ora file.
    If there is no reason in particular that you are using the oci8 driver, then you should use the thin driver instead. The thin driver is a type 4 driver and does not require the Oracle client to be installed, and does not require configuration of Oracle networking. You do have to download the Oracle JDBC drivers from the Oracle website to the computer you are going to run your program on, and then place the oracle .jar files that contain the driver into the programs CLASSPATH. This can be done by setting an environment variable or by passing it to java.exe as a command line parameter. The url for the thin driver looks something like this, but you should check the Oracle doc for specifics or search this forum for more examples:
    jdbc:oracle:thin:@myserver:1521:mydatabaseWhen using a type 3 driver you should verify that you have Oracle networking properly configured for the computer that will be running your Java program by either connecting to the database using SQL/Plus or 'ping' the database using Oracle's tnsping utility. Make sure you check for valid connectivity before trying to run your Java program.

  • Service_died * ppcbhhrr * 12570

    I have oracle 10g (10.2.01.0) in Windows 2003 R2      Enterprice Edition
    My databse was fine but later of 4 hours, the users can not connect…
    In listener.log have a message:
    service_died * ppcbhhrr * 12570
    and TNS-12502: TNS:listener received no CONNECT_DATA from client
    I have been shutdown/startup the database and listener stop, but is problem continue after 4 hours of working again and my database is in production environment
    Please help me; I think that my problem was resolved but continue

    is other part of my listener.trc
    05-OCT-2010 12:02:20:365] snlpcss: Spawn Oracle completed oracle (LOCAL=NO) ppcbhhrr.
    [05-OCT-2010 12:02:20:365] snlpcss: exit
    [05-OCT-2010 12:02:20:365] sntpcall: Attempting to open pipe \\.\PIPE\ORANTP124.708
    [05-OCT-2010 12:02:20:381] sntpcall: Successfully established pipe 404 to child with 0 retries.
    [05-OCT-2010 12:02:20:381] sntpcall: Attempting to open pipe \\.\PIPE\ORANTP124.708.w
    [05-OCT-2010 12:02:20:381] sntpcall: Successfully established pipe 392 to child with 0 retries.
    [05-OCT-2010 12:02:20:381] sntpcall: exit
    [05-OCT-2010 12:02:20:381] ntpcon: NT layer IPC connection has been established.
    [05-OCT-2010 12:02:20:381] ntpcon: exit
    [05-OCT-2010 12:02:20:381] nsopen: transport is open
    [05-OCT-2010 12:02:20:381] nsoptions: entry
    [05-OCT-2010 12:02:20:381] nsoptions: lcl[0]=0x0, lcl[1]=0x2006, gbl[0]=0x0, gbl[1]=0x0, cha=0x0
    [05-OCT-2010 12:02:20:381] nsoptions: lcl[0]=0xf4ffe9ff, lcl[1]=0x6016, gbl[0]=0xe881, gbl[1]=0x0
    [05-OCT-2010 12:02:20:381] nsoptions: normal exit
    [05-OCT-2010 12:02:20:381] nsnainit: entry
    [05-OCT-2010 12:02:20:381] nsnainit: normal exit
    [05-OCT-2010 12:02:20:381] nsopen: global context check-in (to slot 7) complete
    [05-OCT-2010 12:02:20:381] nsopen: lcl[0]=0xf4ffe9ff, lcl[1]=0x6016, gbl[0]=0xe881, gbl[1]=0x0, tdu=4096, sdu=2048
    [05-OCT-2010 12:02:20:381] nsdo: entry
    [05-OCT-2010 12:02:20:381] nsdo: cid=7, opcode=65, bl=0, what=0, uflgs=0x0, cflgs=0x2
    [05-OCT-2010 12:02:20:381] nsdo: rank=64, nsctxrnk=0
    [05-OCT-2010 12:02:20:381] nsdo: nsctx: state=7, flg=0x4001, mvd=0
    [05-OCT-2010 12:02:20:381] nsdo: nsctxrnk=0
    [05-OCT-2010 12:02:20:381] nsdo: normal exit
    [05-OCT-2010 12:02:20:381] nsopen: normal exit
    [05-OCT-2010 12:02:20:381] nttaddr2bnd: entry
    [05-OCT-2010 12:02:20:381] snlinGetNameInfo: entry
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: Using numeric form of host's address 192.168.0.97
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: exit
    [05-OCT-2010 12:02:20:397] nttaddr2bnd: Resolved to 192.168.0.97
    [05-OCT-2010 12:02:20:397] nttaddr2bnd: exit
    [05-OCT-2010 12:02:20:397] nsbequeath_stg2: doing connect handshake...
    [05-OCT-2010 12:02:20:397] nsbequeath: doing connect handshake...
    [05-OCT-2010 12:02:20:397] ntpwr: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: Attempting to write 4 bytes to handle 404
    [05-OCT-2010 12:02:20:397] sntpwrite: WriteFile returned 4 bytes
    [05-OCT-2010 12:02:20:397] sntpwrite: exit
    [05-OCT-2010 12:02:20:397] ntpwr: exit
    [05-OCT-2010 12:02:20:397] ntpwr: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: Attempting to write 63 bytes to handle 404
    [05-OCT-2010 12:02:20:397] sntpwrite: WriteFile returned 63 bytes
    [05-OCT-2010 12:02:20:397] sntpwrite: exit
    [05-OCT-2010 12:02:20:397] ntpwr: exit
    [05-OCT-2010 12:02:20:397] ntpwr: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: entry
    [05-OCT-2010 12:02:20:397] sntpwrite: Attempting to write 8 bytes to handle 404
    [05-OCT-2010 12:02:20:397] sntpwrite: WriteFile returned 8 bytes
    [05-OCT-2010 12:02:20:397] sntpwrite: exit
    [05-OCT-2010 12:02:20:397] ntpwr: exit
    [05-OCT-2010 12:02:20:397] ntprd: entry
    [05-OCT-2010 12:02:20:397] sntpread: entry
    [05-OCT-2010 12:02:20:397] sntpread: Attempting to read 4 bytes from handle 392
    [05-OCT-2010 12:02:20:397] sntpread: ReadFile returned 4 bytes
    [05-OCT-2010 12:02:20:397] sntpread: rc = 0, ntresnt[0] = 0
    [05-OCT-2010 12:02:20:397] sntpread: exit
    [05-OCT-2010 12:02:20:397] ntprd: exit
    [05-OCT-2010 12:02:20:397] ntprd: entry
    [05-OCT-2010 12:02:20:397] sntpread: entry
    [05-OCT-2010 12:02:20:397] sntpread: Attempting to read 4 bytes from handle 392
    [05-OCT-2010 12:02:20:397] sntpread: ReadFile returned 4 bytes
    [05-OCT-2010 12:02:20:397] sntpread: rc = 0, ntresnt[0] = 0
    [05-OCT-2010 12:02:20:397] sntpread: exit
    [05-OCT-2010 12:02:20:397] ntprd: exit
    [05-OCT-2010 12:02:20:397] nsbequeath: NSE=12586
    [05-OCT-2010 12:02:20:397] nsbequeath: error reading REDIR/NSE msg
    [05-OCT-2010 12:02:20:397] nserror: entry
    [05-OCT-2010 12:02:20:397] nserror: nsres: id=6, op=72, ns=12586, ns2=0; nt[0]=0, nt[1]=0, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    [05-OCT-2010 12:02:20:397] nsdo: entry
    [05-OCT-2010 12:02:20:397] nsdo: cid=6, opcode=67, bl=0, what=13, uflgs=0x0, cflgs=0x3
    [05-OCT-2010 12:02:20:397] nsdo: rank=64, nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: nsctx: state=2, flg=0x4004, mvd=0
    [05-OCT-2010 12:02:20:397] nsdo: gtn=272, gtc=272, ptn=10, ptc=2011
    [05-OCT-2010 12:02:20:397] nscon: entry
    [05-OCT-2010 12:02:20:397] nscon: sending NSPTRS packet
    [05-OCT-2010 12:02:20:397] nspsend: entry
    [05-OCT-2010 12:02:20:397] nspsend: plen=8, type=11
    [05-OCT-2010 12:02:20:397] nsiosend: entry
    [05-OCT-2010 12:02:20:397] nttmwr: entry
    [05-OCT-2010 12:02:20:397] nttwr: entry
    [05-OCT-2010 12:02:20:397] snttcallback: entry
    [05-OCT-2010 12:02:20:397] snttcallback: exit
    [05-OCT-2010 12:02:20:397] nttwr: socket 408 had bytes written=8
    [05-OCT-2010 12:02:20:397] nttwr: exit
    [05-OCT-2010 12:02:20:397] nsiosend: exit (0)
    [05-OCT-2010 12:02:20:397] nspsend: packet dump
    [05-OCT-2010 12:02:20:397] nspsend: 00 08 00 00 0B 00 00 00 |........|
    [05-OCT-2010 12:02:20:397] nspsend: 8 bytes to transport
    [05-OCT-2010 12:02:20:397] nspsend: normal exit
    [05-OCT-2010 12:02:20:397] nscon: exit (0)
    [05-OCT-2010 12:02:20:397] nsdo: nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: normal exit
    [05-OCT-2010 12:02:20:397] nsclose: entry
    [05-OCT-2010 12:02:20:397] nstimarmed: entry
    [05-OCT-2010 12:02:20:397] nstimarmed: no timer allocated
    [05-OCT-2010 12:02:20:397] nstimarmed: normal exit
    [05-OCT-2010 12:02:20:397] nstoClearTimeout: entry
    [05-OCT-2010 12:02:20:397] nstoClearTimeout: ATO disabled for ctx=0x00AFB208
    [05-OCT-2010 12:02:20:397] nstoClearTimeout: STO disabled for ctx=0x00AFB208
    [05-OCT-2010 12:02:20:397] nstoClearTimeout: RTO disabled for ctx=0x00AFB208
    [05-OCT-2010 12:02:20:397] nstoClearTimeout: PITO disabled for ctx=0x00AFB208
    [05-OCT-2010 12:02:20:397] nstoUpdateActive: entry
    [05-OCT-2010 12:02:20:397] nstoUpdateActive: Active timeout is -1 (see nstotyp)
    [05-OCT-2010 12:02:20:397] ntpctl: entry
    [05-OCT-2010 12:02:20:397] ntpctl: exit
    [05-OCT-2010 12:02:20:397] ntpctl: entry
    [05-OCT-2010 12:02:20:397] ntpctl: exit
    [05-OCT-2010 12:02:20:397] nsdo: entry
    [05-OCT-2010 12:02:20:397] nsdo: cid=7, opcode=98, bl=0, what=0, uflgs=0x40, cflgs=0x2
    [05-OCT-2010 12:02:20:397] nsdo: rank=64, nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: nsctx: state=8, flg=0x4001, mvd=0
    [05-OCT-2010 12:02:20:397] nsdo: nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: normal exit
    [05-OCT-2010 12:02:20:397] nsiocancel: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: entry
    [05-OCT-2010 12:02:20:397] nsbfr: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: normal exit
    [05-OCT-2010 12:02:20:397] nsbfr: normal exit
    [05-OCT-2010 12:02:20:397] nsiofrrg: exit
    [05-OCT-2010 12:02:20:397] nsiocancel: exit
    [05-OCT-2010 12:02:20:397] nsclose: closing transport
    [05-OCT-2010 12:02:20:397] ntpdisc: entry
    [05-OCT-2010 12:02:20:397] sntpclose: entry
    [05-OCT-2010 12:02:20:397] sntpclose: Closing pipe 392
    [05-OCT-2010 12:02:20:397] sntpclose: Closing pipe 404
    [05-OCT-2010 12:02:20:397] sntpclose: exit
    [05-OCT-2010 12:02:20:397] ntpdisc: exit
    [05-OCT-2010 12:02:20:397] nsclose: global context check-out (from slot 7) complete
    [05-OCT-2010 12:02:20:397] nsnadisc: entry
    [05-OCT-2010 12:02:20:397] nsnadisc: no native services in use - returning
    [05-OCT-2010 12:02:20:397] nsopenfree_nsntx: nlhthdel from mplx_ht_nsgbu, ctx=afb208 nsntx=afbbe0
    [05-OCT-2010 12:02:20:397] nsiocancel: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: exit
    [05-OCT-2010 12:02:20:397] nsiocancel: exit
    [05-OCT-2010 12:02:20:397] nsmfr: entry
    [05-OCT-2010 12:02:20:397] nsmfr: 1644 bytes at 0xafbbe0
    [05-OCT-2010 12:02:20:397] nsmfr: normal exit
    [05-OCT-2010 12:02:20:397] nsmfr: entry
    [05-OCT-2010 12:02:20:397] nsmfr: 736 bytes at 0xafb208
    [05-OCT-2010 12:02:20:397] nsmfr: normal exit
    [05-OCT-2010 12:02:20:397] nsclose: normal exit
    [05-OCT-2010 12:02:20:397] nsclose: entry
    [05-OCT-2010 12:02:20:397] nstimarmed: entry
    [05-OCT-2010 12:02:20:397] nstimarmed: no timer allocated
    [05-OCT-2010 12:02:20:397] nstimarmed: normal exit
    [05-OCT-2010 12:02:20:397] nttctl: entry
    [05-OCT-2010 12:02:20:397] nttctl: entry
    [05-OCT-2010 12:02:20:397] nsdo: entry
    [05-OCT-2010 12:02:20:397] nsdo: cid=6, opcode=98, bl=0, what=0, uflgs=0x40, cflgs=0x2
    [05-OCT-2010 12:02:20:397] nsdo: rank=64, nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: nsctx: state=2, flg=0x4000, mvd=0
    [05-OCT-2010 12:02:20:397] nsevunreg: entry
    [05-OCT-2010 12:02:20:397] nsevunreg: cid=6, sgt=0, rdm=2
    [05-OCT-2010 12:02:20:397] nsrah: entry
    [05-OCT-2010 12:02:20:397] nsrah: re-setting transport read mode
    [05-OCT-2010 12:02:20:397] nttctl: entry
    [05-OCT-2010 12:02:20:397] nttctl: Clearing async mode
    [05-OCT-2010 12:02:20:397] nsrah: normal exit
    [05-OCT-2010 12:02:20:397] nsevunreg: 4 registered connection(s)
    [05-OCT-2010 12:02:20:397] nsevunreg: exit (0)
    [05-OCT-2010 12:02:20:397] nsbfr: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: normal exit
    [05-OCT-2010 12:02:20:397] nsbfr: normal exit
    [05-OCT-2010 12:02:20:397] nsbfr: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: normal exit
    [05-OCT-2010 12:02:20:397] nsbfr: normal exit
    [05-OCT-2010 12:02:20:397] nsdo: nsctxrnk=0
    [05-OCT-2010 12:02:20:397] nsdo: normal exit
    [05-OCT-2010 12:02:20:397] nsiocancel: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: entry
    [05-OCT-2010 12:02:20:397] nsbfr: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: entry
    [05-OCT-2010 12:02:20:397] nsbaddfl: normal exit
    [05-OCT-2010 12:02:20:397] nsbfr: normal exit
    [05-OCT-2010 12:02:20:397] nsiofrrg: exit
    [05-OCT-2010 12:02:20:397] nsiocancel: exit
    [05-OCT-2010 12:02:20:397] nsclose: closing transport
    [05-OCT-2010 12:02:20:397] nttdisc: entry
    [05-OCT-2010 12:02:20:397] nttdisc: Closed socket 408
    [05-OCT-2010 12:02:20:397] nttdisc: exit
    [05-OCT-2010 12:02:20:397] nsclose: global context check-out (from slot 6) complete
    [05-OCT-2010 12:02:20:397] nsnadisc: entry
    [05-OCT-2010 12:02:20:397] nsnadisc: no native services in use - returning
    [05-OCT-2010 12:02:20:397] nsopenfree_nsntx: nlhthdel from mplx_ht_nsgbu, ctx=b27008 nsntx=afe008
    [05-OCT-2010 12:02:20:397] nsiocancel: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: entry
    [05-OCT-2010 12:02:20:397] nsiofrrg: exit
    [05-OCT-2010 12:02:20:397] nsiocancel: exit
    [05-OCT-2010 12:02:20:397] nsmfr: entry
    [05-OCT-2010 12:02:20:397] nsmfr: 1644 bytes at 0xafe008
    [05-OCT-2010 12:02:20:397] nsmfr: normal exit
    [05-OCT-2010 12:02:20:397] nsmfr: entry
    [05-OCT-2010 12:02:20:397] nsmfr: 736 bytes at 0xb27008
    [05-OCT-2010 12:02:20:397] nsmfr: normal exit
    [05-OCT-2010 12:02:20:397] nsclose: normal exit
    [05-OCT-2010 12:02:20:397] nsbeqaddr: connect handshake is complete
    [05-OCT-2010 12:02:20:397] nsbeqaddr: normal exit
    [05-OCT-2010 12:02:20:397] nsbequeath: normal exit
    [05-OCT-2010 12:02:20:397] nsglhe: exit
    [05-OCT-2010 12:02:20:397] nsevwait: entry
    [05-OCT-2010 12:02:20:397] nsevwait: 4 registered connection(s)
    [05-OCT-2010 12:02:20:397] nsevwait: 0 pre-posted event(s)
    [05-OCT-2010 12:02:20:397] nsevwait: waiting for transport event (1 thru 5)...
    [05-OCT-2010 12:02:20:397] nsevwait: 1 newly-posted event(s)
    [05-OCT-2010 12:02:20:397] nsevfnt: cxd: 0xa931b8 stage 0: NT events set:
         CONNECTION REQUEST
    [05-OCT-2010 12:02:20:397] nsevfnt: cxd: 0xa931b8 stage 0: NS events set:
         INCOMING CALL
    [05-OCT-2010 12:02:20:397] nsevwait: event is 0x1, on 1
    [05-OCT-2010 12:02:20:397] nsevwait: 1 posted event(s)
    [05-OCT-2010 12:02:20:397] nsevwait: exit (0)
    [05-OCT-2010 12:02:20:397] nsglhe: entry
    [05-OCT-2010 12:02:20:397] nsglhe: Event on cxd 0xa931b8.
    [05-OCT-2010 12:02:20:397] nsglhc: Allocating cxd 0xaee8d0
    [05-OCT-2010 12:02:20:397] nsanswer: entry
    [05-OCT-2010 12:02:20:397] nsopen: entry
    [05-OCT-2010 12:02:20:397] nsmal: entry
    [05-OCT-2010 12:02:20:397] nsmal: 736 bytes at 0xb27008
    [05-OCT-2010 12:02:20:397] nsmal: normal exit
    [05-OCT-2010 12:02:20:397] nsopenmplx: entry
    [05-OCT-2010 12:02:20:397] nsmal: entry
    [05-OCT-2010 12:02:20:397] nsmal: 1644 bytes at 0xafe008
    [05-OCT-2010 12:02:20:397] nsmal: normal exit
    [05-OCT-2010 12:02:20:397] nsiorini: entry
    [05-OCT-2010 12:02:20:397] nsbal: entry
    [05-OCT-2010 12:02:20:397] nsbgetfl: entry
    [05-OCT-2010 12:02:20:397] nsbgetfl: normal exit
    [05-OCT-2010 12:02:20:397] nsbal: normal exit
    [05-OCT-2010 12:02:20:397] nsiorini: exit (0)
    [05-OCT-2010 12:02:20:397] nscpxget: entry
    [05-OCT-2010 12:02:20:397] nscpxget: normal exit
    [05-OCT-2010 12:02:20:397] nsopenalloc_nsntx: nlhthput on mplx_ht_nsgbu:ctx=b27008, nsntx=afe008
    [05-OCT-2010 12:02:20:397] nsopenmplx: normal exit
    [05-OCT-2010 12:02:20:397] nsopen: opening transport...
    [05-OCT-2010 12:02:20:397] nttcon: entry
    [05-OCT-2010 12:02:20:397] nttcon: toc = 3
    [05-OCT-2010 12:02:20:397] nttcnp: entry
    [05-OCT-2010 12:02:20:397] nttcnp: getting sockname
    [05-OCT-2010 12:02:20:397] nttcnp: getting peername
    [05-OCT-2010 12:02:20:397] nttcnp: exit
    [05-OCT-2010 12:02:20:397] nttcnr: entry
    [05-OCT-2010 12:02:20:397] nttcnr: waiting to accept a connection.
    [05-OCT-2010 12:02:20:397] nttcnr: getting sockname
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: entry
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: Using numeric form of host's address 192.168.0.97
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: exit
    [05-OCT-2010 12:02:20:397] nttcnr: connected on ipaddr 192.168.0.97
    [05-OCT-2010 12:02:20:397] nttvlser: entry
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: entry
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: Using numeric form of host's address 192.168.1.162
    [05-OCT-2010 12:02:20:397] snlinGetNameInfo: exit
    [05-OCT-2010 12:02:20:397] nttvlser: valid node check on incoming node 192.168.1.162

  • Random ORA-12570: TNS:packet reader failure errors

    We are seeing random ORA-12570: TNS:packet reader failure errors. Trace files regularly show the following entries:
    2012-09-06 14:45:01.974959 : nttrd:entry
    2012-09-06 14:45:23.327987 : ntt2err:entry
    2012-09-06 14:45:23.328093 : ntt2err:soc 844 error - operation=5, ntresnt[0]=530, ntresnt[1]=53, ntresnt[2]=0
    2012-09-06 14:45:23.328112 : ntt2err:exit
    2012-09-06 14:45:23.328127 : nttrd:exit
    2012-09-06 14:45:23.328177 : nserror:nsres: id=0, op=68, ns=12570, ns2=12560; nt[0]=530, nt[1]=53, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    Oracle Client is Server 2008 R2 on VMWare.

    Hi;
    Please also review:
    ORA-12570 ON CONNECTION ATTEMPT IN SERVER MANAGER WITH NO NETWORK CONNECTION [ID 91210.1]
    But As mention here rise SR please
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • ORA-12570 TNS PACKET FAILURE

    I am trying to instal oracle(8 1 5) on my window 2000. Everything works fine but when it get to were to build the starter database, I get thisd message
    ora-12570 TNS packet failure.
    Can someone take me what I need to do to fix this problem. I can't get it work but we I get to the service area the database was installed.
    Please this is a big problem to me. I will really appreciate quick respond if you have come across a similar problem.
    God bless you.

    Try using the option to build scripts to create the database instead of creating the database. Then run the script to create database from the cmd window.
    If using TCP/IP, can you ping localhost successfully ?

  • Ora Error:12570: TNS Packet Reader Failure

    Hi,
    I installed Oracle 8.1.5 on windows NT 4.0(Service Pack 5). When I am trying to create a local database. After completeing 85% of process. I am getting TNS Packet Reader Failure Error. All this is happening when i am not connected to network. I am able to create a local database if i am connected to my Office Network. Please Can anyone help me?
    Details once again:
    Oracle 8.1.5
    Windows NT 4.0(Service Pack 5)
    Network Protocol is TCP/IP(Protcol used for database)
    TCP/IP Port number is 1521
    Thanks
    skumar

    I am getting this error message
    ORA-12570: TNS:packet reader failure
    i haven't got any sensible detail about it.
    Does anyone know about it.
    Ajwat The configuration of your environment variables are not correct
    (ORACLE_HOME, ORACLE_SID,...)

  • TNS-12570: TNS:packet reader failure

    I have a few client boxes that are reporting getting these errors.
    Fatal NI connect error 12570, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Oracle)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=FBC1)(CID=(PROGRAM=C:\Mercator\Mercntsv.exe)(HOST=MERCATOR2)(USER=SYSTEM))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 9.2.0.7.0 - Production
         Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 9.2.0.7.0 - Production
    Time: 01-APR-2008 18:05:04
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12570
    TNS-12570: TNS:packet reader failure
    ns secondary err code: 12560
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 53
    nt OS err code: 0
    They seem to occur sporadically - the application running on it will be fine for 4 minutes, then a flurry of these errors in the space of 2 seconds, then fine for a little while. The network guy is looking at things from his end, but how do I debug this to make sure I have done everything I can?
    The server isn't reporting any issues that I can see (but I may not have my debug levels set correctly to catch this), and both client and server are running the same version.
    Any ideas how I should be proceeding?
    Edit: Sorry, misleading title
    Message was edited by:
    jlaidlaw
    Message was edited by:
    jlaidlaw

    The troubleshooting section of the Net administrators manual would have been a good place to start.
    It would have told you how to enable tracing, by putting the following in sqlnet.ora
    on the client.
    trace_level_client=16
    trace_unique_client=true
    trace_directory_client=anything
    This will provide a plethora of bytes, and the error message, as well as accompanying messages which are usually not shown.
    trace_level_client=0 disables tracing,
    But the problem is with the network, you won't find anything
    Sybrand Bakker
    Senior Oracle DBA

  • Ora-12570: TNS:Packet Reader Failure....

    Hello Everyone,
    Today i deinstalled Oracle 8i personal edition and installed again. When I am trying to login as system/manager, i am getting "Ora-12570: TNS:Packet Reader Failure" Can any one help me to come out of this problem? I look forward to your reply.
    Thanks In Advance.
    Sunil

    Hi Nepali...
    Sorry I for got to mention that oracle is installed on Windows Nt4.0. Do i need to remove evertying related to oracle in windows registery. This is installed on my laptop, probably i may not be able to install on another p.c.

  • (Urgent) TNS-12570 TNS:packet reader failure

    Hi
    I have oracle 9.0.2 and developer 6i installed on the same machine for development purpose. Every thing was running fine but today when I tried to connect the form builder to database it raised following error:
    TNS-12570 TNS:packet reader failure
    Cause: An error occurred during a data receive. This message is not normally visible to the user.
    Action: For further details, turn on tracing and re-execute the operation. If the error persists, contact Oracle Support Services.
    when I tried to connect from remote machine on LAN it raised following error:
    TNS-12537 TNS:connection closed
    Cause: "End of file" condition has been reached; partner has disconnected. This is an informational message.
    Action: No action required.
    Do you have any solution to this problem
    Regards
    Faisal

    Recently found the same problem in my system. I got this problem after installing McAfee Internet Security suite which installs personal firewall.
    I un-installed oracle and re installed it result is same.I am using oracle 8i (8.1.5)
    Funny part is if I give SID in sql plus then only i get this error otherwise if I put scott/tiger in sqlplus without SID it connects to database.
    This does not solves my purpose coz one of my application connects to database in which dburl contains SID.
    Thanks in advance
    satyen

  • Report printing

    Hi All,
    I am working on Apex with Oracle XE universal...i just tried to acheive print pdf functionality throgh integration of Apex with Apache cocoon...
    Everything is working fine...my Apache server is working,cocoon is working but when i m clicking on print button ....it showed me the following errors:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1186
    ORA-12570: TNS:packet reader failure
    I don,t know what problem is there in my application...or I need to do some settings....
    if anyone knows please help me....
    I did the following settings in my report page:
    In APEX, I logged in as ADMIN into apex/apex_admin and went to Instance Settings and did the following:
    - Print Serverr: Standard Support
    - Print Server Protocol: HTTP
    - Print Server Host Address: XYZ
    - Print Server Port: 8181
    - Print Server Script: /cocoon/fop_post
    In my APEX application, in the Regions section, I click on the Print link next to my report. I have the following settings:
    - Enable Report Printing: Yes
    - Link Label: Print
    - Response Header: Print Server
    - Output Format: PDF
    - Report Layout: Default Report Layout
    - Print URL: f?p=&APP_ID.:1:&SESSION.:FLOW_XMLP_OUTPUT_R1063230002781575
    Edited by: user9139675 on Mar 23, 2010 1:54 AM

    what was your solution?

  • BI Publisher report setting  in APEX

    Dear All,
    I have created an some rtf file and done some steps for report query and report layout . It is working in apex.oracle .com.
    When i tried the same into my local system , it is showing an error like below.
    Error:
    ====
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1186 ORA-12570: TNS:packet reader failure
    Please give me suggestion to resolve the issues.
    This report is based on bi publisher and xml.
    Regards
    Dhanush R

    Yeah. second that. Please help.
    In my case, I installed BI EE on a Solaris box.

  • ISE ver 1.1.2.145 advanced license consumption

    Hello,
    I am puzzled with this scenario when it comes to advanced licensing, any insight is greatly appreciated:
    I have an XP machine that I am using to access network though ISE authentication and authorization. My authentication is EAP-TLS with machine authentication to simulate company asset. Everytime the XP station connects, ISE consumes a Base license and an Advanced license. Why?? I am note using the profiled group, posture assessment, nor even onboarding in my Authz policy.
    Here is the authorization rule:
    Here is the licensing page:
    base                             advanced
    1/20
    1/20
    Here is the only active session from active session report:
    xp-test.ashour.local
    00:22:FB:1A:59:C2
    10.30.30.117
    dot1x
    EAP-TLS
    NotApplicable
    N/A
    WindowsXP-Workstation
    Running
    ise
    And here is the live authentication:
    Authentication Summary
    Logged At:
    December 10,2012 5:27:36.331 PM
    RADIUS Status:
    Authentication succeeded
    NAS Failure:
    Username:
    xp-test.ashour.local
    MAC/IP Address:
    00:22:FB:1A:59:C2
    Network Device:
    5508-WLC : 10.255.255.20 : 
    Allowed Protocol:
    Default Network Access
    Identity Store:
    Authorization Profiles:
    PermitAccess
    SGA Security Group:
    Authentication Protocol :
    EAP-TLS
    Authentication Result
    User-Name=xp-test.ashour.local
    State=ReauthSession:0affff140000005550c6598d
    Class=CACS:0affff140000005550c6598d:ise/144192099/4026
    Termination-Action=RADIUS-Request
    MS-MPPE-Send-Key=99:b0:49:f5:e1:eb:20:a6:2b:2a:97:fe:f1:68:a0:02:a7:98:3c:03:12:2a:90:70:3a:6c:fd:ed:1c:3b:bc:4b
    MS-MPPE-Recv-Key=8e:c8:88:f8:fb:75:02:3d:32:48:8a:b0:9e:7d:74:5d:04:f7:de:48:3c:b9:c3:e7:36:e5:05:f3:c7:6c:21:7d
    Related Events
    Dec 10,12 5:27:36.072 PM
    Radius authentication passed for USER:   CALLING STATION ID: 00:22:FB:1A:59:C2  AUTHTYPE:
    Radius authentication passed
    Dec 10,12 5:23:56.647 PM
    Radius authentication passed for USER:   CALLING STATION ID: 00:22:FB:1A:59:C2  AUTHTYPE:
    Radius authentication passed
    Dec 10,12 5:06:07.317 PM
    Radius accounting start
    Radius accounting start
    Authentication Details
    Logged At:
    December 10,2012 5:27:36.331 PM
    Occurred At:
    December 10,2012 5:27:36.331 PM
    Server:
    ise
    Authentication Method:
    dot1x
    EAP Authentication Method :
    EAP-TLS
    EAP Tunnel Method :
    Username:
    xp-test.ashour.local
    RADIUS Username :
    host/xp-test.ashour.local
    Calling Station ID:
    00:22:FB:1A:59:C2
    Framed IP Address:
    Use Case:
    Network Device:
    5508-WLC
    Network Device Groups:
    Device Type#All Device Types#WIRELESS,Location#All Locations#ASHOUR RESIDENCE
    NAS IP Address:
    10.255.255.20
    NAS Identifier:
    ASHOUR-WLC1
    NAS Port:
    1
    NAS Port ID:
    NAS Port Type:
    Wireless - IEEE 802.11
    Allowed Protocol:
    Default Network Access
    Service Type:
    Framed
    Identity Store:
    Authorization Profiles:
    PermitAccess
    Active Directory Domain:
    Identity Group:
    Profiled:Workstation
    Allowed Protocol Selection Matched Rule:
    Dot1X
    Identity Policy Matched Rule:
    Default
    Selected Identity Stores:
    Authorization Policy Matched Rule:
    Company asset
    SGA Security Group:
    AAA Session ID:
    ise/144192099/4026
    Audit Session ID:
    0affff140000005550c6598d
    Tunnel Details:
    Tunnel-Type=(tag=0) VLAN,Tunnel-Medium-Type=(tag=0) 802,Tunnel-Private-Group-ID=(tag=0) 30
    Cisco-AVPairs:
    audit-session-id=0affff140000005550c6598d
    Other Attributes:
    ConfigVersionId=5,DestinationPort=1812,Protocol=Radius,Framed-MTU=1300,State=37CPMSessionID=0affff140000005550c6598d;28SessionID=ise/144192099/4026;,Airespace-Wlan-Id=1,ExternalGroups=ashour.local/users/domain computers,CPMSessionID=0affff140000005550c6598d,EndPointMACAddress=00-22-FB-1A-59-C2,EndPointMatchedProfile=WindowsXP-Workstation,HostIdentityGroup=Endpoint Identity Groups:Profiled:Workstation,Device Type=Device Type#All Device Types#WIRELESS,Location=Location#All Locations#ASHOUR RESIDENCE,Model Name=5508,Software Version=7.2,Device IP Address=10.255.255.20,Called-Station-ID=f0:25:72:3d:3c:d0:ISE BYOD
    Posture Status:
    NotApplicable
    EPS Status:
    Steps
    11001  Received RADIUS Access-Request
    11017  RADIUS created a new session
    Evaluating Service Selection Policy
    15048  Queried PIP
    15048  Queried PIP
    15048  Queried PIP
    15048  Queried PIP
    15004  Matched rule
    11507  Extracted EAP-Response/Identity
    12500  Prepared EAP-Request proposing EAP-TLS with challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12502  Extracted EAP-Response containing EAP-TLS challenge-response and accepting EAP-TLS as negotiated
    12800  Extracted first TLS record; TLS handshake started
    12805  Extracted TLS ClientHello message
    12806  Prepared TLS ServerHello message
    12807  Prepared TLS Certificate message
    12809  Prepared TLS CertificateRequest message
    12505  Prepared EAP-Request with another EAP-TLS challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12504  Extracted EAP-Response containing EAP-TLS challenge-response
    12505  Prepared EAP-Request with another EAP-TLS challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12504  Extracted EAP-Response containing EAP-TLS challenge-response
    12505  Prepared EAP-Request with another EAP-TLS challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12504  Extracted EAP-Response containing EAP-TLS challenge-response
    12505  Prepared EAP-Request with another EAP-TLS challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12504  Extracted EAP-Response containing EAP-TLS challenge-response
    12568  Lookup user certificate status in OCSP cache
    12570  Lookup user certificate status in OCSP cache succeeded
    12554  OCSP status of user certificate is good
    12568  Lookup user certificate status in OCSP cache
    12570  Lookup user certificate status in OCSP cache succeeded
    12554  OCSP status of user certificate is good
    12811  Extracted TLS Certificate message containing client certificate
    12812  Extracted TLS ClientKeyExchange message
    12813  Extracted TLS CertificateVerify message
    12804  Extracted TLS Finished message
    12801  Prepared TLS ChangeCipherSpec message
    12802  Prepared TLS Finished message
    12816  TLS handshake succeeded
    12509  EAP-TLS full handshake finished successfully
    12505  Prepared EAP-Request with another EAP-TLS challenge
    11006  Returned RADIUS Access-Challenge
    11001  Received RADIUS Access-Request
    11018  RADIUS is re-using an existing session
    12504  Extracted EAP-Response containing EAP-TLS challenge-response
    Evaluating Identity Policy
    15006  Matched Default Rule
    22037  Authentication Passed
    12506  EAP-TLS authentication succeeded
    11503  Prepared EAP-Success
    Evaluating Authorization Policy
    15048  Queried PIP
    15048  Queried PIP
    15004  Matched rule
    15016  Selected Authorization Profile - PermitAccess
    11002  Returned RADIUS Access-Accept

    Hi,
    Please make sure that the profiling is disabled for this node, it seems as if the radius probe and the user agent is learned via the http probe.
    It also seems as if you are hitting this bug I understand the description doesn't line up but you may want to have TAC clarifiy if this isnt experience on authenticating networks:
    CSCub56607
    Cisco ISE applies a wireless access session against the Advanced license allowable user count when it should not
    The wireless session in question should be applied against the Base  license count. This issue has been observed in Cisco ISE, Release 1.1.1  where the following functions are set:
    •MAC Filtering is enabled on the SSID and the Central Web Authentication authorization policy is applied
    •Profiling is disabled
    •Posture is disabled
    •The device in question has not been registered via the My Devices Portal
    Note There is no known workaround for this issue.
    Tarik Admani
    *Please rate helpful posts*

  • Oracle 11g XE not working with oracle BI publisher 10g after enabling ACL

    Hello,
    I previously work with oracle 10gXE and Oracle BI publisher 10g and it work fine. now i install oracle 11g XE and try to configure it with oracle Bi Publlisher, it show this error
    "ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1324 ORA-12570: TNS:packet reader failure" after runing the ACL package to neable network service.
    on the database.
    Please can any body tell be why this is not working. Tanx.

    You'll need to add the apex engine owner to the ACL (Access Control List). Depending on your version of apex the user name varies. i.e. 4.0 is APEX_040000
    See Joel's blog for info about the ACL and APEX.
    [http://joelkallman.blogspot.com/2010/10/application-express-network-acls-and.html]

  • PDF Printing

    Hello:
    I'm running 11g. I'm trying to print to a PDF and I'm not having difficulty. In my application, when I click the Print link and try to open the PDF file, I receive the following error message:
    Adobe Reader could not open 'My_Orders.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    I saved the .PDF and using EditPlus I opened the file and the following is shown within the file:
    report error:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1186
    ORA-12570: TNS:packet reader failure
    I was able to successfully install BI Publisher. In my browser, I type the URL: http://HELEN:9704/xmlpserver and I am able to login as the Administrator user.
    I also upgraded APEX from 3.0 to 3.2 successfully. All the users who should be unlocked are unlocked.
    I enabled network services by running the DBMS_NETWORK_ACL_ADMIN proc. I ran the following query to verify that the grants were given:
    SELECT * FROM DBA_NETWORK_ACL_PRIVILEGES;The result of this query is the following:
    ACL                             ACLID                                   PRINCIPAL       PRIVILEGE  IS_GRANT  INVERT     START_D   END_DATE
    /sys/acls/power_users.xml     BD019FE78CAE40F3942C6A931378FA40     APEX_030200     connect     true     false     (null)     (null)In APEX, I logged in as ADMIN into apex/apex_admin and went to Instance Settings and did the following:
    - Oracle BI Publisher: Advanced Support
    - Print Server Protocol: HTTP
    - Print Server Host Address: HELEN
    - Print Server Port: 9704
    - Print Server Script: /xmlpserver/convert
    In my APEX application, in the Regions section, I click on the Print link next to my report. I have the following settings:
    - Enable Report Printing: Yes
    - Link Label: Print
    - Response Header: Report Settings
    - View File As: Attachment
    - Output Format: PDF
    - Report Layout: Default Report Layout
    - Print URL: f?p=&APP_ID.:4:&SESSION.:FLOW_XMLP_OUTPUT_R301336745008961227
    I think I covered everything I could to enable PDF Printing with APEX. I don't understand why I'm receiving the Adobe error and the errors found within the PDF file that I mentioned above.
    Can someone help me out?
    Thanks

    Hi Judyanne88,
    If you are printing the PDF files from the Adobe Reader program, reinstalling that program from the Adobe website may resolve the issue you are experiencing.  If you reinstall the program and still are unable to see the current view, please call or email us using one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

Maybe you are looking for

  • Cant figure out the IP address of the domain controller

    I just started at a new company and would like to change my domain password but cannot because I cant communicate with the domain controller.  I can see it when I do a net view, but I cannot ping it because my DNS server is set to the local router IP

  • How do I change itunes internet connection to firefox

    how do i change internet connection from internet explorer to firefox?

  • How do I open jpg files in camera raw?

    I have read in numerous articles that I can open jpg files in ACR from within Elements 11. They all state to go File>Open, then browse to the jpg you wish to open, select Camera Raw from the file type and select the jpg. When I select the Camera Raw

  • ORA-12505: TNS:listener does not currently know of SID given in connect

    hi Dears, i had insatlled new 11g on my Linux centios 5 system for testing purpose. when i started oem i can see agent is down but when i checked the agent status its saying below messages. i'm new to oracle . please guide me. oracle11@test bin]$ ./e

  • CRM 5.0 Documentation

    Hello, Does anyone have any documentation on CRM 5.0.  I have the upgrade guide but I am looking for some technical application documentation.  We are currently on CRM 4.0 with the MRM add on. Please email the documents to [email protected] Thanks in