(1,15697970) : error 2019

I installed ODP.NET , I use it with MS's LIGHTSWITCH (VS2012). I found a error in use. this is as follows:
IN Chinese:
指定的架构无效。错误:
(1,15697970) : 错误 2019: 指定的成员映射无效。
类型“TbdModel.INSPECT_TYPE”中的成员“ID”的类型 “Edm.Decimal[Nullable=False,DefaultValue=,Precision=38,Scale=0]”
与类型“Tbd.INSPECT_FILE”中的成员
“INSPECT_TYPE_ID”的“OracleEFProvider.number[Nullable=False,DefaultValue=,Precision=10,Scale=0]” 不兼容。

<oracle.dataaccess.client>
<settings>
<add name="bool" value="edmmapping number(1,0)" />
<add name="STP_OWN.LOOKUP_ACCOUNT.RefCursor.results" value="implicitRefCursor bindinfo='mode=Output'" />
<add name="STP_OWN.LOOKUP_ACCOUNT.RefCursorMetaData.results.Column.0" value="implicitRefCursor metadata='ColumnName=ACCT_NO;DataType=System.Int64;ProviderType=Int64;NativeDataType=Number;NumericPrecision=9;NumericScale=0'" />
<add name="STP_OWN.LOOKUP_ACCOUNT.RefCursorMetaData.results.Column.1" value="implicitRefCursor metadata='ColumnName=ACCT_NAME;ProviderType=Varchar2;NativeDataType=Varchar2'" />
<add name="STP_OWN.LOOKUP_CUSIP.RefCursor.results" value="implicitRefCursor bindinfo='mode=Output'" />
<add name="STP_OWN.LOOKUP_CUSIP.RefCursorMetaData.results.Column.0" value="implicitRefCursor metadata='ColumnName=CUSIP;ProviderType=Varchar2;NativeDataType=Varchar2'" />
<add name="STP_OWN.LOOKUP_CUSIP.RefCursorMetaData.results.Column.1" value="implicitRefCursor metadata='ColumnName=PIMCO_DESC;ProviderType=Varchar2;NativeDataType=Varchar2'" />
</settings>
</oracle.dataaccess.client>

