Oracle.dacf.control.swing.GridControl Sorting

Is there an easy way (as with borland.jbcl.swing.GridControl) to
add a listener to oracle.dacf.control.swing.GridControl (or call
a method) such that it will re-sort the table based on the column
header that a user clicks?
I think the equivalent property in borland.jbcl.swing.GridControl
is "sortOnHeaderClick"
Thanks,
Matt
null

Thank you very much for you help. But it was a litle late.
Because yesterday I had found this way and did it myself.
But nevertheless thank you indeed.
And I met a litle problem wneh I tried change this method.
I need define type of column. Because I wont make
Caseinsensitive sort only for string fields.
It looks like simle but I have only ScrollableRowsetAccess and
ResultSetInfo. And they give me type only by index of field.
I try to find index by ColumnName parameter. But its name very
different with name of ScrollableRowsetAccess and ResultSetInfo.
Could you give me advice for solve this problem.
Thank you again.
Yuri

Similar Messages

  • To JDev Team:  Sorting in oracle.dacf.control.swing.GridControl ?!!

    My customers want to get caseInsensytive sorting in
    GridControl.
    Is it possible and what should I do for it?
    Thank you.
    [email protected]

    Thank you very much for you help. But it was a litle late.
    Because yesterday I had found this way and did it myself.
    But nevertheless thank you indeed.
    And I met a litle problem wneh I tried change this method.
    I need define type of column. Because I wont make
    Caseinsensitive sort only for string fields.
    It looks like simle but I have only ScrollableRowsetAccess and
    ResultSetInfo. And they give me type only by index of field.
    I try to find index by ColumnName parameter. But its name very
    different with name of ScrollableRowsetAccess and ResultSetInfo.
    Could you give me advice for solve this problem.
    Thank you again.
    Yuri

  • Picklists when using oracle.dacf Textfield or gridcontrols

    Hi
    I was previously using Jdev1.0 and I was able to have a picklist
    Lov using JBCL field controls and gridcontrol.All I had to do
    was to map the picklist editor to the Querydata set and bind it
    to a column.
    Now I am using an infobus gridcontrol.How can I have an piclist
    LOv here.What are the dacf controls that support this.
    How do I bind it to the query in the Rowset info??
    Incase I need to code this explicitly to get it working , can
    you just send in a small example on how to do this..
    Thanks
    Ram
    null

    this can happen for several reasons. Based upon the stacktrace and your comments, it looks like the connection.properties file wasn't placed somewhere in the class path. If that is not the case, please make sure that all of the necessary jars are over on linux and that the classpath is identical to the one used under NT. A good way to check this is to take a look at the command line that is displayed in the message window when the application is run from within JDev.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Heikki Vilkkinen ([email protected]):
    ResultSetInfo: ResultSet XxpsError could not be opened because of problems opening one or more attributes.
    [oracle.dacf.dataset.SessionInfo name=Session1]
    [oracle.dacf.dataset.RowSetInfo name=XxpsError]
    8
    [Loracle.dacf.dataset.ColumnInfo;@7b3babc8
    oracle.dacf.dataset.DataSourceOperationException: ResultSetInfo: ResultSet XxpsError could not be opened because of problems opening one or more attributes.
    at oracle.dacf.dataset.ResultSetInfo.openProducerObject(ResultSetInfo.java, Compiled Code)
    at oracle.dacf.dataset.ProducerObject.open(ProducerObject.java, Compiled Code)
    at oracle.dacf.dataset.RowSetInfo.open(RowSetInfo.java, Compiled Code)
    at oracle.dacf.dataset.SessionInfo.openChildren(SessionInfo.java, Compiled Code)
    at oracle.dacf.dataset.ProducerObject.open(ProducerObject.java, Compiled Code)
    at oracle.dacf.dataset.SessionInfo.publishSession(SessionInfo.java, Compiled Code)
    at abc.fabc.<init>(fabc.java, Compiled Code)
    at abc.abc.<init>(abc.java, Compiled Code)
    at abc.abc.main(abc.java, Compiled Code)
    What is the reason for this phenomena?
    Application developed using JDeveloper 3.1
    data form wizard works under NT well but
    when I copy classes and xml-files to Linux
    and run the application it shows standard
    login dialog but after login it fails
    to execute query (rowsetinfo)
    <HR></BLOCKQUOTE>
    null

  • FocusLost event/navigatedOutColumn to non-DACF controls

    In the textAreaControl source I see:
    // Focus Listener implementation
    * This method is an implementaion side effect
    public void focusLost(FocusEvent event)
    When I do a focus lost event off the property panel in Designer... and add code to simply do a System.out.println("Focus Lost") on the control... nothing happens when I move to another control and the textareacontrol lost focus.
    The correct approach seems to be use the NavigatedOutColumn event which does fire. ( hurrah! )...
    BUT.... as I had a suspicion... if I enter into a DACF control, and then click in a NON-DACF control ( in this case, a secondary plain jtextfield password confirmation field )... neither FocusLost nor NavigatedOutColumn fires.
    It sorta makes sense, because we haven't navigated into a new Column. ( Is this a terminology conflict/level mix problem? It seems to be relating Column to a rowSetInfo AttributeInfo / EO/VO attribute?
    Note that, at least in my case, there are PLENTY of non DACF controls. Particularly JButtons.
    As mentioned before, I avoided ButtonControls because I had no DataItemName to associate with 'em... which seemed to cause grief in other places ( in my memory using 3.O ). I actually went back and changed all the ButtonControls I had to JButtons.
    This puts me into a rather interesting quandary... or is it safe in 3.2/JRE1.3 to use ButtonControls with no property set for the DataItemName()?
    TIA

    You are being tripped up by two things. One is a bug and the other is a difference between the 3.2 and 9i (aka 5.0) versions of the NavigationManager. The ComponentNavigationMonitor is OK though. Both of these can be worked around using the ComponentNavigationManager though the resultant code will not be compatible with the code released in the next version of JDeveloper. The solution is to rewrite the focusGained() method and write the new method _applyEdits(). The rewritten and new methods are below in a new version of the class. Notice the package name change; it is now in a new package called oracle.dacf.unsupported. This way, you can just change the package name when the next version is released:
    <code>
    // oracle/dacf/unsupported/ComponentNavigationMonitor.java
    // Oracle JDeveloper
    // Copyright (c) 2001 by Oracle Corporation
    // All rights reserved.
    package oracle.dacf.unsupported;
    // imports
    import java.awt.Component;
    import java.awt.event.FocusAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import javax.swing.SwingUtilities;
    import oracle.dacf.control.ApplyEditsListener;
    import oracle.dacf.control.ApplyEditsValidationException;
    import oracle.dacf.control.Control;
    import oracle.dacf.control.NavigationManager;
    ** The ComponentNavigationMonitor allows a Component, AWT or Swing,
    ** to be used in an application and still have the DAC navigation and
    ** validation event framework generate the proper events at the
    ** appropriate times. Normally, non-Control components can not
    ** participate in the DAC navigation and validation event framework
    ** because they don't have the mechanisms to notify the framework that
    ** the focus has moved.
    ** This class is implemented as a singleton and could be hooked into every
    ** non-Control Component that is displayed on the screen. It should not be
    ** attached to DAC Controls because these classes already contain the
    ** functionality contained in this class. Attaching this class to a DAC
    ** Control will minimally result in double navigation and validation
    ** eventing with the resultant performance degradation. Redundant
    ** navigation and validation could also result in anomalous application
    ** behavior.
    ** The DAC design-time and runtime framework does not automatically
    ** register non-Controls with the ComponentNavigationMonitor because of
    ** the ambiguity surrounding when this should be done. If the components
    ** are constructed using a Factory design pattern, then the factory would
    ** be the optimal place to attach this listener. If your application
    ** doesn't use this approach then you will have to individually hook each
    ** component. (Sorry, but there is no way around this fact.) You might
    ** try something like what the following code fragment illustrates in the
    ** method that instantiates the component:
    ** <blockquote>
    ** <code>
    ** TextField dateWidget =
    ** new TextField((new Date()).toLocaleString());
    ** ComponentNavigationMonitor.observe(dateWidget);
    ** </code>
    ** </blockquote>
    ** For example, if JDeveloper was used to generate code, via either the
    ** DAC wizards or the visual designer, then you would place this code in
    ** the jbInit() method of the panel or frame.
    ** @author Donald King
    public class ComponentNavigationMonitor
    extends FocusAdapter
    private NavigationManager nm;
    private static ComponentNavigationMonitor monitor;
    private static Object observeGate = new Object();
    private static final boolean _DEBUG = true;
    private ComponentNavigationMonitor()
    } // ComponentNavigationMonitor
    ** Responds to the gaining of focus by a component.
    ** This method is responsible for causing validation to be performed and
    ** restoring forcus to the proper control if validation fails.
    public void focusGained(FocusEvent evt)
    Control ctrl;
    if (nm == null)
    nm = NavigationManager.getNavigationManager();
    ctrl = nm.getFocusedControl();
    // the getChangeLevel() parameters are reversed to workaround
    // bug 1678351; fixed for 9i (aka 5.0)
    if (ctrl != null &&
    !_applyEdits(ctrl) &&
    !nm.validateFocusedControl(nm.getChangeLevel(null,ctrl)))
    Component c = ctrl.getComponent();
    // Paranoia is a good thing; the following is expensive, only do
    // it if we must
    if (c != null)
    SwingUtilities.invokeLater(new DelayedFocus(c));
    else
    // move the NavigationManager into the proper state so that it
    // can properly respond to the next control that gains focus
    nm.validateFocusChange(null);
    ** This functionality is embedded in the 9i (aka 5.0) version of
    ** NavigationManager.validateFocusedControl(int changeLevel)
    private boolean _applyEdits(Control ctrl)
    boolean ok = true;
    if (ctrl instanceof ApplyEditsListener)
    try
    ((ApplyEditsListener)ctrl).applyEdits();
    catch(ApplyEditsValidationException aeve)
    ok = false;
    return(ok);
    ** Registers the ComponentNavigationMonitor as a FocusListener.
    public static void observe(Component c)
    synchronized(observeGate)
    if (monitor == null)
    monitor = new ComponentNavigationMonitor();
    c.addFocusListener(monitor);
    ** Unregisters the ComponentNavigationMonitor as a FocusListener.
    public static void unobserve(Component c)
    synchronized(observeGate)
    if (monitor == null)
    monitor = new ComponentNavigationMonitor();
    c.removeFocusListener(monitor);
    private class DelayedFocus
    implements Runnable
    private Component pending;
    DelayedFocus(Component c)
    pending = c;
    public void run()
    if (pending != null)
    pending.requestFocus();
    private void _debug(String s)
    if (_DEBUG)
    System.out.println("ComponentNavigationMonitor: " + s);
    } // _debug
    } // ComponentNavigationMonitor
    // oracle/dacf/unsupported/ComponentNavigationMonitor.java
    // Oracle JDeveloper
    // Copyright (c) 2001 by Oracle Corporation
    // All rights reserved.
    </code>

  • New to Oracle grid control

    Hi,
    I'm a newbies in Oralce grid control. next month I will be start my new job which will involved in deploy and administer oracle grid control release 3.
    I try to performed some setup just to have an initial idea how the grid control works. I have an Oracle RAC database (10.2.0.3) running on RHEL 4, 2 nodes.
    Is grid control come together with the Oracle database software installation? or I have to download separately?
    How is the grid control installation should be in place? Installation on the same database server or separate server? If both are allow which is the common approach?
    Since my RAC database running in Linux, is it a must to have the grid control for Linux version? can I install into a windows server and managing all linux databases? Which should be the common approach?
    Appreciate of any feedback given.
    Many Thanks
    best regards,
    chong

    Gridcontrol is separate software,don't confuse it with standalone DBConsole,which is part of a database creation. The latter can serve this particular database only.
    If you have the resources, install gridcontrol separately. It needs some resources and may interfere with the monitored database(s).
    You can install gridcontrol (more exactly the management services) everywhere, on Windows,Linux,Solaris .... .
    What you need on the monitored machines is the correct agent for the platform. So you don't need gridcontrol for Linux, but you need the agent for Linux.
    Werner

  • Need information on Installing oracle grid control on 11g R2

    Hi,
    i am new oracle grid control and its installaion.
    I dont have any idea abt OMS and Agent.
    following steps i have perfomed.
    1) I have 1 DB on my machine.
    2) download Grid software linux.x64_11gR2_grid.zip.
    3) run the runinstaller.
    4) while opening GUI of run installer there are 4 options.i have selected option no 4 - install grid software only.
    Now please help me what is next step which i have to perform.How will I up My grid control .How will I register My DB in Grid.
    I am using grid control because i have to configure EM plug in for Times Ten.
    Regards,

    Hi,
    If you want to use EM 11g Grid Control on 64-bit Linux, you should install version 11.1.0.1.0, which is available from here:
    http://www.oracle.com/technetwork/oem/grid-control/downloads/linuxx8664soft-085949.html
    Note that the latest version of EM is 12c; however, if you still want to go with EM 11g, the following Support note documents the installation steps and has references to other helpful notes:
    Step by Step Installation of Enterprise Manager Grid Control 11.1.0.1 (Doc ID 1059516.1)
    By the way, the Concepts guide below has information about the EM 11g components including the OMS and agent:
    http://docs.oracle.com/cd/E11857_01/em.111/e11982/overview.htm#CEGBFJIC
    Regards,
    - Loc

  • Oracle databse control console with Oracle EBS R12.1.1

    Hello,
    Can we configure Oracle database control EM console through <ORACLE_HOME>/bin/emca for dbtier of Oracle E-business Suite R12.1.1.
    We have database version "Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production".

    Can we configure Oracle database control EM console through <ORACLE_HOME>/bin/emca for dbtier of Oracle E-business Suite R12.1.1.
    We have database version "Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production".It is possible and we did discuss this many time in the forum before -- Please see old threads for details.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=EM+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=458533.1&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • 'Scheduler' link in Oracle Database Control

    Hi all,
    In Oracle Database Control, I cannot see link to "Scheduler" under Administration tab page as described in the documentation or a link to "Manage Current Backups"
    How can I obtain those links?
    Please note that I'm speaking about Oracle EM Databse Control (that shipped with the datbase CD itself) and not the Database Grid Control product.
    Thanks in advance,
    Ahmed B.

    I have the same problem with Grid Control 10.1.0.4 on Sun Solaris 9. Target database are 10.1.0.4.0 64-bit, also on Solaris 9 64-bit. As described in Help, under "Administration" tab is sub-tab "Scheduler" with following links: Jobs, Schedules, Programs, Job Classes, Windows, Window Groups.
    Who knows, what I need to do for resolving this issue? I need scheduler administration!

  • How to create logical standby database without using Oracle Grid Control

    Hi All,
    I want to create Logical standby database on 11gr2 on RHEL 5 without using oracle Grid Control.
    I already have a primary database as well as physical standby database.
    What i want to create a logical standby database as well on the same machine where physical standby database is running.
    So anyone of you help me out to do that
    Thanks in advance

    Hi,
    Creating a Logical Standby Database
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14239/create_ls.htm#SBYDB00300
    Regards,
    Tom

  • Installation guide Oracle cloud Control Agents on a Windows failover cluste

    Hello Experts,
    i have to install Oracle cloud control agent on windows fail-over cluster. i could not found any document on oracle support site/ internet.
    here are the requirement:
    i have two hosts (host1 and host2) which are in windows cluster environment (active/passive). means, one node will hold the cluster service/resource at a time.
    if primary node (host1) is down, Microsoft cluster ware will fail-over cluster resource to host2 automatically.
    any one deployed 12c Agents on windows fail-over clustered environment. if yes, please provide hints / procedure.
    Thanks
    pavan

    Hi Pavan,
    Please find the following document:
    How to Configure Grid Control Agents in Windows HA - Failover Cluster Environments (Doc ID 464191.1)
    For 12C Agent install, you can proceed with the silent install passing a virtual hostname in silent method also using the following document:
    How to Install EM 12c Agent using Silent Install Method with Response File (Doc ID 1360083.1)
    Best Regards,
    Venkat

  • Monitoring Oracle Glassfish or Generic URL with Oracle Grid Control

    How are people monitoring Oracle Glassfish with Oracle Grid Control?
    I really just need to monitor the URL right now, is the only method to setup a system and monitor a generic web test with a beacon?

    I would think this is indeed the only way to monitor the URL.
    Perhaps you could try a solution in creating your own plug-in.
    Check http://www.oracle.com/technetwork/oem/extensions/index.html for this.
    Regards
    Rob
    http://oemgc.wordpress.com

  • Problem while installing Oracle Grid Control 10.2.0.2 in XP

    Hi Gurus,
    M trying to install Oracle Grid Control 10.2.0.2 in XP.
    This is the 4th day.
    Everything goes fine till Web Cache Configuration Assistant.
    After that the below error happens:
    Command = G:\OracleHomes\oms10g\jdk\bin\javaw.exe -DORACLE_HOME=G:\OracleHomes\oms10g -Djava.net.preferIPv4Stack=true -classpath G:\OracleHomes\oms10g\sysman\webapps\emd\WEB-INF\lib\webcachecfg.jar;G:\OracleHomes\oms10g\sysman\webapps\emd\WEB-INF\lib\emd.jar;G:\OracleHomes\oms10g\lib\emSDK.jar;G:\OracleHomes\oms10g\dcm\lib\dcm.jar;G:\OracleHomes\oms10g\jlib\repository.jar;G:\OracleHomes\oms10g\lib\xmlparserv2.jar;G:\OracleHomes\oms10g\jlib\emConfigInstall.jar;G:\OracleHomes\oms10g\jdbc\lib\classes12.zip;G:\OracleHomes\oms10g\jdbc\lib\nls_charset12.jar;G:\OracleHomes\oms10g\jlib\jndi.jar;G:\OracleHomes\oms10g\jlib\rt.jar;G:\OracleHomes\oms10g\jdk\lib\i18n.jar;G:\OracleHomes\oms10g\jlib\ldapjclnt10.jar;G:\OracleHomes\oms10g\jlib\ojmisc.jar;G:\OracleHomes\oms10g\j2ee\home\jazn.jar;G:\OracleHomes\oms10g\j2ee\home\jaas.jar oracle.ias.webcache.config.WebcacheConfig -oh G:\OracleHomes\oms10g
    2
    Failed in smi manipulation().
    Error initializing SMISessionManager.createSession().
    Resolution:
    Please make sure the file is in the correct location.
    Base Exception:
    This command requires communication with DCM daemon, the communication failed. The base exception is {0}.
    Resolution:
    Check the base exception to determine why the operation failed.
    oracle.ias.sysmgmt.exception.TaskException: Base Exception:
    This command requires communication with DCM daemon, the communication failed. The base exception is {0}.
    Resolution:
    Check the base exception to determine why the operation failed.
         at oracle.ias.sysmgmt.task.TaskMaster.daemon_exec(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.process(Unknown Source)
         at oracle.ias.sysmgmt.smi.remote.RemoteEntitySource.createRequestAndExecute(Unknown Source)
         at oracle.ias.sysmgmt.smi.remote.RemoteEntitySource.createRequestAndExecute(Unknown Source)
         at oracle.ias.sysmgmt.smi.remote.RemoteEntitySource.getRootEntity(Unknown Source)
         at oracle.ias.sysmgmt.entity.Session.<init>(Unknown Source)
         at oracle.ias.sysmgmt.smi.SMIEntryPoint.<init>(Unknown Source)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at oracle.ias.sysmgmt.smiapi.SMISessionManager.loadAndCreateInstance(Unknown Source)
         at oracle.ias.sysmgmt.smiapi.SMISessionManager.createSession(Unknown Source)
         at oracle.ias.sysmgmt.EntryPoint.getConfiguration(Unknown Source)
         at oracle.ias.webcache.config.WebcacheConfig.smiSetup(WebcacheConfig.java:489)
         at oracle.ias.webcache.config.WebcacheConfig.smiEnableWebcache(WebcacheConfig.java:454)
         at oracle.ias.webcache.config.WebcacheConfig.enableConfiguration(WebcacheConfig.java:299)
         at oracle.ias.webcache.config.WebcacheConfig.main(WebcacheConfig.java:87)
    Steps followed further:
    1) Have tried the below commands to check the status of dcmctl:
    G:\OracleHomes\oms10g\opmn\bin>G:\OracleHomes\oms10g\dcm\bin\dcmctl.bat getstate
    Current State for Instance:EnterpriseManager0.l-716429
    Component Type Up Status In Sync Status
    ================================================================================
    1 home OC4J Up True
    2 HTTP_Server HTTP_Server Up True
    2) Also tried the below command to check the status of opmnctl.
    D:\Documents and Settings\arijit>G:\OracleHomes\oms10g\opmn\bin\opmnctl.exe status
    Processes in Instance: EnterpriseManager0.l-716429
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | 2140 | Alive
    HTTP_Server | HTTP_Server | 3544 | Alive
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 2068 | Alive
    OC4J | home | 2560 | Alive
    WebCache | WebCache | 1800 | Alive
    WebCache | WebCacheAdmin | 1960 | Alive
    3) After that tried to "Retry" the Web cache configuration Assistant, but still the error is continuing.
    Please someone help.
    Regards,
    Arijit

    Hi,
    Have made the %WINDIR%\system32\drivers\etc\hosts file as below:
    #127.0.0.1 localhost
    172.16.58.203 L-716429
    And "Retry" Web cache configuration. Same error is popping up.
    Please help.

  • Cannot access OSB Web Tool after Oracle Grid Control 11g was implemented

    Hi Guys,
    Here's our environment:
    We have servers: serv010, serv004, serv005, test001. All are working on windows server 2003. We have implemented Oracle Grid Control as a requirement for adding targets into our admin server.
    server010:
    - originally has OEM database control configured.
    - this has a tape library configured.
    - this is the media server of out OSB tape backup that we are setting up.
    - we can access obtool and webtool in this server.
    serv004 and serv005 are clustered RAC nodes.
    test001 is our test environment.
    Before installing grid control:
    1. We can access OSB webtool on the media server (serv010)
    2. We can use OEM database control to access Oracle Secure Backup as well.
    3. OBTOOL is also working.
    What we did:
    1. We implemented Oracle Grid Conrtol 11 on pserv010 (which is also our OSB media server).
    2. All the targets are now accessible using the grid.
    What we noticed after Grid is now working:
    1. We can no longer access OSB Web Tool from the admin server (serv010)
    2. It says page cannot be displayed every time we launch the WebTool on our Starup programs.
    Before we can do the following:
    1. Access the web tool.
    2. Access the webtool using OEM Database Control.
    Here's the apache logs that we have:
    Program Files-Oracle-Backup-Apache-logs
    error_log:
    These are the messages in the error_log and I placed some notes on each part:
    When is was working fine:
    [Wed Apr 27 03:44:44 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 03:44:44 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 03:44:44 2011] [notice] Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/4.4.9 configured -- resuming normal operations
    [Wed Apr 27 03:44:44 2011] [notice] Server built: Aug 20 2010 11:56:27
    [Wed Apr 27 03:44:44 2011] [notice] Parent: Created child process 2640
    [Wed Apr 27 03:44:45 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 03:44:45 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 03:44:45 2011] [notice] Child 2640: Child process is running
    [Wed Apr 27 03:44:45 2011] [notice] Child 2640: Acquired the start mutex.
    [Wed Apr 27 03:44:45 2011] [notice] Child 2640: Starting 64 worker threads.
    [Wed Apr 27 03:44:45 2011] [notice] Child 2640: Starting thread to listen on port 443.
    [Wed Apr 27 04:27:09 2011] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Wed Apr 27 04:27:09 2011] [notice] Child 2640: Exit event signaled. Child process is ending.
    [Wed Apr 27 04:27:10 2011] [notice] Child 2640: Released the start mutex
    [Wed Apr 27 04:27:11 2011] [notice] Child 2640: All worker threads have exited.
    [Wed Apr 27 04:27:11 2011] [notice] Child 2640: Child process is exiting
    [Wed Apr 27 04:27:11 2011] [notice] Parent: Child process exited successfully.
    [Wed Apr 27 04:27:16 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 04:27:16 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 04:27:16 2011] [notice] Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/4.4.9 configured -- resuming normal operations
    [Wed Apr 27 04:27:16 2011] [notice] Server built: Aug 20 2010 11:56:27
    [Wed Apr 27 04:27:16 2011] [notice] Parent: Created child process 3348
    [Wed Apr 27 04:27:16 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 04:27:16 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Wed Apr 27 04:27:16 2011] [notice] Child 3348: Child process is running
    [Wed Apr 27 04:27:16 2011] [notice] Child 3348: Acquired the start mutex.
    [Wed Apr 27 04:27:16 2011] [notice] Child 3348: Starting 64 worker threads.
    [Wed Apr 27 04:27:16 2011] [notice] Child 3348: Starting thread to listen on port 443.
    [Mon May 02 05:31:44 2011] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Mon May 02 05:31:44 2011] [notice] Child 3348: Exit event signaled. Child process is ending.
    [Mon May 02 05:31:45 2011] [notice] Child 3348: Released the start mutex
    [Mon May 02 05:35:29 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 05:35:30 2011] [warn] pid file C:/Program Files/Oracle/Backup/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Mon May 02 05:35:30 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 05:35:30 2011] [notice] Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/4.4.9 configured -- resuming normal operations
    [Mon May 02 05:35:30 2011] [notice] Server built: Aug 20 2010 11:56:27
    [Mon May 02 05:35:30 2011] [notice] Parent: Created child process 2044
    [Mon May 02 05:35:30 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 05:35:31 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 05:35:31 2011] [notice] Child 2044: Child process is running
    [Mon May 02 05:35:31 2011] [notice] Child 2044: Acquired the start mutex.
    [Mon May 02 05:35:31 2011] [notice] Child 2044: Starting 64 worker threads.
    [Mon May 02 05:35:31 2011] [notice] Child 2044: Starting thread to listen on port 443.
    [Mon May 02 23:17:07 2011] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Mon May 02 23:17:07 2011] [notice] Child 2044: Exit event signaled. Child process is ending.
    [Mon May 02 23:17:08 2011] [notice] Child 2044: Released the start mutex
    [Mon May 02 23:17:37 2011] [notice] Parent: Forcing termination of child process 1676
    [Mon May 02 23:22:39 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 23:22:39 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 23:22:39 2011] [notice] Apache/2.2.15 (Win32) mod_ssl/2.2.15 OpenSSL/0.9.8m PHP/4.4.9 configured -- resuming normal operations
    [Mon May 02 23:22:39 2011] [notice] Server built: Aug 20 2010 11:56:27
    [Mon May 02 23:22:39 2011] [notice] Parent: Created child process 2044
    [Mon May 02 23:22:39 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 23:22:40 2011] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Mon May 02 23:22:40 2011] [notice] Child 2044: Child process is running
    [Mon May 02 23:22:40 2011] [notice] Child 2044: Acquired the start mutex.
    [Mon May 02 23:22:40 2011] [notice] Child 2044: Starting 64 worker threads.
    [Mon May 02 23:22:40 2011] [notice] Child 2044: Starting thread to listen on port 443.
    When we were reconfiguring the OEM Grid Control 11g:
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:35:02 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php?tab=2&mode=6
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:41:33 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: reset() [function.reset]: Passed variable is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 301, referer: https:// serv010/index.php
    [Thu May 05 02:47:06 2011] [error] [client 10.1.4.14] PHP Warning: Variable passed to each() is not an array or object in C:\\Program Files\\Oracle\\Backup\\apache\\htdocs\\include\\detailed_oracle.php on line 302, referer: https:// serv010/index.php
    [Wed May 11 03:16:15 2011] [notice] Parent: Received shutdown signal -- Shutting down the server.
    [Wed May 11 03:16:15 2011] [notice] Child 2044: Exit event signaled. Child process is ending.
    [Wed May 11 03:16:16 2011] [notice] Child 2044: Released the start mutex
    [Wed May 11 03:16:17 2011] [notice] Child 2044: All worker threads have exited.
    [Wed May 11 03:16:17 2011] [notice] Child 2044: Child process is exiting
    [Wed May 11 03:16:17 2011] [notice] Parent: Child process exited successfully.
    When we have the Grid Installed and we can no longer access the OSB WebTool:
    [Wed May 11 03:19:56 2011] [error] Init: Pass phrase incorrect
    [Wed May 11 03:19:56 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Wed May 11 03:19:56 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Wed May 11 03:19:56 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Wed May 11 03:19:56 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    [Wed May 11 23:34:01 2011] [error] Init: Pass phrase incorrect
    [Wed May 11 23:34:01 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Wed May 11 23:34:01 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Wed May 11 23:34:01 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Wed May 11 23:34:01 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    [Thu May 12 01:11:22 2011] [error] Init: Pass phrase incorrect
    [Thu May 12 01:11:22 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Thu May 12 01:11:22 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Thu May 12 01:11:22 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Thu May 12 01:11:22 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    [Thu May 12 04:38:05 2011] [error] Init: Pass phrase incorrect
    [Thu May 12 04:38:05 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Thu May 12 04:38:05 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Thu May 12 04:38:05 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Thu May 12 04:38:05 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    [Thu May 12 05:06:17 2011] [error] Init: Pass phrase incorrect
    [Thu May 12 05:06:17 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Thu May 12 05:06:17 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Thu May 12 05:06:17 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Thu May 12 05:06:17 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    [Wed May 18 01:41:16 2011] [error] Init: Pass phrase incorrect
    [Wed May 18 01:41:16 2011] [error] SSL Library Error: 218710120 error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [Wed May 18 01:41:16 2011] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [Wed May 18 01:41:16 2011] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [Wed May 18 01:41:16 2011] [error] SSL Library Error: 218734605 error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib
    Hope you can help us with this issue. Thanks guys!
    Edited by: iamgilbert on May 18, 2011 10:20 PM

    I found the source of proble....but cannot find solution
    [06/May/2009 09:40:37 00440] [warn] You are using mod_ssl under Win32. This combination is NOT officially supported. Use it at your own risk!
    [06/May/2009 09:40:37 00440] [error] Init: Pass phrase incorrect (OpenSSL library error follows)
    [06/May/2009 09:40:37 00440] [error] OpenSSL: error:0D094068:asn1 encoding routines:d2i_ASN1_SET:bad tag
    [06/May/2009 09:40:37 00440] [error] OpenSSL: error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
    [06/May/2009 09:40:37 00440] [error] OpenSSL: error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error
    [06/May/2009 09:40:37 00440] [error] OpenSSL: error:0D09A00D:asn1 encoding routines:d2i_PrivateKey:ASN1 lib

  • Overview of Oracle Grid Control components

    Hello,
    We want to look at Oracle Grid Control feature. Can anyone make clear to us what components need to be installed where and how do the components communicate with eachother. I am talking about Enterprise Manager, agents, databases etc.
    Preferable we are looking for a graphical overview of components. Anyone have a picture from some presentation?
    We do not have a grid, but want to use the Grid Control.
    If I am not clear please tell me.

    You have one machine for OMS, the management server, that runs the app server and management repository plus an agent to monitor itself. On each machine you want to monitor you install the agent. Administrators connect with a browser to the web interface of the OMS, which enables control over the targets that the repository knows about.
    Following links goes to Product Center and Docu library for GC 10.2 rel 3.
    The basic stuff is available with your database licensing, but many features require EE and additional Management pack licenses. Talk to your sales rep for more info.

  • How do you control playlist song sorting?

    how do you control playlist song sorting?
    in itunes - i set the iPOD playlist to sort by name - but it sorts in some random way when disconnected - on it's own..
    BTW: I created this by making the playlist manual in iPOD in itunes then dragging in songs to it from itunes....
    QL how do i get it to sort the iPOD playlist songs by name?

    In iTunes, right-click on one of the songs in your playlist, then select 'Copy to play order'.

Maybe you are looking for