Similar Messages

  • 'Connection Description for Remote Database not found' Error

    Hi All,
    I have an interface that loads Oracle DB from an Oracle source(JD Edwards). It is mostly one to one mapping of the columns, and is utilizing LKM Oracle to Oracle(DBLink), IKM Oracle Incremental Update and CKM Oracle.
    I am getting an error when executing the interface which states 'Connection Description for Remote Database Not Found' at the 'Insert Flow into I$ table' step in the Operator logs.
    The below is the content of the error:
    2019 : 42000 : java.sql.SQLException: ORA-02019: connection description for remote database not found
    java.sql.SQLException: ORA-02019: connection description for remote database not found
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1086)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3057)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.h.z(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Please advice me on the correction.
    Many Thanks!

    Hi All,
    I am seeing things are working fine, when I am using LKM SQL to Oracle in combination with IKM Oracle Incremental Update. It is only in the case of using LKM Oracle to Oracle(DBLINK) in combination with IKM Oracle Incremental Update, that the above mentioned error is thrown.
    Please suggest on the resolution in using LKM Oracle to Oracle(DBLINK) with IKM Oracle Incremental Update...
    Thanks!

  • EF Code First: FLOAT Columns generate [Column(TypeName = "float")], which give errors

    When I create a simple table with a FLOAT(126) column and add an ADO.NET Entity Data Model with Code first from the database I get a decimal for the FLOAT column with the following ColumnAttribute: [Column(TypeName = "float")].
    When I try to add a controller for this generated Code First class, it fails with the following message:
    Error:
    There was an error running the selected code generator:
    'Unable to retrieve metadata for 'MyNamespace.TEMP_WITHFLOAT'.
    Schema specified is not valid. Errors:
    (8,12) : error 2019: Member Mapping specified is not valid. The type 'Edm.Decimal[Nullable=False,DefaultValie=,Precision=38,Scale=0]' of member 'FLOATCOL' in type 'MyNamespace.TEMP_WITHFLOAT' is not compatible with 'SqlServer.float[Nullable=False,DefaultValue=]' of member 'FLOATCOL' in type 'MySchema.TEMP_WITHFLOAT'.'
    It fails with the same error if I specify other values for precision and scale (or remove the lines entirely) in the code invoking HasPrecision in the generated model.
    The error message when trying to add a controller for the generated class:
    But - if I remove the attribute [Column(TypeName = "float")] from the generated Code First class, the controller is created without errors, and works as it should, returning decimal numbers correctly (it happily ignores that the scale is set to 0 in the generated model).
    The generated class with the ColumnAttribute removed:
        [Table("MYDBSCHEMA.TEMP_WITHFLOAT")]
        public partial class TEMP_WITHFLOAT
            [DatabaseGenerated(DatabaseGeneratedOption.None)]
            public int ID { get; set; }
            //[Column(TypeName = "float")]
            public decimal FLOATCOL { get; set; }
    Correct JSON output from working controller:
    [ { "ID": 1, "FLOATCOL": 123.0 }, { "ID": 2, "FLOATCOL": 123.456789012345 } ]
    It would be very nice if the Code First generated classes worked out of the box, without a required step to manually remove the Column attribute for every FLOAT column.
    Is there a workaround or other solution to this problem? The best solution would be if the generated code is mapped correctly between compatible database and C# types.
    Simple code to reproduce the issue:
    SQL script for the table:
    CREATE TABLE "TEMP_WITHFLOAT"
       ( "ID" NUMBER(10,0) NOT NULL ENABLE,
      "FLOATCOL" FLOAT(126) NOT NULL ENABLE
       ) PCTFREE 10 INITRANS 1 NOCOMPRESS LOGGING;
    ALTER TABLE "TEMP_WITHFLOAT" ADD CONSTRAINT "PK_TEMP_WITHFLOAT" PRIMARY KEY ("ID") ENABLE;
    The generated class:
       [Table("MYDBSCHEMA.TEMP_WITHFLOAT")]
        public partial class TEMP_WITHFLOAT
            [DatabaseGenerated(DatabaseGeneratedOption.None)]
            public int ID { get; set; }
            [Column(TypeName = "float")]
            public decimal FLOATCOL { get; set; }
    The generated model:
        public partial class TempWithFloatModel : DbContext
            public TempWithFloatModel()
                : base("name=TempWithFloatModel")
            public virtual DbSet<TEMP_WITHFLOAT> TEMP_WITHFLOAT { get; set; }
            protected override void OnModelCreating(DbModelBuilder modelBuilder)
                modelBuilder.Entity<TEMP_WITHFLOAT>()
                    .Property(e => e.FLOATCOL)
                    .HasPrecision(38, 0);

    The annotation is emitted by the entity designer because it is necessary to preserve type fidelity with the source database column.
    If the annotation is removed, the FLOATCOL property in the generated class would map to an Oracle number(38) column. But, of course, that is not what the source column is in this case.
    For example, this would be a problem if a database initializer was subsequently used to re-create the database or if a script was generated via migrations using the class without the annotation.
    It's interesting that the error message refers to SqlServer.float type.
    I'll try to investigate a bit more...

  • Custom mapping is obviously not reflected in the Entity Framework designer

    Hi,
    I use the Oracle Data Provider for .NET 11.2.0.2.50 Beta 3 with the Entity Framework. I added a custom mapping to the app.config that maps NUMBER(1,0) to bool:
    <oracle.dataaccess.client>
    <settings>
    <add name="bool" value="edmmapping number(1,0)" />
    </settings>
    </oracle.dataaccess.client>
    When I create an Entity Framework model from my Oracle database the EF designer uses Int16 for NUMBER(1,0) fields instead of bool. If I run the program I then get an exception (as expected):
    "Schema specified is not valid. Errors:
    EntityFrameworkTest.msl(7,12) : error 2019: Member Mapping specified is not valid. The type 'Edm.Int16[Nullable=True,DefaultValue=]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.CUSTOMER' is not compatible with 'OracleEFProvider.number[Nullable=True,DefaultValue=,Precision=1,Scale=0]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.Store.CUSTOMERS'."
    Okay. Assuming it's an error in the EF designer, I set the type Boolean in the model myself for the NUMBER(1,0) fields. But that gives me a compilation error:
    "Error 2019: Member Mapping specified is not valid. The type 'Edm.Boolean[Nullable=True,DefaultValue=]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.CUSTOMER' is not compatible with 'OracleEFProvider.number[Nullable=True,DefaultValue=,Precision=1,Scale=0]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.Store.CUSTOMERS'."
    Is this a bug in the provider? Or am I missing something?

    Are you using model first or database first? If you're using database first, make sure you update the model from the database after adding that configuration.
    Also, if your model is in a different assembly (ie a different project) from your executable, your executable project's configuration file also needs the mapping section.
    Finally... there's been a LOT of threads about this not working properly in beta 3. I'm still on beta 2 and except for some incorrect error messages in the designer it works fine (I get fake errors). If nothing else works, I might suggest trying beta 2 as a last resort.

  • BugCheck 0x0000007a Sudden restart

    Hi,
    Today Moring while Checking Server 2008R2 found an error Message which Shared below.
    The computer has rebooted from a bugcheck.  The bugcheck was: 0x0000007a (0xfffff6fc400083d0, 0xffffffffc000009d, 0x000000016ab0c860, 0xfffff8800107a210). A dump was saved in: C:\Windows\MEMORY.DMP.
    Report Id: 070914-46379-01.
    After Checking Forums and searches found the possibilities like;
    1.Antivirus 2.Paging file not enough 3.RAM Problem 4.HDD Problem
    As I analyze All the Event before it restarts I found  Error Event ID 2019 (The server was unable to allocate from the system non paged pool because the pool was empty.)
    Error Event ID 51 (An error was detected on device \Device\Harddisk0\DR0 during a paging operation)
    Checkd Memory.DMP found partmgr.sys Problem, contacted Hardware manufacturer and Shred the Details of Event ID 51, collected the hardware Logs using Manufacturer tool and shared them, now the are saying its not an issue of Hardware there must some Issue
    with Operating System ! They did not found any logs in there tools for hardware,like Array status was fine, Code for HDD, Controller and Back Pane are in updated State. No Logs found for RAM too in tool.
    One application Runs On the System (A local Mail Application) it Consumes Memory day-By day I have Monitored this every morning. Due to This Application vendor suggested to take restart of the Service before working hours get Started; i forgotten to do from
    last 3 days (Or I was just checking really this App has that kind of bug !!!)
    This would be a Cause of this restart ?? Like Memory for paging reached to their limit and Server behaved like this ?

    Hi Swapz,
    Regarding to Bug Check 0x7A, please refer to following article.
    Bug Check 0x7A: KERNEL_DATA_INPAGE_ERROR
    For Event ID 2019 and 51, please refer to following articles and check if can help you.
    Nonpaged
    Pool Resource Allocation Error (SRV Error 2019)
    Understanding
    Pool Consumption and Event ID: 2020 or 2019
    Information about Event ID 51
    On current situation, would you please let me know whether all necessary updates had been installed on the
    Windows Server 2008 R2?
    à
    Checkd Memory.DMP found partmgr.sys Problem
    Please run
    sfc /scannow command to scan all protected system files. In addition, did you have another Windows Server 2008 R2 computer which work as normal? Please follow the path:
    C:\Windows\System32\drivers directory and navigate to partmgr.sys file on the problematic server 2008 r2. Then compare this partmgr.sys file with another one on the good server. Any difference?
    à
    I forgotten to do from last 3 days (Or I was just checking really this App has that kind of bug!!!). This would be a Cause of this restart?? Like Memory for paging reached to their limit and Server behaved like this?
    It’s hard to say. You can take restart of the Service before working hours get started as normal and check
    if this issue disappeared. Then reproduce the process (as you described: forgotten to do from last 3 days). Will this sudden restart issue occurred again? If occurred, this issue may be related to this third-party application (A local Mail Application) as
    you guessed.
    By the way, analyzing the crash dump file will be a effective way that help us to narrow down the root cause of the issue. Actually, it is not effective for us to debug the
    crash dump file here in the forum. If this issues is a state of emergency for you. Please contact Microsoft Customer Service and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request, please refer to the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    Hope this helps.
    Best regards,
    Justin Gu

  • Strange output.. Suggestions?

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    I have a user that is seeing this kind of out put out of no where.
    Start Time: 0
    FS_PUBLIC_READ04222013021758PM
    Starting Load...
    * VERIFY VERSION COMPATABILITY *
    Verify Version Time: 0
    * LOCATE SETTING SOURCE *
    Locate Setting Time: .00001
    Locate Setting Return: Error: -2019 ORA-02019: connection description for r
    emote database not found
    Link Table Count = 2
    1 FIADB  Y 0
    ORA-02019: connection description for remote database not found Select Stat
    ement: SELECT COUNT(1) FROM (SELECT P.STATECD, P.UNITCD, P.COUNTYCD, P.CYCL
    E, P.SUBCYCLE, P.PLOT, P.MEASYEAR, P.MEASMON, P.MEASDAY, P.MANUAL, P.CN FRO
    M FIADB.NIMS_NRIS_PLOT_VW@NRV_FIA_FIADB P, FIADB.NIMS_NRIS_COND_VW@NRV_FIA_
    FIADB C, FIADB.NIMS_NRIS_SURVEY_VW@NRV_FIA_FIADB S where p.cn = '4041000301
    0690' and c.plt_cn = p.cn and s.cn = p.srv_cn  GROUP BY P.STATECD, P.UNITCD
    , P.COUNTYCD, P.CYCLE, P.SUBCYCLE, P.PLOT, P.MEASYEAR, P.MEASMON, P.MEASDAY
    , P.MANUAL, P.CN)
    2 RMRS   1
    2
    * POPULATING SETTING DATA *
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 223010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 224010848
    * SETTING TABLE IS LOADED *
    Populate Setting Time: .00004
    * EXECUTE LOAD *
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102496010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 101533444010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100189313010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 111150042010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100340573010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100340574010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102497010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102498010848
    starts
    ...I can paste the whole thing, but it literally scrolls for like 24 pages.
    So if someone REALLY needs to see it, let me know...
    But No packages have changed since February in the database. I asked him if he had set serveroutput on. And he doesn't.
    Anyone recognize this form of output? I have been digging at this since 6AM, and I'm getting no where fast.
    Thanks.

    LostInPermuation wrote:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    I have a user that is seeing this kind of out put out of no where.
    Start Time: 0
    FS_PUBLIC_READ04222013021758PM
    Starting Load...
    * VERIFY VERSION COMPATABILITY *
    Verify Version Time: 0
    * LOCATE SETTING SOURCE *
    Locate Setting Time: .00001
    Locate Setting Return: Error: -2019 ORA-02019: connection description for r
    emote database not found
    Link Table Count = 2
    1 FIADB  Y 0
    ORA-02019: connection description for remote database not found Select Stat
    ement: SELECT COUNT(1) FROM (SELECT P.STATECD, P.UNITCD, P.COUNTYCD, P.CYCL
    E, P.SUBCYCLE, P.PLOT, P.MEASYEAR, P.MEASMON, P.MEASDAY, P.MANUAL, P.CN FRO
    M FIADB.NIMS_NRIS_PLOT_VW@NRV_FIA_FIADB P, FIADB.NIMS_NRIS_COND_VW@NRV_FIA_
    FIADB C, FIADB.NIMS_NRIS_SURVEY_VW@NRV_FIA_FIADB S where p.cn = '4041000301
    0690' and c.plt_cn = p.cn and s.cn = p.srv_cn  GROUP BY P.STATECD, P.UNITCD
    , P.COUNTYCD, P.CYCLE, P.SUBCYCLE, P.PLOT, P.MEASYEAR, P.MEASMON, P.MEASDAY
    , P.MANUAL, P.CN)
    2 RMRS   1
    2
    * POPULATING SETTING DATA *
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 223010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 224010848
    * SETTING TABLE IS LOADED *
    Populate Setting Time: .00004
    * EXECUTE LOAD *
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102496010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 101533444010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100189313010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 111150042010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100340573010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 100340574010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102497010848
    starts
    after parse
    after define
    after execute_and_fetch
    after column_value
    after vc_global_id 201102498010848
    starts
    ...I can paste the whole thing, but it literally scrolls for like 24 pages.
    So if someone REALLY needs to see it, let me know...
    But No packages have changed since February in the database. I asked him if he had set serveroutput on. And he doesn't.
    Anyone recognize this form of output? I have been digging at this since 6AM, and I'm getting no where fast.
    Thanks.As to why it should suddenly spew out on your user would be more of an application question, but the query shows some references to db_links, and a google of the error message (ORA-02019) seems to indicate that perhaps something happened to the tnsnames file on the server where this query was executing.

  • RE: forte-users-digest Digest V00 #186

    Just a follow up to the TIFF Problem.
    Try using the WANG Image edit control (supports 32-bit OLE) Copyright
    Wang Laboratories, Inc. 1995-1996..
    It should be available free on the net or if you have Microsoft Visual
    Studio 6.0 it comes with it. make sure you make the control invisible so
    that it does not show up.
    - Ravi.
    Intel Corporation.
    -----Original Message-----
    From: forte-users-digest-requestlists.xpedior.com
    [SMTP:forte-users-digest-requestlists.xpedior.com]
    Sent: Wednesday, May 17, 2000 8:05 AM
    To: forte-users-digestlists.xpedior.com
    Subject: forte-users-digest Digest V00 #186
    forte-users-digest Digest Volume 00 : Issue
    186
    Today's Topics:
    RE: forte-users-digest Digest V00 #185
    Intermittent database problems
    Administrivia:
    * BEFORE YOU ASK - please search the archives at:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive
    * To unsubscribe, send in a new email the word 'Unsubscribe' to:
    forte-users-digest-requestlists.xpedior.com
    Date: Tue, 16 May 2000 18:30:00 -0700
    From: "Balakrishna, RavikumarX" <ravikumarx.balakrishnaintel.com>
    To: forte-userslists.xpedior.com, forte-users-digestlists.xpedior.com
    Subject: RE: forte-users-digest Digest V00 #185
    Message-ID:
    <0428AD6295E1D211AC4400A0C969E8A2045C29FAorsmsx43.jf.intel.com>
    Content-Type: text/plain
    Hi,
    The only work around I can see to your problem is to convert the TIFF
    to
    any other format that forte supports. You could use Microsoft's Image
    Composer to do this. As far as I can see your requirement is runtime. I
    would suggest using Windows imaging ( an image edit control, that is an
    active-x control ). Use this control to perform a SaveAs operation on the
    TIFF file to save it as a GIF and then use the converted GIF to place it
    in
    your Forte Object. I know it works in C++ so it should surely work in
    forte too. I don't have the documentation for the image edit control,
    but
    Iam sure there are lot of similar controls out there . And make sure
    you
    save the file in a format that supports mutiple page formats. ( i.e
    prefer
    GIF to BMP when you convert)
    Hope this Helps,
    - Ravi Balakrishna
    Automation Software Engineer
    Intel Corporation.
    -----Original Message-----
    From: forte-users-digest-requestlists.xpedior.com
    [SMTP:forte-users-digest-requestlists.xpedior.com]
    Sent: Tuesday, May 16, 2000 3:05 PM
    To: forte-users-digestlists.xpedior.com
    Subject: forte-users-digest Digest V00 #185
    forte-users-digest Digest Volume 00 : Issue
    185
    Today's Topics:
    Tiff images again.....
    Administrivia:
    * BEFORE YOU ASK - please search the archives at:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive
    * To unsubscribe, send in a new email the word 'Unsubscribe' to:
    forte-users-digest-requestlists.xpedior.com
    Date: Tue, 16 May 2000 11:07:25 -0400
    From: "Jones, Gail A" <gail.joneseds.com>
    To: "'kamranaminyahoo.com'" <kamranaminyahoo.com>
    Subject: Tiff images again.....
    Message-ID: <F455E4114C4AD211BCDF00805F31BCF305C206DCUSSAM203>
    Content-Type: text/plain;
    charset="iso-8859-1"
    I need to place TIFF images in a Forte Object to display on a client
    window.
    Does anyone have any tips or code that you would be willing to sharethat
    can help me do that. I checked with Forte the other day and found theydo
    not support the TIFF format.
    Thanks much,
    Gail Jones
    EDS Medi-Cal
    Sacramento, Ca.
    End of forte-users-digest Digest V00 Issue #185
    Date: Wed, 17 May 2000 08:34:01 -0600
    From: joe.wolfesasktel.sk.ca
    To: kamranaminyahoo.com
    Subject: Intermittent database problems
    Message-Id: <062568E2.00500AC5.00regn0683nt.sasktel.sk.ca>
    Content-Type: text/plain; charset=us-ascii
    Content-Disposition: inline
    We have a Forte server running on HP_UX 10.2. It connects to an Oracle
    database
    on AIX. Over the past several months we have received intermittent
    failures
    that neither we nor our Oracle support team have been able to resolve
    (example
    below). Prior to the error occuring the partition can be operating
    successfully for several days. When this error occurs the IsConnected
    instrument on the DBSession is still shown as TRUE, and there are no error
    counts on the instruments. After cycling the partition everything runs
    fine for
    between a day and a month. If anybody has a resolution, or even a good
    hunch
    I'd appreciate hearing it.
    Attached to manager for node capri.
    SYSTEM ERROR: OpenCursor failed for SQL statement in project CTISvcs,
    class
    LookUpInfoMgr, method LoadAgent, methodId 4, line 55, error from
    database is:
    ORA-02019: connection description for remote database not found
    Class: qqdb_ResourceException
    Detected at: qqdb_OracleVendorInfo::DoOexn
    Error Time: Wed May 17 07:42:42
    Oracle error: 2019, Server: DBP13, UserName: forte_c3
    Database Statement: select a.cctr_agt_id CareCentreAgentID , a.emp_id
    EmployeeID , a.eff_fr_dat EffectiveFromDate , a.eff_to_dat
    EffectiveToDate
    , a.cctr_agt_gr_id CareCentreGroupID , RTrim ( InitCap ( b.fst_nm )
    EmployeeFirstName , RTrim ( InitCap ( b.srnm ) ) EmployeeLastName
    from
    t_cctr_agt a , t_emp b where a.emp_id = b.emp_id
    Exception occurred (locally) on partition "TServRM1_cl0_Part2",
    (partitionId = A5E41FA0-D91F-11D3-8F7D-FFCBBA23AA77:0x31d, taskId =
    [A5E41FA0-D91F-11D3-8F7D-FFCBBA23AA77:0x320.777]) in application
    "TServRM1_cl0", pid 24249 on node capri in environment prodenv.
    TIA,
    Joe Wolfe, External Programmer Analyst
    SaskTel
    email: joe.wolfesasktel.sk.ca
    End of forte-users-digest Digest V00 Issue #186

    Just a follow up to the TIFF Problem.
    Try using the WANG Image edit control (supports 32-bit OLE) Copyright
    Wang Laboratories, Inc. 1995-1996..
    It should be available free on the net or if you have Microsoft Visual
    Studio 6.0 it comes with it. make sure you make the control invisible so
    that it does not show up.
    - Ravi.
    Intel Corporation.
    -----Original Message-----
    From: forte-users-digest-requestlists.xpedior.com
    [SMTP:forte-users-digest-requestlists.xpedior.com]
    Sent: Wednesday, May 17, 2000 8:05 AM
    To: forte-users-digestlists.xpedior.com
    Subject: forte-users-digest Digest V00 #186
    forte-users-digest Digest Volume 00 : Issue
    186
    Today's Topics:
    RE: forte-users-digest Digest V00 #185
    Intermittent database problems
    Administrivia:
    * BEFORE YOU ASK - please search the archives at:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive
    * To unsubscribe, send in a new email the word 'Unsubscribe' to:
    forte-users-digest-requestlists.xpedior.com
    Date: Tue, 16 May 2000 18:30:00 -0700
    From: "Balakrishna, RavikumarX" <ravikumarx.balakrishnaintel.com>
    To: forte-userslists.xpedior.com, forte-users-digestlists.xpedior.com
    Subject: RE: forte-users-digest Digest V00 #185
    Message-ID:
    <0428AD6295E1D211AC4400A0C969E8A2045C29FAorsmsx43.jf.intel.com>
    Content-Type: text/plain
    Hi,
    The only work around I can see to your problem is to convert the TIFF
    to
    any other format that forte supports. You could use Microsoft's Image
    Composer to do this. As far as I can see your requirement is runtime. I
    would suggest using Windows imaging ( an image edit control, that is an
    active-x control ). Use this control to perform a SaveAs operation on the
    TIFF file to save it as a GIF and then use the converted GIF to place it
    in
    your Forte Object. I know it works in C++ so it should surely work in
    forte too. I don't have the documentation for the image edit control,
    but
    Iam sure there are lot of similar controls out there . And make sure
    you
    save the file in a format that supports mutiple page formats. ( i.e
    prefer
    GIF to BMP when you convert)
    Hope this Helps,
    - Ravi Balakrishna
    Automation Software Engineer
    Intel Corporation.
    -----Original Message-----
    From: forte-users-digest-requestlists.xpedior.com
    [SMTP:forte-users-digest-requestlists.xpedior.com]
    Sent: Tuesday, May 16, 2000 3:05 PM
    To: forte-users-digestlists.xpedior.com
    Subject: forte-users-digest Digest V00 #185
    forte-users-digest Digest Volume 00 : Issue
    185
    Today's Topics:
    Tiff images again.....
    Administrivia:
    * BEFORE YOU ASK - please search the archives at:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive
    * To unsubscribe, send in a new email the word 'Unsubscribe' to:
    forte-users-digest-requestlists.xpedior.com
    Date: Tue, 16 May 2000 11:07:25 -0400
    From: "Jones, Gail A" <gail.joneseds.com>
    To: "'kamranaminyahoo.com'" <kamranaminyahoo.com>
    Subject: Tiff images again.....
    Message-ID: <F455E4114C4AD211BCDF00805F31BCF305C206DCUSSAM203>
    Content-Type: text/plain;
    charset="iso-8859-1"
    I need to place TIFF images in a Forte Object to display on a client
    window.
    Does anyone have any tips or code that you would be willing to sharethat
    can help me do that. I checked with Forte the other day and found theydo
    not support the TIFF format.
    Thanks much,
    Gail Jones
    EDS Medi-Cal
    Sacramento, Ca.
    End of forte-users-digest Digest V00 Issue #185
    Date: Wed, 17 May 2000 08:34:01 -0600
    From: joe.wolfesasktel.sk.ca
    To: kamranaminyahoo.com
    Subject: Intermittent database problems
    Message-Id: <062568E2.00500AC5.00regn0683nt.sasktel.sk.ca>
    Content-Type: text/plain; charset=us-ascii
    Content-Disposition: inline
    We have a Forte server running on HP_UX 10.2. It connects to an Oracle
    database
    on AIX. Over the past several months we have received intermittent
    failures
    that neither we nor our Oracle support team have been able to resolve
    (example
    below). Prior to the error occuring the partition can be operating
    successfully for several days. When this error occurs the IsConnected
    instrument on the DBSession is still shown as TRUE, and there are no error
    counts on the instruments. After cycling the partition everything runs
    fine for
    between a day and a month. If anybody has a resolution, or even a good
    hunch
    I'd appreciate hearing it.
    Attached to manager for node capri.
    SYSTEM ERROR: OpenCursor failed for SQL statement in project CTISvcs,
    class
    LookUpInfoMgr, method LoadAgent, methodId 4, line 55, error from
    database is:
    ORA-02019: connection description for remote database not found
    Class: qqdb_ResourceException
    Detected at: qqdb_OracleVendorInfo::DoOexn
    Error Time: Wed May 17 07:42:42
    Oracle error: 2019, Server: DBP13, UserName: forte_c3
    Database Statement: select a.cctr_agt_id CareCentreAgentID , a.emp_id
    EmployeeID , a.eff_fr_dat EffectiveFromDate , a.eff_to_dat
    EffectiveToDate
    , a.cctr_agt_gr_id CareCentreGroupID , RTrim ( InitCap ( b.fst_nm )
    EmployeeFirstName , RTrim ( InitCap ( b.srnm ) ) EmployeeLastName
    from
    t_cctr_agt a , t_emp b where a.emp_id = b.emp_id
    Exception occurred (locally) on partition "TServRM1_cl0_Part2",
    (partitionId = A5E41FA0-D91F-11D3-8F7D-FFCBBA23AA77:0x31d, taskId =
    [A5E41FA0-D91F-11D3-8F7D-FFCBBA23AA77:0x320.777]) in application
    "TServRM1_cl0", pid 24249 on node capri in environment prodenv.
    TIA,
    Joe Wolfe, External Programmer Analyst
    SaskTel
    email: joe.wolfesasktel.sk.ca
    End of forte-users-digest Digest V00 Issue #186

  • JMS Channel error reson code : 2019

    JMS Channel is throwing error with an reason code : 2019.
    Decription for reason code 2019 is : The object handle Hobj is not valid, for one of the following reasons:
    The parameter pointer is not valid, or (for the  MQOPEN  call) points to read-only storage. (It is not always possible to detect parameter pointers that are not valid; if not detected, unpredictable results occur.)
    The value specified was not returned by a preceding  MQOPEN  call.
    The value specified has been made invalid by a preceding  MQCLOSE  call.
    The handle is a shared handle that has been made invalid by another thread issuing the  MQCLOSE  call.
    The handle is a nonshared handle that is being used a thread that did not create the handle.
    The call is  MQGET  or  MQPUT , but the object represented by the handle is not a queue.
    Can any one tell me what is to be done to fix this error.
    Thanks in advance.

    Hi
    Yes this is an MQ Series "Reason Code", Where each reason code for failing is assigned a number. For this one please refer to the following link:
    http://www-01.ibm.com/support/docview.wss?uid=swg21229508
    For all reason codes have a look at:
    http://middleware.its.state.nc.us/middleware/Documentation/en_US/htm/csqzak06/csqzak065m.htm
    Thanks
    Damien

  • Java Client AUthentication to IIS 5 server throwing no IV for Cipher error

    I have trying to do Java client authentication. Got the Certificate from CA and loaded it in server. When I run the JavaClient program I get the
    error no IV for Cipher.
    I am using JDK 1.5.0_06 and JSSE 1.0.3_03.
    Any help is greatly appreciated.
    Thanks
    Here is the debug report
    trustStore is: C:\JTEST\cacerts
    trustStore type is : JKS
    trustStore provider is :
    init truststore
    adding as trusted cert:
    Subject: CN=devclient.test.com, OU=Mycompany, O=Second Data Corporation., L=San Francisco, ST=California, C=US
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    Algorithm: RSA; Serial number: 0x5b0bf
    Valid from Thu Feb 16 06:23:37 PST 2006 until Sat Feb 17 06:23:37 PST 2007
    adding as trusted cert:
    Subject: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Issuer: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Algorithm: RSA; Serial number: 0x1
    Valid from Fri Jun 25 17:19:54 PDT 1999 until Tue Jun 25 17:19:54 PDT 2019
    adding as trusted cert:
    Subject: CN=Baltimore CyberTrust Code Signing Root, OU=CyberTrust, O=Baltimore, C=IE
    Issuer: CN=Baltimore CyberTrust Code Signing Root, OU=CyberTrust, O=Baltimore, C=IE
    Algorithm: RSA; Serial number: 0x20000bf
    Valid from Wed May 17 07:01:00 PDT 2000 until Sat May 17 16:59:00 PDT 2025
    adding as trusted cert:
    Subject: CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), O=Entrust.net, C=US
    Issuer: CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), O=Entrust.net, C=US
    Algorithm: RSA; Serial number: 0x374ad243
    Valid from Tue May 25 09:09:40 PDT 1999 until Sat May 25 09:39:40 PDT 2019
    adding as trusted cert:
    Subject: CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE
    Issuer: CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE
    Algorithm: RSA; Serial number: 0x20000b9
    Valid from Fri May 12 11:46:00 PDT 2000 until Mon May 12 16:59:00 PDT 2025
    adding as trusted cert:
    Subject: CN=devclient.paymap.com, OU=First Data Corp, O=Paymap Inc, L=San Francisco, ST=California, C=USA
    Issuer: CN=Thawte Test CA Root, OU=TEST TEST TEST, O=Thawte Certification, ST=FOR TESTING PURPOSES ONLY, C=ZA
    Algorithm: RSA; Serial number: 0xe2501de73ac37428
    Valid from Mon Feb 20 15:51:25 PST 2006 until Mon Mar 13 15:51:25 PST 2006
    adding as trusted cert:
    Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x9b7e0649a33e62b9d5ee90487129ef57
    Valid from Thu Sep 30 17:00:00 PDT 1999 until Wed Jul 16 16:59:59 PDT 2036
    adding as trusted cert:
    Subject: OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US
    Issuer: OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US
    Algorithm: RSA; Serial number: 0x0
    Valid from Tue Jun 29 10:39:16 PDT 2004 until Thu Jun 29 10:39:16 PDT 2034
    adding as trusted cert:
    Subject: [email protected], CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Issuer: [email protected], CN=Thawte Personal Basic CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Algorithm: RSA; Serial number: 0x0
    Valid from Sun Dec 31 16:00:00 PST 1995 until Thu Dec 31 15:59:59 PST 2020
    adding as trusted cert:
    Subject: OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Issuer: OU=Class 3 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x70bae41d10d92934b638ca7b03ccbabf
    Valid from Sun Jan 28 16:00:00 PST 1996 until Tue Aug 01 16:59:59 PDT 2028
    adding as trusted cert:
    Subject: OU=Equifax Secure eBusiness CA-2, O=Equifax Secure, C=US
    Issuer: OU=Equifax Secure eBusiness CA-2, O=Equifax Secure, C=US
    Algorithm: RSA; Serial number: 0x3770cfb5
    Valid from Wed Jun 23 05:14:45 PDT 1999 until Sun Jun 23 05:14:45 PDT 2019
    adding as trusted cert:
    Subject: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    Algorithm: RSA; Serial number: 0x35def4cf
    Valid from Sat Aug 22 09:41:51 PDT 1998 until Wed Aug 22 09:41:51 PDT 2018
    adding as trusted cert:
    Subject: [email protected], CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Issuer: [email protected], CN=Thawte Personal Freemail CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Algorithm: RSA; Serial number: 0x0
    Valid from Sun Dec 31 16:00:00 PST 1995 until Thu Dec 31 15:59:59 PST 2020
    adding as trusted cert:
    Subject: CN=Equifax Secure eBusiness CA-1, O=Equifax Secure Inc., C=US
    Issuer: CN=Equifax Secure eBusiness CA-1, O=Equifax Secure Inc., C=US
    Algorithm: RSA; Serial number: 0x4
    Valid from Sun Jun 20 21:00:00 PDT 1999 until Sat Jun 20 21:00:00 PDT 2020
    adding as trusted cert:
    Subject: [email protected], CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Issuer: [email protected], CN=Thawte Personal Premium CA, OU=Certification Services Division, O=Thawte Consulting, L=Cape Town, ST=Western Cape, C=ZA
    Algorithm: RSA; Serial number: 0x0
    Valid from Sun Dec 31 16:00:00 PST 1995 until Thu Dec 31 15:59:59 PST 2020
    adding as trusted cert:
    Subject: CN=GTE CyberTrust Root 5, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
    Issuer: CN=GTE CyberTrust Root 5, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
    Algorithm: RSA; Serial number: 0x1b6
    Valid from Fri Aug 14 07:50:00 PDT 1998 until Wed Aug 14 16:59:00 PDT 2013
    adding as trusted cert:
    Subject: OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Issuer: OU=Class 1 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0xcdba7f56f0dfe4bc54fe22acb372aa55
    Valid from Sun Jan 28 16:00:00 PST 1996 until Tue Aug 01 16:59:59 PDT 2028
    adding as trusted cert:
    Subject: CN=GTE CyberTrust Root, O=GTE Corporation, C=US
    Issuer: CN=GTE CyberTrust Root, O=GTE Corporation, C=US
    Algorithm: RSA; Serial number: 0x1a3
    Valid from Fri Feb 23 15:01:00 PST 1996 until Thu Feb 23 15:59:00 PST 2006
    adding as trusted cert:
    Subject: CN=Entrust.net Secure Server Certification Authority, OU=(c) 2000 Entrust.net Limited, OU=www.entrust.net/SSL_CPS incorp. by ref. (limits liab.), O=Entrust.net
    Issuer: CN=Entrust.net Secure Server Certification Authority, OU=(c) 2000 Entrust.net Limited, OU=www.entrust.net/SSL_CPS incorp. by ref. (limits liab.), O=Entrust.net
    Algorithm: RSA; Serial number: 0x389b113c
    Valid from Fri Feb 04 09:20:00 PST 2000 until Tue Feb 04 09:50:00 PST 2020
    adding as trusted cert:
    Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Issuer: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 3 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x7dd9fe07cfa81eb7107967fba78934c6
    Valid from Sun May 17 17:00:00 PDT 1998 until Tue Aug 01 16:59:59 PDT 2028
    adding as trusted cert:
    Subject: [email protected], CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Issuer: [email protected], CN=Thawte Premium Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Algorithm: RSA; Serial number: 0x1
    Valid from Wed Jul 31 17:00:00 PDT 1996 until Thu Dec 31 15:59:59 PST 2020
    adding as trusted cert:
    Subject: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
    Issuer: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
    Algorithm: RSA; Serial number: 0x2ad667e4e45fe5e576f3c98195eddc0
    Valid from Tue Nov 08 16:00:00 PST 1994 until Thu Jan 07 15:59:59 PST 2010
    adding as trusted cert:
    Subject: CN=Entrust.net Client Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/Client_CA_Info/CPS incorp. by ref. limits liab., O=Entrust.net, C=US
    Issuer: CN=Entrust.net Client Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/Client_CA_Info/CPS incorp. by ref. limits liab., O=Entrust.net, C=US
    Algorithm: RSA; Serial number: 0x380391ee
    Valid from Tue Oct 12 12:24:30 PDT 1999 until Sat Oct 12 12:54:30 PDT 2019
    adding as trusted cert:
    Subject: CN=Entrust.net Client Certification Authority, OU=(c) 2000 Entrust.net Limited, OU=www.entrust.net/GCCA_CPS incorp. by ref. (limits liab.), O=Entrust.net
    Issuer: CN=Entrust.net Client Certification Authority, OU=(c) 2000 Entrust.net Limited, OU=www.entrust.net/GCCA_CPS incorp. by ref. (limits liab.), O=Entrust.net
    Algorithm: RSA; Serial number: 0x389ef6e4
    Valid from Mon Feb 07 08:16:40 PST 2000 until Fri Feb 07 08:46:40 PST 2020
    adding as trusted cert:
    Subject: OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Issuer: OU=Class 2 Public Primary Certification Authority, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x2d1bfc4a178da391ebe7fff58b45be0b
    Valid from Sun Jan 28 16:00:00 PST 1996 until Tue Aug 01 16:59:59 PDT 2028
    adding as trusted cert:
    Subject: CN=VeriSign Class 2 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Issuer: CN=VeriSign Class 2 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x6170cb498c5f984529e7b0a6d9505b7a
    Valid from Thu Sep 30 17:00:00 PDT 1999 until Wed Jul 16 16:59:59 PDT 2036
    adding as trusted cert:
    Subject: CN=GTE CyberTrust Global Root, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
    Issuer: CN=GTE CyberTrust Global Root, OU="GTE CyberTrust Solutions, Inc.", O=GTE Corporation, C=US
    Algorithm: RSA; Serial number: 0x1a5
    Valid from Wed Aug 12 17:29:00 PDT 1998 until Mon Aug 13 16:59:00 PDT 2018
    adding as trusted cert:
    Subject: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Issuer: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Algorithm: RSA; Serial number: 0x1
    Valid from Wed Jul 31 17:00:00 PDT 1996 until Thu Dec 31 15:59:59 PST 2020
    adding as trusted cert:
    Subject: CN=GeoTrust Global CA, O=GeoTrust Inc., C=US
    Issuer: CN=GeoTrust Global CA, O=GeoTrust Inc., C=US
    Algorithm: RSA; Serial number: 0x23456
    Valid from Mon May 20 21:00:00 PDT 2002 until Fri May 20 21:00:00 PDT 2022
    adding as trusted cert:
    Subject: CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net
    Issuer: CN=Entrust.net Certification Authority (2048), OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), O=Entrust.net
    Algorithm: RSA; Serial number: 0x3863b966
    Valid from Fri Dec 24 09:50:51 PST 1999 until Tue Dec 24 10:20:51 PST 2019
    adding as trusted cert:
    Subject: CN=Equifax Secure Global eBusiness CA-1, O=Equifax Secure Inc., C=US
    Issuer: CN=Equifax Secure Global eBusiness CA-1, O=Equifax Secure Inc., C=US
    Algorithm: RSA; Serial number: 0x1
    Valid from Sun Jun 20 21:00:00 PDT 1999 until Sat Jun 20 21:00:00 PDT 2020
    adding as trusted cert:
    Subject: OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US
    Issuer: OU=Go Daddy Class 2 Certification Authority, O="The Go Daddy Group, Inc.", C=US
    Algorithm: RSA; Serial number: 0x0
    Valid from Tue Jun 29 10:06:20 PDT 2004 until Thu Jun 29 10:06:20 PDT 2034
    adding as trusted cert:
    Subject: CN=VeriSign Class 1 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Issuer: CN=VeriSign Class 1 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x8b5b75568454850b00cfaf3848ceb1a4
    Valid from Thu Sep 30 17:00:00 PDT 1999 until Wed Jul 16 16:59:59 PDT 2036
    adding as trusted cert:
    Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Issuer: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 2 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0xb92f60cc889fa17a4609b85b706c8aaf
    Valid from Sun May 17 17:00:00 PDT 1998 until Tue Aug 01 16:59:59 PDT 2028
    adding as trusted cert:
    Subject: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 1 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Issuer: OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 1 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US
    Algorithm: RSA; Serial number: 0x4cc7eaaa983e71d39310f83d3a899192
    Valid from Sun May 17 17:00:00 PDT 1998 until Tue Aug 01 16:59:59 PDT 2028
    trigger seeding of SecureRandom
    done seeding SecureRandom
    main, setSoTimeout(50000) called
    TIMEOUT=50000
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1123703368 bytes = { 11, 7, 242, 147, 134, 10, 57, 192, 137, 131, 191, 249, 253, 146, 232, 223, 146, 195, 53, 255, 121, 236, 182, 158, 191, 94, 156, 190 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    main, WRITE: TLSv1 Handshake, length = 73
    main, WRITE: SSLv2 client hello message, length = 98
    main, READ: TLSv1 Handshake, length = 873
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1123703296 bytes = { 123, 165, 102, 102, 169, 196, 229, 241, 3, 49, 81, 239, 83, 155, 209, 243, 236, 229, 18, 193, 228, 104, 27, 152, 232, 193, 173, 11 }
    Session ID: {147, 24, 0, 0, 22, 29, 124, 158, 177, 166, 96, 36, 217, 32, 191, 41, 36, 217, 54, 244, 11, 56, 214, 139, 133, 140, 38, 132, 157, 77, 87, 77}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V3
    Subject: CN=www.just-in-time-eft-paymap.com, OU=Paymap, O=First Data Corporation., L=San Francisco, ST=California, C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 1024 bits
    modulus: 115897801846480906504507305240934762652258285705294305856746227593079520228602278416768070978663757452626836382370415992468189745643687252249588163510925353035555192020212360325664657305599855674966873189987712512397233103225326014387972568754281141553272745093478026229567341632738641376167448499163118598699
    public exponent: 65537
    Validity: [From: Mon Sep 12 11:37:51 PDT 2005,
                   To: Sun Nov 12 11:37:51 PST 2006]
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    SerialNumber: [    057aa7]
    Certificate Extensions: 5
    [1]: ObjectId: 2.5.29.14 Criticality=false
    SubjectKeyIdentifier [
    KeyIdentifier [
    0000: FC 76 D2 8C C3 DE 0D 8F EA 32 26 60 83 C9 8B 9C .v.......2&`....
    0010: C6 E6 BB 57 ...W
    [2]: ObjectId: 2.5.29.35 Criticality=false
    AuthorityKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [3]: ObjectId: 2.5.29.31 Criticality=false
    CRLDistributionPoints [
    [DistributionPoint:
    [URIName: http://crl.geotrust.com/crls/secureca.crl]
    [4]: ObjectId: 2.5.29.37 Criticality=false
    ExtendedKeyUsages [
    [1.3.6.1.5.5.7.3.1, 1.3.6.1.5.5.7.3.2]]
    [5]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
    DigitalSignature
    Non_repudiation
    Key_Encipherment
    Data_Encipherment
    Algorithm: [SHA1withRSA]
    Signature:
    0000: 44 D7 B0 69 BF B0 AA 4D 5A 17 70 9C 37 BA 61 A2 D..i...MZ.p.7.a.
    0010: 57 B4 34 85 6D 59 1F 82 72 34 9B 92 7D BD DF 27 W.4.mY..r4.....'
    0020: CE 97 E3 CA AE 23 5D 85 3C 1A C6 19 D1 49 C2 3F .....#].<....I.?
    0030: C6 E2 7E 97 8D 63 94 1E 04 AC 9F 5F 37 08 2A 96 .....c....._7.*.
    0040: 1A 47 D1 9D 69 0C 71 6A F3 74 1C FF 7D 20 E1 CA .G..i.qj.t... ..
    0050: 75 D0 45 84 2E 11 3C DD D4 73 25 38 76 27 E0 73 u.E...<..s%8v'.s
    0060: 70 AC 70 0F A5 E3 5B 9D 7E 0E AB 6A 79 07 18 38 p.p...[....jy..8
    0070: 5B A1 63 A2 89 8C 96 A1 50 36 4C D2 C6 D5 27 25 [.c.....P6L...'%
    Found trusted certificate:
    Version: V3
    Subject: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 1024 bits
    modulus: 135786214035069526348186531221551781468391756233528066061569654028671100866720352830303278016129003918213826297308054231261658522889438712013757624116391437358730449661353175673177742307421061340003741057138887918110217006515773038453829253517076741780039735595086881329494037450587568122088113584549069375417
    public exponent: 65537
    Validity: [From: Sat Aug 22 09:41:51 PDT 1998,
                   To: Wed Aug 22 09:41:51 PDT 2018]
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    SerialNumber: [    35def4cf]
    Certificate Extensions: 7
    [1]: ObjectId: 1.2.840.113533.7.65.0 Criticality=false
    Extension unknown: DER encoded OCTET string =
    0000: 04 0D 30 0B 1B 05 56 33 2E 30 63 03 02 06 C0 ..0...V3.0c....
    [2]: ObjectId: 2.5.29.14 Criticality=false
    SubjectKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [3]: ObjectId: 2.5.29.35 Criticality=false
    AuthorityKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [4]: ObjectId: 2.5.29.31 Criticality=false
    CRLDistributionPoints [
    [DistributionPoint:
    [CN=CRL1, OU=Equifax Secure Certificate Authority, O=Equifax, C=US]
    [5]: ObjectId: 2.5.29.15 Criticality=false
    KeyUsage [
    Key_CertSign
    Crl_Sign
    [6]: ObjectId: 2.5.29.16 Criticality=false
    PrivateKeyUsage: [
    To: Wed Aug 22 09:41:51 PDT 2018]
    [7]: ObjectId: 2.5.29.19 Criticality=false
    BasicConstraints:[
    CA:true
    PathLen:2147483647
    Algorithm: [SHA1withRSA]
    Signature:
    0000: 58 CE 29 EA FC F7 DE B5 CE 02 B9 17 B5 85 D1 B9 X.).............
    0010: E3 E0 95 CC 25 31 0D 00 A6 92 6E 7F B6 92 63 9E ....%1....n...c.
    0020: 50 95 D1 9A 6F E4 11 DE 63 85 6E 98 EE A8 FF 5A P...o...c.n....Z
    0030: C8 D3 55 B2 66 71 57 DE C0 21 EB 3D 2A A7 23 49 ..U.fqW..!.=*.#I
    0040: 01 04 86 42 7B FC EE 7F A2 16 52 B5 67 67 D3 40 ...B......R.gg.@
    0050: DB 3B 26 58 B2 28 77 3D AE 14 77 61 D6 FA 2A 66 .;&X.(w=..wa..*f
    0060: 27 A0 0D FA A7 73 5C EA 70 F1 94 21 65 44 5F FA '....s\.p..!eD_.
    0070: FC EF 29 68 A9 A2 87 79 EF 79 EF 4F AC 07 77 38 ..)h...y.y.O..w8
    *** ServerHelloDone
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    Random Secret: { 3, 1, 82, 2, 69, 241, 210, 36, 175, 168, 76, 86, 170, 3, 158, 52, 89, 146, 84, 210, 223, 113, 212, 231, 129, 100, 177, 125, 116, 31, 97, 233, 150, 162, 161, 51, 168, 189, 14, 47, 83, 27, 67, 252, 172, 191, 102, 39 }
    main, WRITE: TLSv1 Handshake, length = 134
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 52 02 45 F1 D2 24 AF A8 4C 56 AA 03 9E 34 ..R.E..$..LV...4
    0010: 59 92 54 D2 DF 71 D4 E7 81 64 B1 7D 74 1F 61 E9 Y.T..q...d..t.a.
    0020: 96 A2 A1 33 A8 BD 0E 2F 53 1B 43 FC AC BF 66 27 ...3.../S.C...f'
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 43 FA 5A 48 0B 07 F2 93 86 0A 39 C0 89 83 BF F9 C.ZH......9.....
    0010: FD 92 E8 DF 92 C3 35 FF 79 EC B6 9E BF 5E 9C BE ......5.y....^..
    Server Nonce:
    0000: 43 FA 5A 00 7B A5 66 66 A9 C4 E5 F1 03 31 51 EF C.Z...ff.....1Q.
    0010: 53 9B D1 F3 EC E5 12 C1 E4 68 1B 98 E8 C1 AD 0B S........h......
    Master Secret:
    0000: 10 47 C2 16 13 58 4B 50 D3 D6 34 05 C8 C9 11 29 .G...XKP..4....)
    0010: AD 90 0D 8F 9B BD C8 C1 FC CD BC 26 ED FB 26 84 ...........&..&.
    0020: 04 0B 94 BC D2 4D 7D 71 E0 1E 08 10 59 38 B5 4E .....M.q....Y8.N
    Client MAC write Secret:
    0000: A5 66 C1 48 0E F1 18 2B 2B 7A F7 9B A4 6C D7 FA .f.H...++z...l..
    Server MAC write Secret:
    0000: 3B F5 04 FA AC 9C D7 ED 2E E7 36 44 80 FF 11 E2 ;.........6D....
    Client write key:
    0000: 7B 9F 56 A1 FC 3D BD 31 25 27 91 BB D0 66 66 0B ..V..=.1%'...ff.
    Server write key:
    0000: 2B 45 E2 19 E8 C8 61 5B 84 B8 94 76 A1 B4 9C 6E +E....a[...v...n
    ... no IV for cipher
    main, WRITE: TLSv1 Change Cipher Spec, length = 1
    *** Finished
    verify_data: { 110, 253, 95, 109, 150, 89, 93, 140, 108, 186, 172, 188 }
    main, WRITE: TLSv1 Handshake, length = 32
    main, READ: TLSv1 Change Cipher Spec, length = 1
    main, READ: TLSv1 Handshake, length = 32
    *** Finished
    verify_data: { 70, 219, 18, 202, 105, 203, 83, 220, 151, 174, 102, 125 }
    %% Cached client session: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    main, setSoTimeout(50000) called
    main, WRITE: TLSv1 Application Data, length = 96
    main, setSoTimeout(50000) called
    main, READ: TLSv1 Handshake, length = 20
    *** HelloRequest (empty)
    %% Client cached [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    %% Try resuming [Session-1, SSL_RSA_WITH_RC4_128_MD5] from port 1130
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1123703368 bytes = { 242, 6, 117, 127, 243, 197, 134, 82, 139, 54, 241, 243, 132, 22, 63, 136, 4, 180, 225, 8, 159, 55, 182, 105, 133, 226, 213, 167 }
    Session ID: {147, 24, 0, 0, 22, 29, 124, 158, 177, 166, 96, 36, 217, 32, 191, 41, 36, 217, 54, 244, 11, 56, 214, 139, 133, 140, 38, 132, 157, 77, 87, 77}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    main, WRITE: TLSv1 Handshake, length = 121
    main, READ: TLSv1 Handshake, length = 11432
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1123703296 bytes = { 168, 158, 224, 186, 230, 77, 9, 24, 237, 106, 203, 158, 176, 252, 249, 167, 73, 173, 69, 178, 115, 34, 96, 179, 191, 230, 178, 160 }
    Session ID: {3, 27, 0, 0, 51, 252, 181, 131, 214, 28, 220, 247, 154, 175, 51, 237, 76, 111, 88, 78, 28, 105, 106, 114, 42, 51, 53, 144, 178, 93, 245, 127}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-2, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V3
    Subject: CN=www.just-in-time-eft-paymap.com, OU=Paymap, O=First Data Corporation., L=San Francisco, ST=California, C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 1024 bits
    modulus: 115897801846480906504507305240934762652258285705294305856746227593079520228602278416768070978663757452626836382370415992468189745643687252249588163510925353035555192020212360325664657305599855674966873189987712512397233103225326014387972568754281141553272745093478026229567341632738641376167448499163118598699
    public exponent: 65537
    Validity: [From: Mon Sep 12 11:37:51 PDT 2005,
                   To: Sun Nov 12 11:37:51 PST 2006]
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    SerialNumber: [    057aa7]
    Certificate Extensions: 5
    [1]: ObjectId: 2.5.29.14 Criticality=false
    SubjectKeyIdentifier [
    KeyIdentifier [
    0000: FC 76 D2 8C C3 DE 0D 8F EA 32 26 60 83 C9 8B 9C .v.......2&`....
    0010: C6 E6 BB 57 ...W
    [2]: ObjectId: 2.5.29.35 Criticality=false
    AuthorityKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [3]: ObjectId: 2.5.29.31 Criticality=false
    CRLDistributionPoints [
    [DistributionPoint:
    [URIName: http://crl.geotrust.com/crls/secureca.crl]
    [4]: ObjectId: 2.5.29.37 Criticality=false
    ExtendedKeyUsages [
    [1.3.6.1.5.5.7.3.1, 1.3.6.1.5.5.7.3.2]]
    [5]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
    DigitalSignature
    Non_repudiation
    Key_Encipherment
    Data_Encipherment
    Algorithm: [SHA1withRSA]
    Signature:
    0000: 44 D7 B0 69 BF B0 AA 4D 5A 17 70 9C 37 BA 61 A2 D..i...MZ.p.7.a.
    0010: 57 B4 34 85 6D 59 1F 82 72 34 9B 92 7D BD DF 27 W.4.mY..r4.....'
    0020: CE 97 E3 CA AE 23 5D 85 3C 1A C6 19 D1 49 C2 3F .....#].<....I.?
    0030: C6 E2 7E 97 8D 63 94 1E 04 AC 9F 5F 37 08 2A 96 .....c....._7.*.
    0040: 1A 47 D1 9D 69 0C 71 6A F3 74 1C FF 7D 20 E1 CA .G..i.qj.t... ..
    0050: 75 D0 45 84 2E 11 3C DD D4 73 25 38 76 27 E0 73 u.E...<..s%8v'.s
    0060: 70 AC 70 0F A5 E3 5B 9D 7E 0E AB 6A 79 07 18 38 p.p...[....jy..8
    0070: 5B A1 63 A2 89 8C 96 A1 50 36 4C D2 C6 D5 27 25 [.c.....P6L...'%
    Found trusted certificate:
    Version: V3
    Subject: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    Signature Algorithm: SHA1withRSA, OID = 1.2.840.113549.1.1.5
    Key: Sun RSA public key, 1024 bits
    modulus: 135786214035069526348186531221551781468391756233528066061569654028671100866720352830303278016129003918213826297308054231261658522889438712013757624116391437358730449661353175673177742307421061340003741057138887918110217006515773038453829253517076741780039735595086881329494037450587568122088113584549069375417
    public exponent: 65537
    Validity: [From: Sat Aug 22 09:41:51 PDT 1998,
                   To: Wed Aug 22 09:41:51 PDT 2018]
    Issuer: OU=Equifax Secure Certificate Authority, O=Equifax, C=US
    SerialNumber: [    35def4cf]
    Certificate Extensions: 7
    [1]: ObjectId: 1.2.840.113533.7.65.0 Criticality=false
    Extension unknown: DER encoded OCTET string =
    0000: 04 0D 30 0B 1B 05 56 33 2E 30 63 03 02 06 C0 ..0...V3.0c....
    [2]: ObjectId: 2.5.29.14 Criticality=false
    SubjectKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [3]: ObjectId: 2.5.29.35 Criticality=false
    AuthorityKeyIdentifier [
    KeyIdentifier [
    0000: 48 E6 68 F9 2B D2 B2 95 D7 47 D8 23 20 10 4F 33 H.h.+....G.# .O3
    0010: 98 90 9F D4 ....
    [4]: ObjectId: 2.5.29.31 Criticality=false
    CRLDistributionPoints [
    [DistributionPoint:
    [CN=CRL1, OU=Equifax Secure Certificate Authority, O=Equifax, C=US]
    [5]: ObjectId: 2.5.29.15 Criticality=false
    KeyUsage [
    Key_CertSign
    Crl_Sign
    [6]: ObjectId: 2.5.29.16 Criticality=false
    PrivateKeyUsage: [
    To: Wed Aug 22 09:41:51 PDT 2018]
    [7]: ObjectId: 2.5.29.19 Criticality=false
    BasicConstraints:[
    CA:true
    PathLen:2147483647
    Algorithm: [SHA1withRSA]
    Signature:
    0000: 58 CE 29 EA FC F7 DE B5 CE 02 B9 17 B5 85 D1 B9 X.).............
    0010: E3 E0 95 CC 25 31 0D 00 A6 92 6E 7F B6 92 63 9E ....%1....n...c.
    0020: 50 95 D1 9A 6F E4 11 DE 63 85 6E 98 EE A8 FF 5A P...o...c.n....Z
    0030: C8 D3 55 B2 66 71 57 DE C0 21 EB 3D 2A A7 23 49 ..U.fqW..!.=*.#I
    0040: 01 04 86 42 7B FC EE 7F A2 16 52 B5 67 67 D3 40 ...B......R.gg.@
    0050: DB 3B 26 58 B2 28 77 3D AE 14 77 61 D6 FA 2A 66 .;&X.(w=..wa..*f
    0060: 27 A0 0D FA A7 73 5C EA 70 F1 94 21 65 44 5F FA '....s\.p..!eD_.
    0070: FC EF 29 68 A9 A2 87 79 EF 79 EF 4F AC 07 77 38 ..)h...y.y.O..w8
    *** CertificateRequest
    Cert Types: RSA,
    Cert Authorities:
    <OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 1 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US>
    <CN=Sonera Class1 CA, O=Sonera, C=FI>
    <OU=VeriSign Trust Network, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=Class 4 Public Primary Certification Authority - G2, O="VeriSign, Inc.", C=US>
    <CN=Staat der Nederlanden Root CA, O=Staat der Nederlanden, C=NL>
    <CN=VeriSign Class 3

    I have the same problem. I�m turning crazy working with certificates in mutual athetication!!!
    If someone has the solution to this problem, send a repy or at [email protected]
    Thanks in advance

  • HT5349 I'm getting an error while attempting to reset the profile editor

    server:~ pjames$ /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/wipeDB .sh
    Password:
    devicemgr:state = "STOPPING"
    postgres:state = "RUNNING"
    (in /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend)
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ gems/pg-0.9.0/lib/pg_ext.bundle: [BUG] Segmentation fault
    ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10]
    -- control frame ----------
    c:0049 p:-541694528 s:0188 b:0188 l:000187 d:000187 TOP  
    c:0048 p:---- s:0186 b:0186 l:000185 d:000185 CFUNC  :require
    c:0047 p:0013 s:0182 b:0182 l:000181 d:000181 METHOD <internal:lib/rubygems/custom_require>:29
    c:0046 p:0012 s:0177 b:0177 l:000166 d:000176 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0045 p:0055 s:0175 b:0175 l:000174 d:000174 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0044 p:0041 s:0167 b:0167 l:000166 d:000166 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0043 p:0087 s:0161 b:0161 l:000160 d:000160 TOP    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /gems/pg-0.9.0/lib/pg.rb:9
    c:0042 p:---- s:0158 b:0158 l:000157 d:000157 FINISH
    c:0041 p:---- s:0156 b:0156 l:000155 d:000155 CFUNC  :require
    c:0040 p:0073 s:0152 b:0152 l:000148 d:000151 BLOCK  <internal:lib/rubygems/custom_require>:33
    c:0039 p:0014 s:0149 b:0149 l:000148 d:000148 METHOD <internal:lib/rubygems/custom_require>:29
    c:0038 p:0012 s:0144 b:0144 l:000133 d:000143 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0037 p:0055 s:0142 b:0142 l:000141 d:000141 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0036 p:0041 s:0134 b:0134 l:000133 d:000133 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0035 p:0014 s:0128 b:0128 l:000118 d:000127 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0034 p:0021 s:0123 b:0123 l:000122 d:000122 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0033 p:0011 s:0119 b:0119 l:000118 d:000118 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0032 p:0025 s:0115 b:0115 l:000114 d:000114 TOP    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0031 p:---- s:0112 b:0112 l:000111 d:000111 FINISH
    c:0030 p:---- s:0110 b:0110 l:000109 d:000109 CFUNC  :require
    c:0029 p:0013 s:0106 b:0106 l:000105 d:000105 METHOD <internal:lib/rubygems/custom_require>:29
    c:0028 p:0012 s:0101 b:0101 l:000090 d:000100 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0027 p:0055 s:0099 b:0099 l:000098 d:000098 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0026 p:0041 s:0091 b:0091 l:000090 d:000090 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0025 p:0042 s:0085 b:0085 l:000081 d:000084 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0024 p:0179 s:0082 b:0082 l:000081 d:000081 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0023 p:0186 s:0076 b:0076 l:000075 d:000075 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/railties/lib/tasks/databases.rake:417
    c:0022 p:0047 s:0071 b:0071 l:000b18 d:000070 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/railties/lib/tasks/databases.rake:97
    c:0021 p:---- s:0068 b:0068 l:000067 d:000067 FINISH
    c:0020 p:---- s:0066 b:0066 l:000065 d:000065 CFUNC  :call
    c:0019 p:0043 s:0061 b:0061 l:000052 d:000060 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:634
    c:0018 p:---- s:0058 b:0058 l:000057 d:000057 FINISH
    c:0017 p:---- s:0056 b:0056 l:000055 d:000055 CFUNC  :each
    c:0016 p:0171 s:0053 b:0053 l:000052 d:000052 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:629
    c:0015 p:0110 s:0049 b:0049 l:000043 d:000048 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:595
    c:0014 p:0019 s:0047 b:0047 l:000046 d:000046 METHOD /opt/local/lib/ruby1.9/1.9.1/monitor.rb:201
    c:0013 p:0033 s:0044 b:0044 l:000043 d:000043 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:588
    c:0012 p:0048 s:0038 b:0038 l:000037 d:000037 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:581
    c:0011 p:0045 s:0033 b:0033 l:000032 d:000032 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2041
    c:0010 p:0012 s:0026 b:0026 l:000011 d:000025 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019
    c:0009 p:---- s:0023 b:0023 l:000022 d:000022 FINISH
    c:0008 p:---- s:0021 b:0021 l:000020 d:000020 CFUNC  :each
    c:0007 p:0069 s:0018 b:0018 l:000011 d:000017 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019
    c:0006 p:0009 s:0016 b:0016 l:000015 d:000015 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2058
    c:0005 p:0011 s:0012 b:0012 l:000011 d:000011 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2013
    c:0004 p:0031 s:0009 b:0009 l:000008 d:000008 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:1992
    c:0003 p:0036 s:0006 b:0006 l:001658 d:001c18 EVAL   /opt/local/bin/rake:31
    c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
    c:0001 p:0000 s:0002 b:0002 l:001658 d:001658 TOP  
    -- Ruby level backtrace information ----------------------------------------
    /opt/local/bin/rake:31:in `<main>'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:1992:in `run'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2013:in `top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2058:in `standard_exception_handling'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `block in top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `each'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `block (2 levels) in top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2041:in `invoke_task'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:581:in `invoke'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:588:in `invoke_with_call_chain'
    /opt/local/lib/ruby1.9/1.9.1/monitor.rb:201:in `mon_synchronize'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:595:in `block in invoke_with_call_chain'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:629:in `execute'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:629:in `each'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:634:in `block in execute'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:634:in `call'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/railties/lib/tasks/databases.rake:97:in `block (2 levels) in <top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/railties/lib/tasks/databases.rake:417:in `drop_database'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/abstract/connection_spe cification.rb:68:in `establish_connection'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/abstract/connection_spe cification.rb:74:in `rescue in establish_connection'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb:4 :in `<top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/requires.rb:7:in `block in require_library_or_gem'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:33:in `rescue in require'
    <internal:lib/rubygems/custom_require>:33:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ gems/pg-0.9.0/lib/pg.rb:9:in `<top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    -- C level backtrace information -------------------------------------------
    [NOTE]
    You may have encountered a bug in the Ruby interpreter or extension libraries.
    Bug reports are welcome.
    For details: http://www.ruby-lang.org/bugreport.html
    (in /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend)
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ gems/pg-0.9.0/lib/pg_ext.bundle: [BUG] Segmentation fault
    ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10]
    -- control frame ----------
    c:0049 p:-544427160 s:0186 b:0186 l:000185 d:000185 TOP  
    c:0048 p:---- s:0184 b:0184 l:000183 d:000183 CFUNC  :require
    c:0047 p:0013 s:0180 b:0180 l:000179 d:000179 METHOD <internal:lib/rubygems/custom_require>:29
    c:0046 p:0012 s:0175 b:0175 l:000164 d:000174 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0045 p:0055 s:0173 b:0173 l:000172 d:000172 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0044 p:0041 s:0165 b:0165 l:000164 d:000164 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0043 p:0087 s:0159 b:0159 l:000158 d:000158 TOP    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /gems/pg-0.9.0/lib/pg.rb:9
    c:0042 p:---- s:0156 b:0156 l:000155 d:000155 FINISH
    c:0041 p:---- s:0154 b:0154 l:000153 d:000153 CFUNC  :require
    c:0040 p:0073 s:0150 b:0150 l:000146 d:000149 BLOCK  <internal:lib/rubygems/custom_require>:33
    c:0039 p:0014 s:0147 b:0147 l:000146 d:000146 METHOD <internal:lib/rubygems/custom_require>:29
    c:0038 p:0012 s:0142 b:0142 l:000131 d:000141 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0037 p:0055 s:0140 b:0140 l:000139 d:000139 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0036 p:0041 s:0132 b:0132 l:000131 d:000131 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0035 p:0014 s:0126 b:0126 l:000116 d:000125 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0034 p:0021 s:0121 b:0121 l:000120 d:000120 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0033 p:0011 s:0117 b:0117 l:000116 d:000116 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/core_ext
    c:0032 p:0025 s:0113 b:0113 l:000112 d:000112 TOP    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0031 p:---- s:0110 b:0110 l:000109 d:000109 FINISH
    c:0030 p:---- s:0108 b:0108 l:000107 d:000107 CFUNC  :require
    c:0029 p:0013 s:0104 b:0104 l:000103 d:000103 METHOD <internal:lib/rubygems/custom_require>:29
    c:0028 p:0012 s:0099 b:0099 l:000088 d:000098 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0027 p:0055 s:0097 b:0097 l:000096 d:000096 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0026 p:0041 s:0089 b:0089 l:000088 d:000088 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activesupport/lib/active_support/dependen
    c:0025 p:0042 s:0083 b:0083 l:000079 d:000082 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0024 p:0179 s:0080 b:0080 l:000079 d:000079 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/activerecord/lib/active_record/connection
    c:0023 p:0129 s:0074 b:0074 l:000073 d:000073 METHOD /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/railties/lib/tasks/databases.rake:51
    c:0022 p:0033 s:0070 b:0070 l:0001a8 d:000069 BLOCK  /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor /rails/railties/lib/tasks/databases.rake:31
    c:0021 p:---- s:0068 b:0068 l:000067 d:000067 FINISH
    c:0020 p:---- s:0066 b:0066 l:000065 d:000065 CFUNC  :call
    c:0019 p:0043 s:0061 b:0061 l:000052 d:000060 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:634
    c:0018 p:---- s:0058 b:0058 l:000057 d:000057 FINISH
    c:0017 p:---- s:0056 b:0056 l:000055 d:000055 CFUNC  :each
    c:0016 p:0171 s:0053 b:0053 l:000052 d:000052 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:629
    c:0015 p:0110 s:0049 b:0049 l:000043 d:000048 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:595
    c:0014 p:0019 s:0047 b:0047 l:000046 d:000046 METHOD /opt/local/lib/ruby1.9/1.9.1/monitor.rb:201
    c:0013 p:0033 s:0044 b:0044 l:000043 d:000043 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:588
    c:0012 p:0048 s:0038 b:0038 l:000037 d:000037 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:581
    c:0011 p:0045 s:0033 b:0033 l:000032 d:000032 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2041
    c:0010 p:0012 s:0026 b:0026 l:000011 d:000025 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019
    c:0009 p:---- s:0023 b:0023 l:000022 d:000022 FINISH
    c:0008 p:---- s:0021 b:0021 l:000020 d:000020 CFUNC  :each
    c:0007 p:0069 s:0018 b:0018 l:000011 d:000017 BLOCK  /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019
    c:0006 p:0009 s:0016 b:0016 l:000015 d:000015 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2058
    c:0005 p:0011 s:0012 b:0012 l:000011 d:000011 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:2013
    c:0004 p:0031 s:0009 b:0009 l:000008 d:000008 METHOD /opt/local/lib/ruby1.9/1.9.1/rake.rb:1992
    c:0003 p:0036 s:0006 b:0006 l:001658 d:001358 EVAL   /opt/local/bin/rake:31
    c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH
    c:0001 p:0000 s:0002 b:0002 l:001658 d:001658 TOP  
    -- Ruby level backtrace information ----------------------------------------
    /opt/local/bin/rake:31:in `<main>'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:1992:in `run'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2013:in `top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2058:in `standard_exception_handling'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `block in top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `each'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2019:in `block (2 levels) in top_level'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:2041:in `invoke_task'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:581:in `invoke'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:588:in `invoke_with_call_chain'
    /opt/local/lib/ruby1.9/1.9.1/monitor.rb:201:in `mon_synchronize'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:595:in `block in invoke_with_call_chain'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:629:in `execute'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:629:in `each'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:634:in `block in execute'
    /opt/local/lib/ruby1.9/1.9.1/rake.rb:634:in `call'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/railties/lib/tasks/databases.rake:31:in `block (2 levels) in <top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/railties/lib/tasks/databases.rake:51:in `create_database'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/abstract/connection_spe cification.rb:68:in `establish_connection'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/abstract/connection_spe cification.rb:74:in `rescue in establish_connection'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb:4 :in `<top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/requires.rb:5:in `require_library_or_gem'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/core_ext/kernel/requires.rb:7:in `block in require_library_or_gem'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:33:in `rescue in require'
    <internal:lib/rubygems/custom_require>:33:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ gems/pg-0.9.0/lib/pg.rb:9:in `<top (required)>'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
    /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/vendor/ rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    <internal:lib/rubygems/custom_require>:29:in `require'
    -- C level backtrace information -------------------------------------------
    [NOTE]
    You may have encountered a bug in the Ruby interpreter or extension libraries.
    Bug reports are welcome.
    For details: http://www.ruby-lang.org/bugreport.html
    devicemgr:state = "RUNNING"

    "Could not open key
    UNKNOWN\Components\DA42BC89BF25F5BD0AF…
    \b25099274a207264182f8181add555d0.
    Doublechecking. Have you tried the following user tip?
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\[LongStringOfLettersAndNumbe rs]" error messages when installing iTunes for Windows

  • Error with SSL Message

    Hello Guys,
    I am implementing solution where in I need to post http request to a secure server. I am using following mechanisam to talk to the ssl server. But when I run the program on my local machine I get following error. Can you guys please help me out since I have limited knowledge of security API and I need to get this done in very short time. Please help me understand necessary steps required to resolve this issue.
    Thanks
    Code
    SSLSocketFactory factory = (SSLSocketFactory)SSLSocketFactory.getDefault();
    tunnelHost = "<my proxy server >";
    tunnelPort = "<proxy server port>";
    tunnel = new Socket(tunnelHost, tunnelPort);
    doTunnelHandshake(tunnel, host, port ,username , password);
    socket =(SSLSocket)factory.createSocket(tunnel, host, port, true);
    socket.addHandshakeCompletedListener(
    new HandshakeCompletedListener()
         public void handshakeCompleted(
         HandshakeCompletedEvent event)
              {"\t CipherSuite:" + event.getCipherSuite());
              System.out.println(
              "\t SessionId " + event.getSession());
              System.out.println(
              "\t PeerHost "+
              event.getSession().getPeerHost());
    socket.startHandshake();
    socket.close();
    tunnel.close();
    } catch (Exception e) {
         e.printStackTrace();
    private void doTunnelHandshake(Socket tunnel, String host, int port , String username , String password)
    throws IOException
    OutputStream out = tunnel.getOutputStream();
    String AuthString = new String("NORTHAMERICA\\"+username+ ":" + password );
    byte [] AuthBytes = AuthString.getBytes();
    char []AuthChar = Base64encode(AuthBytes);
    String test = String.valueOf(AuthChar);
    String ProxyAuthorization = new String("Proxy-Authorization: Basic " + test);
    String msg = "CONNECT " + host + ":" + port + " HTTP/1.0\n"
    + "User-Agent: Java SSL Sample\n"
    + "Host: FSM Gateway\n"
    + "Proxy-Connection: Keep-Alive\n"
    + "Pragma: No-Cache\n"
    + ProxyAuthorization
    + "\r\n\r\n";
    byte b[];
    try {
    b = msg.getBytes("ASCII7");
    } catch (UnsupportedEncodingException ignored) {
    * If ASCII7 isn't there, something serious is wrong, but
    * Paranoia Is Good �
    b = msg.getBytes();
    out.write(b);
    out.flush();
    byte reply[] = new byte[200];
    int replyLen = 0;
    int newlinesSeen = 0;
    boolean headerDone = false; /* Done on first newline */
    InputStream in = tunnel.getInputStream();
    boolean error = false;
    while (newlinesSeen < 2) {
    int i = in.read();
    if (i < 0) {
    throw new IOException("Unexpected EOF from proxy");
    if (i == '\n') {
    headerDone = true;
    ++newlinesSeen;
    } else if (i != '\r') {
    newlinesSeen = 0;
    if (!headerDone && replyLen < reply.length) {
    reply[replyLen++] = (byte) i;
    * Converting the byte array to a string is slightly wasteful
    * in the case where the connection was successful, but it's
    * insignificant compared to the network overhead.
    String replyStr;
    try {
    replyStr = new String(reply, 0, replyLen, "ASCII7");
    } catch (UnsupportedEncodingException ignored) {
    replyStr = new String(reply, 0, replyLen);
    /* We asked for HTTP/1.0, so we should get that back */
    if (!replyStr.startsWith("HTTP/1.0 200")) {
    throw new IOException("Unable to tunnel through "
    + tunnelHost + ":" + tunnelPort
    + ". Proxy returns \"" + replyStr + "\"");
    System.out.println("tunneling Handshake was successful!");
    Exception is javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
    at com.sun.net.ssl.internal.ssl.InputRecord.b(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)
    at SSLSocketClient.doIt(SSLSocketClient.java:166)
    at SSLSocketClient.main(SSLSocketClient.java:54)
    Debug information is
    keyStore is :
    keyStore type is : jks
    init keystore
    init keymanager of type SunX509
    trustStore is: C:\Program Files\Java\j2re1.4.2_06\lib\security\cacerts
    trustStore type is : jks
    init truststore
    adding as trusted cert:
    Subject: CN=Baltimore CyberTrust Code Signing Root, OU=CyberTrust, O=Baltimore, C=IE
    Issuer: CN=Baltimore CyberTrust Code Signing Root, OU=CyberTrust, O=Baltimore, C=IE
    Algorithm: RSA; Serial number: 0x20000bf
    Valid from Wed May 17 09:01:00 CDT 2000 until Sat May 17 18:59:00 CDT 2025
    adding as trusted cert:
    Subject: CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.),
    Issuer: CN=Entrust.net Secure Server Certification Authority, OU=(c) 1999 Entrust.net Limited, OU=www.entrust.net/CPS incorp. by ref. (limits liab.),
    Algorithm: RSA; Serial number: 0x374ad243
    Valid from Tue May 25 11:09:40 CDT 1999 until Sat May 25 11:39:40 CDT 2019
    adding as trusted cert:
    Subject: CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE
    Issuer: CN=Baltimore CyberTrust Root, OU=CyberTrust, O=Baltimore, C=IE
    Algorithm: RSA; Serial number: 0x20000b9
    Valid from Fri May 12 13:46:00 CDT 2000 until Mon May 12 18:59:00 CDT 2025
    adding as trusted cert:
    Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Net
    Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3, OU="(c) 1999 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Net
    Algorithm: RSA; Serial number: 0x9b7e0649a33e62b9d5ee90487129ef57
    Valid from Thu Sep 30 19:00:00 CDT 1999 until Wed Jul 16 18:59:59 CDT 2036
    adding as trusted cert:
    init context
    trigger seeding of SecureRandom
    done seeding SecureRandom
    tunneling Handshake was successful!
    Socket is 15e83f9[SSL_NULL_WITH_NULL_NULL: Socket[addr=/10.0.1.38,port=80,localport=2133]]
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1115833203 bytes = { 119, 0, 234, 70, 240, 74, 55, 9, 64, 89, 133, 251, 64, 160, 105, 25, 113, 219, 252, 65, 240, 228, 184, 117, 235,
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_
    Compression Methods:  { 0 }
    main, WRITE: TLSv1 Handshake, length = 73
    main, WRITE: SSLv2 client hello message, length = 98
    main, handling exception: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
    main, SEND TLSv1 ALERT: fatal, description = unexpected_message
    main, WRITE: TLSv1 Alert, length = 2
    main, called closeSocket()
    javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
    at com.sun.net.ssl.internal.ssl.InputRecord.b(Unknown Source)
    at com.sun.net.ssl.internal.ssl.InputRecord.read(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(Unknown Source)
    at SSLSocketClient.doIt(SSLSocketClient.java:166)
    at SSLSocketClient.main(SSLSocketClient.java:54)

    No it is not correct.
    The socket creation should be provided with the proper host and the port. the resource on the host is something you should ask your server (HTTP GET ... whatever).
    The https://abc.com:443 is equal to https://abc.com as the default port for https is 443. the host variable should be "abc.com" and the port "443" and the rest negotiated in application level (HTTP GET /XYZ [is not the proper syntax]).
    Further, with this description, the first url (https://server/resource:port) is not making any sense.
    You problem in first place is probably the host and port parameters (specifically the port has been set to 80 which most likely is wrong) . you need to consider the other port regarding newline and CRs buildging the proxy authentication header, but you debug logs suggest that your test proxy server takes it.

  • Error while creating Process flows in OWB 11gR2

    Hi
    I have never faced this before and thats why it baffles me. I am trying to create a new process flow module which has already been configured to the OWF_LOCATION(Oracle workflow location).
    I get Java exception error window with long list of details which are rocket science to me.
    I will paste few lines of the details as its a big trace
    Internal Error: Load Error. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    Internal Error: Load Error. Please contact Oracle Support with the stack trace and details on how to reproduce it.
    Persistent Layer Error:SQL Exception..
    Class Name: ProxyFactory.
    Method Name: loadInstance.
    Persistent Layer Error Message: Exhausted Resultset.
         at oracle.wh.repos.impl.ProxyFactoryGen.loadInstance(ProxyFactoryGen.java:9704)
         at oracle.wh.repos.pdl.foundation.CacheMediator.query(CacheMediator.java:4372)
         at oracle.wh.repos.pdl.foundation.CacheMediator.queryById(CacheMediator.java:4221)
    AND
         Trying to access invalid Object.
    Element ID: 124688
    Status: 15
    Name: PFM_BUS_ROUTE
    Logical Name: PFM_BUS_ROUTE
    Class Name: CMPProcessInstalledModule
    Owning FCO: 124688
    parent:0
    Trying to access invalid Object.
    Element ID: 124688
    Status: 15
    Name: PFM_BUS_ROUTE
    Logical Name: PFM_BUS_ROUTE
    Class Name: CMPProcessInstalledModule
    Owning FCO: 124688
    parent:0
         at oracle.wh.repos.pdl.foundation.WBProxy.checkStatus(WBProxy.java:587)
         at oracle.wh.repos.pdl.foundation.WBProxy.getSubject(WBProxy.java:67)
         at oracle.wh.repos.pdl.foundation.WBProxy.getContext(WBProxy.java:132)
         at oracle.wh.ui.owbcommon.OWBWizardDefinition.produceRefresh(OWBWizardDefinition.java:934)
         at oracle.wh.ui.owbcommon.OWBWizard.wizardFinished(OWBWizard.java:1036)
    This is really strange.Has anyone encountered this before?
    Birdy

    Hi David
    I tried registering the location again before de-registering it. OWB comes up with an RTC error
    RTC-5229: Location <Location Name> could not be unregistered.
    Any hints?
    Version details are below. I am not sure whether Critical patch refers to this
    About
    Oracle Warehouse Builder 11.2.0.2
    OWB Tahoe Development Version 11.2.0.2
    Build OWB_TAHOER2_LINUX_100907.2019.2.0.3
    Copyright © 2000, 2010, Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.0.30.51.07
    Product ID: oracle.owb
    Product Version: 11.2
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.5.0_24-rev
    Oracle IDE     11.2.0.2.0
    Properties
    Name     Value
    ====     =====
    apple.laf.useScreenMenuBar     true
    awt.toolkit     sun.awt.windows.WToolkit
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     "OWB"
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     false
    ide.bootstrap.start     2245311504606534
    ide.build     OWB_TAHOER2_LINUX_100907.2019.2.0.3
    ide.conf     C:\product\11.2.0\dbhome_2\owb\bin\owb.conf
    ide.config_pathname     C:\product\11.2.0\dbhome_2\owb\bin\owb.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.extension.search.path     owb/extensions:ide/extensions
    ide.firstrun     false
    ide.java.minversion     1.5.0
    ide.launcherProcessId     4792
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.patches.dir     owb/lib/patches
    ide.pref.dir     C:\Documents and Settings\bharadwajvenkatraman\Application Data\OWB
    ide.pref.dir.base     C:\Documents and Settings\bharadwajvenkatraman\Application Data
    ide.product     oracle.owb
    ide.shell.enableFileTypeAssociation     C:\product\11.2.0\dbhome_2\owb\bin\owb.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     C:\product\11.2.0\dbhome_2\owb\bin\owb.exe
    ide.startingcwd     C:\product\11.2.0\dbhome_2\owb\bin
    ide.user.dir     C:\Documents and Settings\bharadwajvenkatraman\Application Data\OWB
    ide.user.dir.var     IDE_USER_DIR
    ide.work.dir     U:\Data\OWB
    ide.work.dir.base     U:\Data
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\lib\int\accelerators.jar;..\..\ide\lib\ide-boot.jar
    java.class.version     49.0
    java.endorsed.dirs     C:\product\11.2.0\dbhome_2\jdk\jre\lib\endorsed
    java.ext.dirs     C:\product\11.2.0\dbhome_2\jdk\jre\lib\ext
    java.home     C:\product\11.2.0\dbhome_2\jdk\jre
    java.io.tmpdir     C:\DOCUME~1\BHARAD~1\LOCALS~1\Temp\
    java.library.path     C:\product\11.2.0\dbhome_2\owb\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\product\11.2.0\dbhome_2\OPatch;C:\product\11.2.0\dbhome_2\bin;C:\OraHome_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Windows Imaging\;C:\Program Files\Open Text\Livelink Explorer\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft Application Virtualization Client
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name     Java(TM) Platform, Standard Edition for Business
    java.runtime.version     1.5.0_24-rev-b08
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.5
    java.util.logging.config.file     logging.conf
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.5.0_24-rev
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.5.0_24-rev-b08
    line.separator     \r\n
    native.canonicalization     false
    oracle.home     C:\product\11.2.0\dbhome_2
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.net.tns_admin     ../../network/admin
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    os.arch     x86
    os.name     Windows XP
    os.version     5.1
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.boot.class.path     C:\product\11.2.0\dbhome_2\jdk\jre\lib\rt.jar;C:\product\11.2.0\dbhome_2\jdk\jre\lib\i18n.jar;C:\product\11.2.0\dbhome_2\jdk\jre\lib\sunrsasign.jar;C:\product\11.2.0\dbhome_2\jdk\jre\lib\jsse.jar;C:\product\11.2.0\dbhome_2\jdk\jre\lib\jce.jar;C:\product\11.2.0\dbhome_2\jdk\jre\lib\charsets.jar;C:\product\11.2.0\dbhome_2\jdk\jre\classes
    sun.boot.library.path     C:\product\11.2.0\dbhome_2\jdk\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.ddoffscreen     false
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     Service Pack 3
    user.country     GB
    user.dir     C:\product\11.2.0\dbhome_2\owb\bin
    user.home     U:
    user.language     en
    user.name     bharadwajvenkatraman
    user.timezone     Europe/London
    user.variant     
    windows.shell.font.languages     
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    Check For Updates     oracle.ide.webupdate     11.1.1.0.30.51.07     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.0.30.51.07     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.0.30.51.07     Loaded
    Help System     oracle.ide.help     11.1.1.0.30.51.07     Loaded
    Log Window     oracle.ide.log     11.1.1.0.30.51.07     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.0.30.51.07     Loaded
    Navigator     oracle.ide.navigator     11.1.1.0.30.51.07     Loaded
    OWB     oracle.owb     11.2     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.0.30.51.07     Loaded
    Oracle IDE     oracle.ide     11.1.1.0.30.51.07     Loaded
    Peek     oracle.ide.peek     11.1.1.0.30.51.07     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.0.30.51.07     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.0.30.51.07     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.0.30.51.07     Loaded
    palette2     oracle.ide.palette2     11.1.1.0.30.51.07     Loaded
    Birdy
    Edited by: birdy on 18-Apr-2011 08:56

  • Error while installing NW7.3 ABAP for DB2 on z/OS Install DB CLI driver

    Dear Experts,
    i'm installing for the first time NW7.3 ABAP for DB2 on z/OS with AIX application server. Central Services was installed succesfull but next step Install Database on AIX stoped with error (establishConn.log):
    db2radm (release: "720", patch level: "000", version: "Jan 14 2012") begin:28.02.2012 10:54:39
    This is db2radm release: "720", patch level: "120", version: "Jan 14 2012".
    This is db2radm setting up DB2 Connect.
    Message file is /sapmnt/tmp/sapinst_instdir/NW73/INSTALL/NW73/DB2/HA/PI/DB/establishConn.log.
    db2radm called as: /usr/sap/DW8/SYS/exe/uc/rs6000_64/db2radm -m db2i -P 456 -L DW8DDF -S DW88 -H s10d1 -u SAPADM -p ******** -W primary_only -l /sapmnt/tmp/sapinst_instdir/NW73/INSTALL/NW73/DB2/HA/PI/DB/establishConn.log
    Adjusting environment
      dbs_db2_ssid=DW88
      SAPDBHOST=s10d1
      dbs_db2_user=SAPADM
      dbs_db2_schema=SAPADM
      dbs_db2_schema8=1
      dbs_db2_pw=********
    Checking environment
      DB host    = s10d1
      SSID       = DW88
      SAPSYSTEMNAME = DW8
    DB2Trc:    000000 CLI_ALLOC_ENV 1
    connect.ini file used: 'connect.ini.for.db2radm'
    Fail over connection list of this application server:
    NAME       = DW88_on_s10d1             
    USER       = SAPADM                    
    PASSWORD   = <***>                     
    SCHEMA     = SAPADM                    
    PS         = SAP0907U                  
    LOCATION   = DW8DDF                    
    SSID       = DW88                      
    HOST       = s10d1                     
    PORT       = 456                       
    RETRY_CNT  = 3                         
    SLEEP_TIME = 0                         
    DB2Trc: trace level of dbdb2cli set to 1
    COLLECTION ID used is "SAP0907U"
    DB2 Call 'SQLDriverConnectW' Warning: SQLCODE = 8007 : [IBM][CLI Driver][DB2] SQL8007W  There are "90" day(s) left in the evaluation period for the product "DB2 Connect". For evaluation license terms and conditions, refer to the License Agreement document located in the license directory in the installation path of this product. If you have licensed this product, ensure the license key is properly registered. You can register the license via the License Center or db2licm command line utility. The license key can be obtained from your licensed product CD.  SQL
    use lib_dbsl for DB2 version V9.
    Callback functions for dynamic profile parameter registered
    DbSl library successfully loaded.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    SQL DRIVER VERSION is "09.07.0003"
    DB2Connect driver identified as THIN CLIENT
    Now I'm connected to DW88_on_s10d1
    DB2 DBMS version 09.01.0005
    DB2 LOCATION name DW8DDF
    (HYB): Info: Using OLD dbsl support.
    DB2 connect shared library loaded successfully.
    09.07.0003DB2Connect driver identified as THIN CLIENT
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    connection profile /usr/sap/DW8/SYS/global/connect.ini opened.
    >>>>>> dump of connection profile
    ADDED 20120228 103331 by DB2RADM RELEASE 720 PATHLEVEL 000
      [DEFAULT_GROUP]
      CON1=DW88_on_s10d1
      [DW88_on_s10d1]
      SSID=DW88
      HOST=s10d1
      PORT=456
      LOCATION=DW8DDF
    <<<<<< end of dump of connection profile
    ssid DW88 found in connection profile, section DW88_on_s10d1.
    >>> analyse line:  * ADDED 20120228 103331 by DB2RADM RELEASE 720 PATHLEVEL 000
    >>> analyse line:  [DEFAULT_GROUP]
    >>> analyse line:  CON1=DW88_on_s10d1
    >>> analyse line: 
    >>> analyse line:  [DW88_on_s10d1]
    section DW88_on_s10d1 found.
    >>> analyse line:  SSID=DW88
    >>> analyse line:  HOST=s10d1
    >>> analyse line:  PORT=456
    >>> analyse line:  LOCATION=DW8DDF
    >>> analyse line:  section DW88_on_s10d1 found and data matches.
    backup connection profile /usr/sap/DW8/SYS/global/connect.ini .
    switch connection profile /usr/sap/DW8/SYS/global/connect.ini .
    check for adapted connection profile.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    ssid DW88 found in connection profile, section DW88_on_s10d1.
    check for adapted connection profile passed.
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    GetHaProfile: GetHaProfile: found 1 connections in connection profile.
    GetHaProfile: found section DW88_on_s10d1, ssid DW88, port 456, location DW8DDF, host s10d1  in connection profile
    WARNING: schema with 8 bytes length allowed; shadow upgrate will not work
    dbs/db2/use_accounting != 1 -> DB2 accounting is switched off
    dbs/db2/use_drda_lob_handling != 1 -> SAP LOB handling is used
    dbs/db2/chaining = 20 -> CLI CHAIN optimization is switched on
    dbs/db2/opt2_hint = 1 -> implicit 'optimize for 1 rows' hint is switched off
    DBSLHA: Got Failover profile /usr/sap/DW8/SYS/global/connect.ini
    DBSLHA: Using new Failover Support
    DBSLHA: Using user(  SAPADM) and password(<pwd>) from profile.
    DBSLHA:
    DBSLHA:Connection List
    DBSLHA:
    DBSLHA:NAME      |HOST      |SSID|COLLECTION  |PLAN    |PORT             |SCHEMA  |OWNER   |LOCATION  |RETRY|SLEEP|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    DBSLHA:DW88_on_s1|s10d1     |DW88|SAP<DB2Conne|        |                 |SAPADM  |SAPADM  |DW8DDF    |00003|00000|                                                                               
    DBSLHA:--|||||||||-|---|                                                                               
    SQL DRIVER VERSION is "09.07.0003"
    DB2Connect driver identified as THIN CLIENT
    DB2Trc: 00 000000 cli_get_cli_driver_bld_level 1 s101006
    SQL DRIVER NAME is "libdb2.a"
    SQL DBMS NAME is "DB2"
    SQL DBMS VERSION is "09.01.0005"
    DATABASE NAME(DB2 Connect DCS database name) is "DW8DDF"
    The bind is skipped since collection for ssid DW88 is already bound.
    To force the bind, use option "-B force".
    DB2TRC: 0000000000 00      000000   CLI_DISCONNECT
    DB2TRC: 0000000000 00      000000   CLI_FREE_DBC 1
    DB2TRC: 0000000000 00      000000   CLI_FREE_ENV 1
    DB VERSION is 09.01.0005.
    Starting Grants .
    DB2Trc:    000000 CLI_ALLOC_ENV 1
    COLLECTION ID used is "SAP0907U"
    DB2 Call 'SQLDriverConnectW' Warning: SQLCODE = 8007 : [IBM][CLI Driver][DB2] SQL8007W  There are "90" day(s) left in the evaluation period for the product "DB2 Connect". For evaluation license terms and conditions, refer to the License Agreement document located in the license directory in the installation path of this product. If you have licensed this product, ensure the license key is properly registered. You can register the license via the License Center or db2licm command line utility. The license key can be obtained from your licensed product CD.  SQL
    Connecting to <DW88_on_s10d1> on connection 0 ...
    Now I'm connected to DB2 (09.01.5)
    SQL DRIVER NAME is "libdb2.a"
    SQL DBMS NAME is "DB2"
    SQL DBMS VERSION is "09.01.0005"
    DATABASE NAME(DB2 Connect DCS database name) is "DW8DDF"
    New functions of DB2 V9 are switched on
    Profile parameter dbs/db2/cli_trace_dir is not set
    dbdb2dic.c 1709 INFO    Profile: SDB2_DEBUG=<UNSET>                                                                           
    dbdb2dic.c 1733 INFO    Envrmnt: sdb2_debug=<UNSET>                                                                           
    dbdb2dic.c 1733 INFO    Envrmnt: SDB2_DEBUG=<UNSET>                                                                           
    DB2 Call 'CLI_EXECUTE' Error: sqlcode = -204 : [IBM][CLI Driver][DB2] SQL0204N  "SAPADM.#LOBU" is an undefined name.  SQLSTATE=42704
    dbdb2dic.c 2251 INFO    rc=103,sqlcode=-204: ExeRead                                                                          
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/max_retry=<UNSET>                                                                    
    dbdb2dic.c 1733 INFO    Envrmnt: DB2_MAX_RETRY=<UNSET>                                                                        
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/retry_on_924=<UNSET>                                                                 
    dbdb2dic.c 1733 INFO    Envrmnt: DB2_RETRY_ON_924=<UNSET>                                                                     
    dbdb2dic.c 1709 INFO    Profile: dbs/db2/no_retry_on_10=<UNSET>                                                               
    dbdb2dic.c 1733 INFO    Envrmnt: dbs_db2_no_retry_on_10=<UNSET>                                                               
    dbdb2dic.c 1733 INFO    Envrmnt: DBS_DB2_NO_RETRY_ON_10=<UNSET>                                                               
    DB2 Call 'SQLEndTran' Error: sqlstate = 08003 : [IBM][CLI Driver] CLI0106E  Connection is closed. SQLSTATE=08003
    [dbdb2dic.c  1873:rc=99: COMMIT WORK failed]
    dbdb2dic.c 1873 ERROR   rc=99: COMMIT WORK failed                                                                             
    [dbdb2dic.c  2019:rc=99,sqlcode=268435455: ExecDDL failed (DB error)]
    dbdb2dic.c 2019 ERROR   rc=99,sqlcode=268435455: ExecDDL failed (DB error)                                                    
    DB2 Call 'SQLEndTran' Error: SQLCODE = -99999 : [IBM][CLI Driver] CLI0106E  Connection is closed. SQLSTATE=08003
    ROLLBACK failed with SQL error '-99999'
    ERROR: couldn't connect to DB
    rc = 99
    error message returned by DbSl:
    rc=99,sqlcode=268435455: ExecDDL failed (DB error)
    DB2RADM EXITCODE: 12
    db2radm finished (0012)
    db2radm stop:28.02.2012 10:54:39
    i've patched db2radm and sapinst to the latest version.
    May be i should manually create "SAPADM.#LOBU"?
    Please help to solve these issue.
    Best regards,
    Alexander V

    Hi ,
    Please check if Note 1581637 - Installing a System with DB2CODEPAGE other than the default is useful.
    Award points if useful.
    Thanks,
    Ravi

  • Error 403.7 - Forbidden: SSL client certificate is required

    Hi people!
    I�m developing a java client to a WebService (developed in .NET). The communication protocol is HTTPS to the URL where the Web Service is located (something like https://10.200.140.117/dirNotes/serviceName.asmx.). I�ve been reading many posts but I could'nt find the solution to the problem wich has the following message: Error 403.7 - Forbidden: SSL client certificate is required".
    I�m using JDK 1.5 and developing and testing on Windows Plataform. I'm able to access the URL specified above directly from the browser, I installed the client certificate (the same that �ve put into the ,jks keystore. I�ve also imported the whole certificate chain of the server to the cacerts.
    I�ll paste the code and the console trace below. I�d be very grateful if you can help me. Thanks a lot.
    _THE CODE_
    package principal;
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.net.URL;
    import java.net.UnknownHostException;
    import java.security.KeyStore;
    import java.security.Security;
    import javax.net.ssl.HttpsURLConnection;
    import javax.net.ssl.KeyManagerFactory;
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.SSLSocket;
    import javax.net.ssl.SSLSocketFactory;
    import javax.net.ssl.TrustManagerFactory;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import entidade.Certificado;
    public class SSLClient {
    private static final int PORT_NUMBER = 443;
    private static final String HTTPS_ADDRESS = "10.200.140.117";
    private static String strCabecalhoMsg = "";
    private static String strDadosMsg = "";
    public static void main(String[] args) throws Exception {
    System.setProperty("javax.net.ssl.keyStore", Certificado.getStrNomeArquivoJKSServidor());
    System.setProperty("javax.net.ssl.keyStorePassword", "senha");
    System.setProperty("javax.net.ssl.trustStore", "Certificados/cacerts");
    System.setProperty("javax.net.ssl.trustStorePassword", "changeit");
    System.setProperty("javax.net.ssl.keyStoreType", "JKS");
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    System.setProperty("javax.net.debug","ssl,handshake,record");
    KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
    ks.load(new FileInputStream(Certificado.getStrNomeArquivoJKSServidor()),
    Certificado.getArranjoCharSenhaCertificadoServidor());
    KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
    kmf.init(ks, Certificado.getArranjoCharSenhaCertificadoServidor());
    KeyStore ksT = KeyStore.getInstance(KeyStore.getDefaultType());
    ksT.load(new FileInputStream("C:/Arquivos de programas/Java/jre1.5.0_05/lib/security/cacerts"), "changeit".toCharArray());
    TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
    tmf.init(ksT);
    SSLContext sc = SSLContext.getInstance("SSLv3");
    sc.init(kmf.getKeyManagers(), tmf.getTrustManagers(), new java.security.SecureRandom());
    SSLSocketFactory factory = sc.getSocketFactory();
    try{
    // method to load the values of the strings strCabecalhoMsg and strDadosMsg
    carregarXMLCabecalhoDados();
    SSLSocket socket =(SSLSocket)factory.createSocket(HTTPS_ADDRESS, PORT_NUMBER);
    socket.startHandshake();
    String [] arr = socket.getEnabledProtocols();
    URL url = new URL("https://10.200.140.117/dirNotes");
    HttpsURLConnection.setDefaultSSLSocketFactory(factory);
    HttpsURLConnection urlc = (HttpsURLConnection) url.openConnection();
    urlc.setDoInput(true);
    urlc.setUseCaches(false);
    Object[] params = {strCabecalhoMsg, strDadosMsg};
    Service service = new Service();
    Call call = (Call) service.createCall();
    call.setTargetEndpointAddress(url);
    call.setOperationName("serviceName");
    String ret = (String) call.invoke(params);
    System.out.println("Result: " + ret);
    catch (UnknownHostException uhe) {
    uhe.printStackTrace();
    System.err.println(uhe);
    catch (Exception uhe) {
    uhe.printStackTrace();
    System.err.println(uhe);
    private static void carregarXMLCabecalhoDados()
    try
    BufferedReader input = new BufferedReader( new FileReader("notas/cabecalho.xml"));
    String str;
    while((str=input.readLine()) != null)
    strCabecalhoMsg += str ;
    System.out.println("Cabe�a: " + strCabecalhoMsg);
    input = new BufferedReader( new FileReader("notas/nota.xml"));
    while((str=input.readLine()) != null)
    strDadosMsg += str ;
    System.out.println("Nota: " + strDadosMsg);
    catch (FileNotFoundException e)
    // TODO Auto-generated catch block
    e.printStackTrace();
    catch (IOException e)
    // TODO Auto-generated catch block
    e.printStackTrace();
    _THE TRACE_
    adding as trusted cert:
    Subject: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Issuer: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Algorithm: RSA; Serial number: 0x1
    Valid from Fri Jun 25 21:19:54 BRT 1999 until Tue Jun 25 21:19:54 BRT 2019
    *others trusted certs*
    trigger seeding of SecureRandom
    done seeding SecureRandom
    export control - checking the cipher suites
    export control - no cached value available...
    export control - storing legal entry into cache...
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1198158630 bytes = { 48, 135, 53, 24, 112, 72, 104, 220, 27, 114, 37, 42, 25, 77, 224, 32, 12, 58, 90, 217, 232, 3, 104, 251, 93, 82, 40, 91 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    main, WRITE: TLSv1 Handshake, length = 73
    main, WRITE: SSLv2 client hello message, length = 98
    main, READ: TLSv1 Handshake, length = 3953
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1198158523 bytes = { 56, 166, 181, 215, 86, 245, 8, 55, 214, 108, 128, 50, 8, 11, 0, 209, 38, 62, 187, 185, 240, 231, 56, 161, 212, 111, 194, 79 }
    Session ID: {222, 2, 0, 0, 147, 179, 182, 212, 18, 34, 199, 100, 168, 167, 48, 116, 140, 186, 151, 153, 226, 168, 163, 174, 24, 83, 208, 73, 179, 57, 86, 137}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V3
    *many chains and related data*
    Found trusted certificate:
    Version: V3
    Subject:
    *many trusted certificates and related data*
    *** ServerHelloDone
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    Random Secret: { 3, 1, 117, 112, 233, 166, 240, 9, 226, 67, 53, 111, 194, 84, 124, 103, 197, 28, 17, 36, 32, 48, 145, 166, 161, 61, 30, 63, 153, 214, 137, 113, 222, 204, 138, 77, 212, 75, 65, 192, 159, 215, 69, 156, 47, 188, 179, 219 }
    main, WRITE: TLSv1 Handshake, length = 134
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 75 70 E9 A6 F0 09 E2 43 35 6F C2 54 7C 67 ..up.....C5o.T.g
    0010: C5 1C 11 24 20 30 91 A6 A1 3D 1E 3F 99 D6 89 71 ...$ 0...=.?...q
    0020: DE CC 8A 4D D4 4B 41 C0 9F D7 45 9C 2F BC B3 DB ...M.KA...E./...
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 47 6A 73 26 30 87 35 18 70 48 68 DC 1B 72 25 2A Gjs&0.5.pHh..r%*
    0010: 19 4D E0 20 0C 3A 5A D9 E8 03 68 FB 5D 52 28 5B .M. .:Z...h.]R([
    Server Nonce:
    0000: 47 6A 73 BB 38 A6 B5 D7 56 F5 08 37 D6 6C 80 32 Gjs.8...V..7.l.2
    0010: 08 0B 00 D1 26 3E BB B9 F0 E7 38 A1 D4 6F C2 4F ....&>....8..o.O
    Master Secret:
    0000: 0B 3A 71 F8 BB 79 5E 07 78 C2 5F 13 4F 92 9D 87 .:q..y^.x._.O...
    0010: CF 69 0D 07 78 D2 59 46 1E C3 C1 5B A2 DB 04 B9 .i..x.YF...[....
    0020: 42 60 92 48 59 8E FD FD C3 5B BD 00 9C 54 7A 7E B`.HY....[...Tz.
    Client MAC write Secret:
    0000: 33 7C 19 C4 75 D2 CE 82 39 98 37 E5 7D 20 CB B1 3...u...9.7.. ..
    Server MAC write Secret:
    0000: 1E 1E 48 C7 D4 77 23 E4 22 26 8B 98 2E 92 5C 95 ..H..w#."&....\.
    Client write key:
    0000: EE 05 39 76 B2 85 63 6C F7 70 30 CB 6D 08 07 54 ..9v..cl.p0.m..T
    Server write key:
    0000: 5C 2E 3B 5E DC D9 EC C5 04 C4 D5 B5 12 11 B9 08 \.;^............
    ... no IV for cipher
    main, WRITE: TLSv1 Change Cipher Spec, length = 1
    *** Finished
    verify_data: { 143, 115, 243, 131, 242, 244, 12, 44, 191, 172, 205, 122 }
    main, WRITE: TLSv1 Handshake, length = 32
    main, READ: TLSv1 Change Cipher Spec, length = 1
    main, READ: TLSv1 Handshake, length = 32
    *** Finished
    verify_data: { 231, 215, 37, 250, 177, 121, 111, 192, 11, 41, 1, 165 }
    %% Cached client session: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    setting up default SSLSocketFactory
    use default SunJSSE impl class: com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl
    class com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl is loaded
    keyStore is : Certificados/certificadoSondaMonitor.jks
    keyStore type is : JKS
    keyStore provider is :
    init keystore
    init keymanager of type SunX509
    trustStore is: Certificados\cacerts
    trustStore type is : jks
    trustStore provider is :
    init truststore
    adding as trusted cert:
    Subject: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Issuer: [email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Algorithm: RSA; Serial number: 0x1
    Valid from Fri Jun 25 21:19:54 BRT 1999 until Tue Jun 25 21:19:54 BRT 2019
    adding as trusted cert:
    * many certificates*
    init context
    trigger seeding of SecureRandom
    done seeding SecureRandom
    instantiated an instance of class com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl
    export control - checking the cipher suites
    export control - found legal entry in cache...
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1198158632 bytes = { 93, 1, 41, 236, 165, 146, 251, 117, 129, 195, 129, 72, 245, 181, 43, 48, 80, 251, 244, 198, 223, 85, 82, 101, 20, 159, 17, 26 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    main, WRITE: TLSv1 Handshake, length = 73
    main, WRITE: SSLv2 client hello message, length = 98
    main, READ: TLSv1 Handshake, length = 3953
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1198158525 bytes = { 109, 114, 234, 1, 130, 97, 251, 9, 61, 105, 56, 246, 239, 222, 97, 143, 22, 254, 65, 213, 10, 204, 153, 67, 237, 133, 223, 48 }
    Session ID: {23, 30, 0, 0, 26, 129, 168, 21, 252, 107, 124, 183, 171, 228, 138, 227, 94, 17, 195, 213, 216, 233, 205, 2, 117, 16, 21, 65, 123, 119, 171, 109}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-2, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    many chains again
    *** ServerHelloDone
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    Random Secret: { 3, 1, 116, 247, 155, 227, 25, 25, 231, 129, 199, 76, 134, 222, 98, 69, 149, 224, 75, 6, 60, 121, 115, 216, 244, 246, 102, 92, 188, 64, 113, 56, 190, 43, 32, 51, 90, 254, 141, 184, 71, 48, 41, 29, 173, 180, 46, 116 }
    main, WRITE: TLSv1 Handshake, length = 134
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 74 F7 9B E3 19 19 E7 81 C7 4C 86 DE 62 45 ..t........L..bE
    0010: 95 E0 4B 06 3C 79 73 D8 F4 F6 66 5C BC 40 71 38 ..K.<ys...f\.@q8
    0020: BE 2B 20 33 5A FE 8D B8 47 30 29 1D AD B4 2E 74 .+ 3Z...G0)....t
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 47 6A 73 28 5D 01 29 EC A5 92 FB 75 81 C3 81 48 Gjs(].)....u...H
    0010: F5 B5 2B 30 50 FB F4 C6 DF 55 52 65 14 9F 11 1A ..+0P....URe....
    Server Nonce:
    0000: 47 6A 73 BD 6D 72 EA 01 82 61 FB 09 3D 69 38 F6 Gjs.mr...a..=i8.
    0010: EF DE 61 8F 16 FE 41 D5 0A CC 99 43 ED 85 DF 30 ..a...A....C...0
    Master Secret:
    0000: FC C9 75 A4 2B F1 8A D8 AD 16 27 70 B7 E4 64 6C ..u.+.....'p..dl
    0010: 05 D7 33 4A 53 91 2F 51 1E 32 D3 3B 2E 18 2E BC ..3JS./Q.2.;....
    0020: E4 16 EE 2F 01 A1 08 48 19 09 32 68 CE 69 8F B1 .../...H..2h.i..
    Client MAC write Secret:
    0000: F1 95 3B CE 06 5B 8A 9B EC DE 1C 8F B4 AB D9 36 ..;..[.........6
    Server MAC write Secret:
    0000: BF 52 36 48 63 24 FE 74 22 BE 00 99 BE F0 6E E5 .R6Hc$.t".....n.
    Client write key:
    0000: 9F 08 0A 6E 8F 54 A3 66 1C BC C7 6B AE 88 67 E0 ...n.T.f...k..g.
    Server write key:
    0000: 06 A1 0B 4F 69 DE 5F AF 0E 6B B5 04 ED E8 EA F5 ...Oi._..k......
    ... no IV for cipher
    main, WRITE: TLSv1 Change Cipher Spec, length = 1
    *** Finished
    verify_data: { 148, 93, 105, 42, 110, 212, 55, 2, 150, 191, 13, 111 }
    main, WRITE: TLSv1 Handshake, length = 32
    main, READ: TLSv1 Change Cipher Spec, length = 1
    main, READ: TLSv1 Handshake, length = 32
    *** Finished
    verify_data: { 171, 150, 45, 10, 99, 35, 67, 174, 35, 52, 23, 192 }
    %% Cached client session: [Session-2, SSL_RSA_WITH_RC4_128_MD5]
    main, setSoTimeout(600000) called
    main, WRITE: TLSv1 Application Data, length = 282
    main, WRITE: TLSv1 Application Data, length = 8208
    main, WRITE: TLSv1 Application Data, length = 1102
    main, READ: TLSv1 Application Data, length = 1830
    main, received EOFException: ignored
    main, called closeInternal(false)
    main, SEND TLSv1 ALERT: warning, description = close_notify
    main, WRITE: TLSv1 Alert, length = 18
    main, called close()
    main, called closeInternal(true)
    AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (404)Not Found
    faultActor:
    faultNode:
    faultDetail:
         {}:return code: 404
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <HTML><HEAD><TITLE>The page cannot be found</TITLE>
    <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
    <STYLE type="text/css">
    BODY { font: 8pt/12pt verdana }
    H1 { font: 13pt/15pt verdana }
    H2 { font: 8pt/12pt verdana }
    A:link { color: red }
    A:visited { color: maroon }
    </STYLE>
    </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
    <h1>The page cannot be found</h1>
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
    <hr>
    <p>Please try the following:</p>
    <ul>
    <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
    <li>If you reached this page by clicking a link, contact
    the Web site administrator to alert them that the link is incorrectly formatted.
    </li>
    <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
    </ul>
    <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
    <hr>
    <p>Technical Information (for support personnel)</p>
    <ul>
    <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
    <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
    and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
    </ul>
    </TD></TR></TABLE></BODY></HTML>
         {http://xml.apache.org/axis/}HttpErrorCode:404
    (404)Not Found
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at principal.SSLClient.main(SSLClient.java:86)
    (404)Not Found
    -----

    I'm having the same problem with the same URL. I try many configuration and nothing works. My code is:
    public class NFeClient {
         static{
              Security.addProvider(new BouncyCastleProvider());
         public static void main(final String[] args) throws Exception {
              final String path = "https://homologacao.nfe.sefaz.rs.gov.br/ws/nfeconsulta/nfeconsulta.asmx";
              final String keyStoreProvider = "BC";
              final String keyStoreType = "PKCS12";
              final String keyStore = "/home/mendes/certificados/cert.p12";
              final String keyStorePassword = "xxxx";
              System.setProperty("javax.net.ssl.keyStoreProvider",keyStoreProvider);
              System.setProperty("javax.net.ssl.keyStoreType",keyStoreType);
              System.setProperty("javax.net.ssl.keyStore",keyStore);
              System.setProperty("javax.net.ssl.keyStorePassword",keyStorePassword);
              System.setProperty("javax.net.ssl.trustStore","/home/mendes/workspace/NFE/jssecacerts");
              final SSLContext context =  SSLContext.getInstance("TLS");
              final KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
              final KeyStore ks = KeyStore.getInstance(keyStoreType);
              ks.load(new FileInputStream(keyStore), keyStorePassword.toCharArray());
              kmf.init(ks, keyStorePassword.toCharArray());
              context.init(kmf.getKeyManagers(), null, null);
              final URL url = new URL(path);
              final HttpsURLConnection httpsConnection = (HttpsURLConnection) url.openConnection();
              httpsConnection.setDoInput(true);
              httpsConnection.setRequestMethod("GET");
              httpsConnection.setRequestProperty("Host", "iis-server");
              httpsConnection.setRequestProperty("UserAgent", "Mozilla/4.0");
              httpsConnection.setSSLSocketFactory(context.getSocketFactory());
              try{
                   final InputStream is = httpsConnection.getInputStream();
                   final byte[] buff = new byte[1024];
                   int readed;
                   while((readed = is.read(buff)) > 0)
                        System.out.write(buff,0,readed);
              }catch(final IOException ioe){
                   ioe.printStackTrace();
    }and the response of the server is always the same:
    java.io.IOException: Server returned HTTP response code: 403 for URL: https://homologacao.nfe.sefaz.rs.gov.br/ws/nfeconsulta/nfeconsulta.asmx
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1241)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:234)
         at br.com.esales.nfe.signer.client.NFeClient.main(NFeClient.java:60)Edited by: mendes on Apr 25, 2008 9:56 AM

  • JBO-26080 error during commit

    Hi,
    I am getting a JBO-26080 error attempting to commit a view using the Business component browser.
    The error is:
    (oracle.jbo.DMLException) JBO-26080: Error while selecting entity for Bank
    The view, entity and stack trace are below.
    Any insight appreciated.
    Dave
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <ViewObject
         xmlns="http://xmlns.oracle.com/bc4j"
         Name="BankbranchBankBlkView"     
         SelectList="Bank.FOREIGN_NAME,Bank.NAME,Bank.BANK_ID"
         FromList="BANK Bank"
         BindingStyle="OracleName"
         CustomQuery="false"
    PageIterMode="Full"
    UseGlueCode="false">
    <DesignTime>
    <Attr Name="_version" Value="11.1.1.45.24"/>
    <Attr Name="_codeGenFlag2" Value="Access|VarAccess"/>
    </DesignTime>
         <EntityUsage
              Name="Bank"
              Entity="com.mni.mednext.model.Bank" >
              <DesignTime>
                   <Attr Name="_EntireObjectTable" Value="false" />
                   <Attr Name="_queryClause" Value="false" />
              </DesignTime>
         </EntityUsage>
         <ViewAttribute
              Name="ForeignName"
              IsNotNull="true"
              AliasName="FOREIGN_NAME"
              EntityAttrName="ForeignName"
              EntityUsage="Bank">
         </ViewAttribute>
         <ViewAttribute
              Name="Name"
              IsNotNull="true"
              AliasName="NAME"
              EntityAttrName="Name"
              EntityUsage="Bank">
         </ViewAttribute>
         <ViewAttribute
              Name="BankId"
              IsNotNull="true"
              AliasName="BANK_ID"
              EntityAttrName="BankId"
              EntityUsage="Bank">
         </ViewAttribute>
    </ViewObject>
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE Entity SYSTEM "jbo_03_01.dtd">
    <!---->
    <Entity
         xmlns="http://xmlns.oracle/com/bc4j"
         Name="Bank"
         DBObjectType="table"
         DBObjectName="BANK"
         AliasName="Bank"
         BindingStyle="OracleName"
         UseGlueCode="false"
    xmlns:jboxml="http://xmlns.oracle.com/bc4j">
    <Attribute
    Name="BankId"
    IsNotNull="true"
    Precision="6"
    Scale="0"
    ColumnName="BANK_ID"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR"
    TableName="BANK"
    PrimaryKey="true">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DisplaySize"
    Value="6"/>
    </jboxml:DesignTime>
    </Attribute>
    <Attribute
    Name="Name"
    IsNotNull="true"
    Precision="50"
    Scale="0"
    ColumnName="NAME"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR"
    TableName="BANK">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DisplaySize"
    Value="50"/>
    </jboxml:DesignTime>
    </Attribute>
    <Attribute
    Name="BankIdentificationCode"
    Precision="20"
    Scale="0"
    ColumnName="BANK_IDENTIFICATION_CODE"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR"
    TableName="BANK">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DisplaySize"
    Value="20"/>
    </jboxml:DesignTime>
    </Attribute>
    <Attribute
    Name="ForeignName"
    IsNotNull="true"
    Precision="50"
    Scale="0"
    ColumnName="FOREIGN_NAME"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR"
    TableName="BANK">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DisplaySize"
    Value="50"/>
    </jboxml:DesignTime>
    </Attribute>     
         <Key
              Name="NameNn" >
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DBObjectName"
    Value="Name_NN"/>
    <jboxml:Attr
    Name="_isCheck"
    Value="true"/>
    <jboxml:Attr
    Name="_checkCondition"
    Value='"NAME" IS NOT NULL'/>
    </jboxml:DesignTime>
    <jboxml:AttrArray
    Name="Attributes">
    <jboxml:Item
    Value="com.mni.mednext.model.Bank.Name"/>
    </jboxml:AttrArray>
    </Key>
    <Key
    Name="BankPk"
    PrimaryKey="true">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DBObjectName"
    Value="BANK_PK"/>
    </jboxml:DesignTime>
    </Key>
    <Key
    Name="ForeignNameNn">
    <jboxml:DesignTime>
    <jboxml:Attr
    Name="_DBObjectName"
    Value="ForeignName_NN"/>
    <jboxml:Attr
    Name="_isCheck"
    Value="true"/>
    <jboxml:Attr
    Name="_checkCondition"
    Value='"FOREIGNNAME" IS NOT NULL'/>
    </jboxml:DesignTime>
    <jboxml:AttrArray
    Name="Attributes">
    <jboxml:Item
    Value="com.mni.mednext.model.Bank.ForeignName"/>
    </jboxml:AttrArray>
    </Key>
    <jboxml:DesignTime>
    <jboxml:AttrArray
    Name="_publishEvents"/>
    <jboxml:Attr
    Name="_version"
    Value="11.1.1.46.84"/>
    <jboxml:Attr
    Name="_codeGenFlag2"
    Value="Access"/>
    </jboxml:DesignTime>
    </Entity>
    oracle.jbo.DMLException: JBO-26080: Error while selecting entity for Bank
         at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelectForAltKey(OracleSQLBuilderImpl.java:1116)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:542)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:6804)
         at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:4723)
         at oracle.jbo.server.EntityImpl.beforePost(EntityImpl.java:5207)
         at oracle.jbo.server.EntityImpl.postChanges(EntityImpl.java:5361)
         at oracle.jbo.server.DBTransactionImpl.doPostTransactionListeners(DBTransactionImpl.java:3129)
         at oracle.jbo.server.DBTransactionImpl.postChanges(DBTransactionImpl.java:2937)
         at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2061)
         at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2263)
         at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1530)
         at oracle.adf.model.binding.DCDataControl.callCommitTransaction(DCDataControl.java:1380)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1237)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2019)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:678)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:372)
         at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:93)
         at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:324)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5501)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
         at java.awt.Component.processEvent(Component.java:5266)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3968)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1778)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:77)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:111)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:174)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:472)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:422)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1015)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:204)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:857)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:941)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1280)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3538)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3590)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1341)
         at oracle.jbo.server.OracleSQLBuilderImpl.doEntitySelectForAltKey(OracleSQLBuilderImpl.java:869)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntitySelect(BaseSQLBuilderImpl.java:542)
         at oracle.jbo.server.EntityImpl.doSelect(EntityImpl.java:6804)
         at oracle.jbo.server.EntityImpl.lock(EntityImpl.java:4723)
         at oracle.jbo.server.EntityImpl.beforePost(EntityImpl.java:5207)
         at oracle.jbo.server.EntityImpl.postChanges(EntityImpl.java:5361)
         at oracle.jbo.server.DBTransactionImpl.doPostTransactionListeners(DBTransactionImpl.java:3129)
         at oracle.jbo.server.DBTransactionImpl.postChanges(DBTransactionImpl.java:2937)
         at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2061)
         at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2263)
         at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1530)
         at oracle.adf.model.binding.DCDataControl.callCommitTransaction(DCDataControl.java:1380)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1237)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2019)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:678)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:372)
         at oracle.jbo.jbotester.NavigationBar.doAction(NavigationBar.java:93)
         at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:324)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5501)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
         at java.awt.Component.processEvent(Component.java:5266)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3968)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1778)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    I have added relaxAutoCommit = true in Glassfish, that works perfectly. Glassfish Admin Console > JDBC Connection Pools (Select own pool) > Additional properties and add relaxAutoCommit = true.
    http://docs.oracle.com/cd/E19798-01/821-1752/gbhbr/index.html

Maybe you are looking for

  • How can I edit the Subject Line of an email I've received?

    When the sender inserts vague or misleading text in the Subject Line (or leaves it blank), sometimes I'd like to edit it - makes organization and retrieval of information which might be in the email easier for me. I've tried opening the email file wi

  • Finding out Concurrent Users to Apache

    Hi there. I'm in the middle of doing a sizing or a Ias, and I was trying to find out how many concurrent/total users are using a server, by analizing a nice 800 mb access_log. The thing is that I was able to find out how many users access a parcitula

  • TS4268 cannot activate factime on new ipad mini

    HI, Just got a new ipad mini for daughter to replace older 3rd generation itouch.  I cannot activate her factime through her email address.  Eventhough the password and spelling are correct, no luck.  I even tried to reset the password by having a li

  • Systemd nfs client mount share ???

    Just installed systemd, systemd-arch-units and initscripts-systemd  as per the wiki and all went well except mounting a nfs share from my server. (networking is OK!) This is the old working mount command run from rc.local before installing systemd; m

  • Ehp4 downtime in HA ( windows 2008)

    Hello gurus ,                          Before the downtime phase , we got the message at node2 where the ehpi tool is running "You are running a so-called High-availibility setup.To enter the downtime it is necassary to stop the ASCS instance manuall