Error finding CERT: SEC_ERROR_EXTENSION_NOT_FOUND

I installed a Certificate in the i Planet. Now when i restart my WebServer, i get in the ErrorLog this failure:
Error finding CERT: SEC_ERROR_EXTENSION_NOT_FOUND
What problem do i have?

Hi Nitin,
Please check out the below link.
http://knowledgebase.iplanet.com/ikb/kb/articles/4574.html
Hope this helps.
Regards,
Dakshin.
Developer Technical Support
Sun Microsystems
http://www.sun.com/developers/support.

Similar Messages

  • Web-Disk on OSX 10.9 Give me this error: "Finder got an error: Network file permission error."

    Previously I was using OSX 10.8 and Web Disk was working great.
    Since I upgraded to OSX 10.9 Web Disk Dont Attach to my compputer and give me this ERROR:
    FInder got an error: Network file permission error.
    When I got this ERROR first time I searched GOOGLE and found this link: http://cammodude.blogspot.no/
    And I did:
    To force all connections to be SMB1:
    Open A terminal window
    paste in the following line followed by the return key(should be all on one line): 
    echo "[default]" >> ~/Library/Preferences/nsmb.conf; echo "smb_neg=smb1_only" >> ~/Library/Preferences/nsmb.conf
    What the command does:
    Creates a file called nsmb.conf  in your  home directory at the path ~/Library/Preferences/nsmb.conf.
    Adds directives to force SMB connections to use the SMB1 protocol.  This is slower but stable.
    Then I could use Web Disk on OSX 10.9 after executing this command in Terminal.
    But now I restarted my Macbook and now Im NOT able to connect to Web Disk and get the same ERROR.
    FInder got an error: Network file permission error
    After trying 100 times it attaches 1 time but then show this ERROR:
    Can't get <<class cdis>> "my.server.com/2078" of application "Finder".
    If this happen then I can see the files in Finder and see the Contents and Size of files but if I open a PHP file in BBEdit then it shows BLANK.. But actually it is NOT blank.
    Now Im stuck How can I solve this? All help is highly appericated..
    Thank you so much...

    Hi,
    Make sure to chmod the app, something like this :
    chmod -Rf 777  secure_site_WebDisk.app
    (in my case the CPanel provided the app for my OSx version.)

  • Hey when ever i download and install Itunes then i open it says error finding folder please re download and I tried a tons of times and it didn't work. Does anyone know how to fix this?

    Hey when ever i download and install Itunes then i open it says error finding folder please re download and I tried a tons of times and it didnt work. Does anyone know how to fix this?

    Hi Beege140,
    I have an article for you that will help you address this launch issue with iTunes:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • Crystal Reports XI and Sun One 6.1 web server SP 5 Error finding JNDI name

    I am trying to create a Crystal Reports XI report in a JSP using Sun One 6.1 Web server sp 5.
    At this point I am getting the error �Error finding JNDI name� on Sun One
    The application will run on Netbeans/Tomcat
    I have done the following:
    I edited CRConfig.xml
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>

    <DataDriverCommon>
         <JavaDir>C:\Program Files\Java\j2re1.4.2_10\bin</JavaDir>
    <Classpath>C:\oracle\product\10.2.0\client_1\jdbc\lib\ojdbc14.jar;�</Classpath>

    <JDBC>
         <CacheRowSetSize>100</CacheRowSetSize>
         <JDBCURL>jdbc:oracle:thin:@10.10.10.10:1521:dev</JDBCURL>
         <JDBCClassName>oracle.jdbc.driver.OracleDriver</JDBCClassName>
         <JDBCUserName>lab_ro</JDBCUserName>
         <JNDIURL></JNDIURL>

    </JDBC>
    I created a report using JDBC (JNDI) connection and have the JNDI Connection set to the name of DATA.
    The report works just fine in Crystal Reports.
    Then in Netbeans I created an application and it runs in the Tomcat part of Netbeans
    In context.xml I have:
    <Context path="/BOEnterpriseTest3">
    <Resource name="jdbc/dev" auth="Container" type="javax.sql.DataSource"
    driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@10.10.10.10:1521:dev"
    username="theuserid" password="thepassword" maxActive="20" maxIdle="10" maxWait="-1"/>
    </Context>
    In web.xml I have
    <web-app>
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>crystalreportviewers11</param-value>
    </context-param>

    <taglib>
    <taglib-uri>/crystal-tags-reportviewer.tld</taglib-uri>
    <taglib-location>/WEB-INF/crystal-tags-reportviewer.tld</taglib-location>
    </taglib>
    <resource-ref>
    <description>jdbc:oracle:thin:@10.10.10.10:1521:dev</description>
    <res-ref-name>jdbc/dev10g</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Application</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    <resource-ref>
    <description>jdbc:oracle:thin:@10.10.10.10:1521:dev</description>
    <res-ref-name>Data</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Application</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    in web-inf\sun-web.xml I have
    <sun-web-app>
    <resource-ref>
    <res-ref-name>jdbc/dev10g</res-ref-name>
    <jndi-name>Data</jndi-name>
    </resource-ref>
    </sun-web-app>
    I have copied all of Common Files\Business Objects\3.0\java\lib and Common Files\Business Objects\3.0\java\lib\external to the lib folder
    I have copied crystalreportviewers11 to the root of my web application
    I have tried to load the JNDI information and display the report
    <%@page pageEncoding="UTF-8"
    import="com.crystaldecisions.reports.reportengineinterface.*,
    com.crystaldecisions.report.web.viewer.*,
    javax.naming.*,
    javax.sql.*,
    java.sql.*"%>
    <%
    InitialContext initContext = new InitialContext();
    DataSource source = (DataSource) initContext.lookup("java:comp/env/jdbc/dev10g");
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    try{
         // Look up our data source
    DataSource ds = (DataSource)initCtx.lookup("Data");
    out.println("found ds under jdbc/Data");
    catch ( NamingException e ){
    // Look up our data source
    DataSource ds = (DataSource) initContext.lookup("java:comp/env/jdbc/dev10g");
    initCtx.bind("Data", ds);     
    out.println("found ds under java:com/env:jdbc/Data - bound into root initial context for Crystal to find");
    %>
    <%
    //Use the relative path to the report; the physical or full qualified URL cannot be used.
    String reportName = "useridincluded.rpt";
    //Database username and password
    String userName = "theuserid";
    String password = "thepassword";
    //check to see if the Report Source Session Variable already exist
    Object reportSource = session.getAttribute("Report1");
    // Create a new ConnectionInfos and ConnectionInfo object
    com.crystaldecisions.sdk.occa.report.data.ConnectionInfos connectionInfos = new com.crystaldecisions.sdk.occa.report.data.ConnectionInfos();
    com.crystaldecisions.sdk.occa.report.data.ConnectionInfo connectionInfo = new com.crystaldecisions.sdk.occa.report.data.ConnectionInfo();
    //Set username and password for the report's database
    connectionInfo.setUserName(userName);
    connectionInfo.setPassword(password);
    //Add object to collection
    connectionInfos.add(connectionInfo);
    //---------- Create a ReportClientDocument -------------
    com.crystaldecisions.reports.sdk.ReportClientDocument reportClientDocument = new com.crystaldecisions.reports.sdk.ReportClientDocument();
    //---------- Set the path to the location of the report soruce -------------
    //Open report.
    reportClientDocument.open(reportName, 0);
    //Get the report source
    reportSource = reportClientDocument.getReportSource();
    //---------- Create the viewer and render the report -------------
    //create the CrystalReportViewer object
    com.crystaldecisions.report.web.viewer.CrystalReportViewer crystalReportViewer = new com.crystaldecisions.report.web.viewer.CrystalReportViewer();
    //set the reportsource property of the viewer
    crystalReportViewer.setReportSource(reportSource);
    //set the DB logon into the viewer
    crystalReportViewer.setDatabaseLogonInfos(connectionInfos);
    //set viewer attributes
    crystalReportViewer.setOwnPage(true);
    crystalReportViewer.setOwnForm(true);
    crystalReportViewer.refresh();
    //set the CrystalReportViewer print mode
    //crystalReportViewer.setPrintMode(com.crystaldecisions.report.web.viewer.CrPrintMode.ACTIVEX);
    crystalReportViewer.setPrintMode(com.crystaldecisions.report.web.viewer.CrPrintMode.PDF);
    //process the report
    crystalReportViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    %>
    On the Sun One Web server
    On the Java Tab
    JDBC Connection Pools
    Pool Name = dev10g
    Class name = oracle.jdbc.pool.OracleDataSource
    User id = theuserid
    url = 10.10.10.10
    password=thepassword
    JDBC Resources
    JNDI Name=dev10g
    Pool = dev10g
    I get the error finding JNDI name � how do I tell Sun One where the JNDI is to make Crystal Reports work?

    I tried the following to test the JNDI
    I am trying to do JNDI in Sun One Web server 6.1 sp 5 but I seem to be missing an important part. I get two different errors based on the JSP code, �Cannot retrieve data source: javax.naming.NamingException: Cannot create resource instance� or �Cannot retrieve data source: javax.naming.NamingException: Cannot create resource instance�.
    Context.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/BOTest">
      <Resource name="jdbc/dev10g" auth="Container" type="javax.sql.DataSource"
    driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@10.10.10.10:1521:dev10g"
    username="userid" password="password" maxActive="20" maxIdle="10" maxWait="-1"/>
      <Resource name="Data" auth="Container" type="javax.sql.DataSource"
    driverClassName="oracle.jdbc.driver.OracleDriver" url="jdbc:oracle:thin:@10.10.10.10:1521:dev10g"
    username="userid" password="password" maxActive="20" maxIdle="10" maxWait="-1"/>
    </Context>Sun-one.xml:
    <sun-web-app>
    <context-root>BOTest</context-root>
    <resource-ref>
    <res-ref-name>jdbc/dev10g</res-ref-name>
    <jndi-name>jdbc/dev10g</jndi-name>
    </resource-ref>
    </sun-web-app>web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
         <welcome-file>
                index.jsp
            </welcome-file>
        </welcome-file-list>
        <resource-ref>
            <description>jdbc:oracle:thin:@10.10.10.10:1521:dev10g</description>
            <res-ref-name>jdbc/dev10g</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Application</res-auth>
            <res-sharing-scope>Shareable</res-sharing-scope>
        </resource-ref>
        <resource-ref>
            <description>jdbc:oracle:thin:@10.10.10.10:1521:dev10g</description>
            <res-ref-name>Data</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Application</res-auth>
            <res-sharing-scope>Shareable</res-sharing-scope>
        </resource-ref>
    </web-app>server.xml has:
    <RESOURCES>
    - <JDBCCONNECTIONPOOL name="dev10g" datasourceclassname="oracle.jdbc.pool.OracleDataSource" steadypoolsize="8" maxpoolsize="32" poolresizequantity="2" idletimeout="300" maxwaittime="60000" connectionvalidationrequired="off" connectionvalidationmethod="auto-commit" validationtablename="" failallconnections="off" transactionisolationlevel="read-uncommitted" isolationlevelguaranteed="off">
      <PROPERTY name="URL" value="jdbc:oracle:thin:@10.45.3.197:1521:dev10g" />
      <PROPERTY name="User" value="lab_ro" />
      <PROPERTY name="Password" value="0asphalt1" />
      </JDBCCONNECTIONPOOL>
      <JDBCRESOURCE jndiname="jdbc/dev10g" poolname="dev10g" enabled="on" />
      <JDBCRESOURCE jndiname="Data" poolname="dev10g" enabled="on" />
    - <JDBCCONNECTIONPOOL name="Data" datasourceclassname="oracle.jdbc.pool.OracleDataSource" steadypoolsize="8" maxpoolsize="32" poolresizequantity="2" idletimeout="300" maxwaittime="60000" connectionvalidationrequired="off" connectionvalidationmethod="auto-commit" validationtablename="" failallconnections="off" transactionisolationlevel="read-uncommitted" isolationlevelguaranteed="off">
      <PROPERTY name="User" value="lab_ro" />
      <PROPERTY name="URL" value="jdbc:oracle:thin:@10.45.3.197:1521:dev10g" />
      <PROPERTY name="Password" value="0asphalt1" />
      </JDBCCONNECTIONPOOL>
      <JDBCRESOURCE jndiname="jdbc/Data" poolname="Data" enabled="on" />
      <JDBCRESOURCE jndiname="dev10g" poolname="dev10g" enabled="on" />
      </RESOURCES>I am getting the following error: �Cannot retrieve data source: javax.naming.NamingException: Cannot create resource instance�
    With the following code:
    <%@page
       import="java.io.*,
               javax.sql.*,
               javax.naming.*,
               java.sql.*,
               java.util.*"%>
    <%
    Context init;
    Context ctx;
    DataSource datasource;
    Connection con;
    try
    init = new InitialContext();
    Context envCtx = (Context) init.lookup("java:comp/env");
    datasource = (DataSource)  envCtx.lookup("jdbc/dev10g");
    catch(NamingException ex)
        out.print("Cannot retrieve data source: " + ex.toString(true));
        return;
    try
        con = datasource.getConnection();
    catch (Exception e)
      out.print("Cannot retrieve connection: " + e.toString());
      return;
    try
        PreparedStatement pstmt = con.prepareStatement("SELECT PROJNO FROM MATERIALSLAB.VW_ASPHALTHEADERINFO");
        ResultSet results = pstmt.executeQuery();
        while (results.next())
        out.println(results.getString(1));
    catch(Exception ex)
    out.print("Got connection, can't execute query: " + ex.toString());
    return;
    %>I get the following error: Cannot retrieve data source: javax.naming.NamingException: Cannot create resource instance
    With the following code:
    <%@page
       import="java.io.*,
               javax.sql.*,
               javax.naming.*,
               java.sql.*,
               java.util.*"%>
    <%
    Context init;
    Context ctx;
    DataSource datasource;
    Connection con;
    try
        init = new InitialContext();
        ctx = (Context) init.lookup("java:comp/env");
        datasource = (DataSource) ctx.lookup("jdbc/dev10g");
    catch(NamingException ex)
        out.print("Cannot retrieve data source: " + ex.toString(true));
        return;
    try
        con = datasource.getConnection();
    catch (Exception e)
      out.print("Cannot retrieve connection: " + e.toString());
      return;
    try
        PreparedStatement pstmt = con.prepareStatement("SELECT PROJNO FROM MATERIALSLAB.VW_ASPHALTHEADERINFO");
        ResultSet results = pstmt.executeQuery();
        while (results.next())
        out.println(results.getString(1));
    catch(Exception ex)
    out.print("Got connection, can't execute query: " + ex.toString());
    return;
    %>

  • JBO-33008 Error finding application context

    Can anyone explain what causes JBO-33008 or where I can find more information on the exception. I have been unable to find any documentation (even the help in JDev goes from 34001 to 55001). Any information would be greatly appreciated.
    Thanks in advance.
    Deb
    oracle.jbo.JboException: JBO-33008: Error finding application context
    at oracle.jbo.server.ContextMetaObjectManager.getCurrentApplicationMap(ContextMetaObjectManager.java:73)
    at oracle.jbo.server.ContextMetaObjectManager.findLoadedObject(ContextMetaObjectManager.java:55)
    at oracle.jbo.mom.DefinitionManager.getDynamicObjectsContainer(DefinitionManager.java:604)
    at oracle.jbo.mom.DefinitionObject.isDynamicDefinitionObject(DefinitionObject.java:141)
    at oracle.jbo.server.DefObject.isDynamic(DefObject.java:46)
    at oracle.jbo.server.ComponentDefImpl.unsetDefForComponent(ComponentDefImpl.java:200)
    at oracle.jbo.server.ComponentObjectImpl.setDef(ComponentObjectImpl.java:53)
    at oracle.jbo.server.ViewObjectImpl.setDef(ViewObjectImpl.java:498)
    at oracle.jbo.server.ApplicationModuleImpl.removeChild(ApplicationModuleImpl.java:649)
    at oracle.jbo.server.ComponentObjectImpl.remove(ComponentObjectImpl.java:225)
    at oracle.jbo.server.ViewObjectImpl.remove(ViewObjectImpl.j[i]Long postings are being truncated to ~1 kB at this time.

    Evidently the 'Search Forum' is not catching everything. I did find this discussion by scrolling through.
    JBO-33008 error finding application context

  • Error finding a resource

    HI all,
    i meet a problem in running a J2ME dictionary in NetBeans 6.0 IDE. The error only shows on WTK(emulator).
    The error is: java.io.IOException: Error finding a resource /lang.txt
    i have already included the lang.txt file into the same folder. May i know how to use getResourceAsStream()?
    Is it correct to be written in this way?
    public static void readMenu() throws IOException {
    final int index = AppSettings.getSettings().getCurrentLangIndex();
    final InputStreamReader isr = DataAccess.getResourceAsStream('/' + langList[index] + "English-Menu.txt");
    What about this one?
    public static void initLangList() throws IOException {
    final InputStreamReader isr = DataAccess.getResourceAsStream("/lang.txt");
    final Vector stringList = new Vector();
    String lang;
    while ( (lang = DataAccess.readString(isr)) != null) {
    //at least one language assumed
    stringList.addElement(lang);
    langList = new String[stringList.size()];
    stringList.copyInto(langList);
    And also this one:
    public static InputStreamReader getResourceAsStream(final String resPath)
    throws IOException {
    final InputStream is = (new Object()).getClass().getResourceAsStream("/lang.txt");
    if (is != null) {
    is.skip(BOM_LENGTH);// skip 3 bytes UTF-8 Byte Order Mark
    return new InputStreamReader(is, DICT_CHARSET);
    throw new IOException("Error finding a resource " + resPath);
    Please advise and help me to solve these errors. Thank you very much

    namery:
    Any ideas, short of replacement
    If your HDD is not showing up in FW-TDM or Disk Utility it is hardly likely to be worth erasing and re-using. Even if you were able to do so, whatever you have on the HDD will be at risk as your HDD may fail at any time. Modern HDDs have an average life of 3-5 years, with a significant amount failing in the first year. In other words, if your HDD is the one that originally came with the computer, it is likely not worth messing with it.
    If you really want to try, you can try booting from the Disk Warrior CD and running DW. It may be able to repair the directory sufficient for you to erase and reformat, although I doubt it would be of much help.
    Since you already have your data backed up, I suggest that you purchase a new HDD and install it yourself. You can doso for less than $100 and get a faster and larger HDD at the same time. If you are interested in this option, please post back for information about available HDDs and directions on tips for installation.
    2.5" IDE case
    I have a couple of these and love them very well. In addition you can take at look at these at OWC.
    cornelius

  • JMSException Error finding dispatcher

    I have a JMS thin-client (linux) trying to connect to a remote JMS connection factory. The program works on any WebLogic server (8.1.SP6), but not on others. So it would seem to be an IIOP problem. I've gone through the IIOP setup doc's but nothing helps (Listener address set, using bidir iiop, and hosts know each others dns). Here's the stack trace:
              gov.va.med.logservice.appender.EELSDException: Error finding dispatcher
              at gov.va.med.logservice.appender.LogServiceDelegate_POJO.logException(LogServiceDelegate_POJO.java:140)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
              at java.lang.reflect.Method.invoke(Method.java:324)
              at gov.va.med.caip.client.factory.DelegateProxy.invoke(DelegateProxy.java:116)
              at gov.va.med.caip.client.factory.DelegateProxy.invoke(DelegateProxy.java:80)
              at $Proxy0.logException(Unknown Source)
              at gov.va.med.logservice.oemhandler.LogEvent.main(LogEvent.java:236)
              Caused by: weblogic.jms.common.JMSException: Error finding dispatcher
              at weblogic.jms.frontend.FEConnectionFactory.connectionCreateInternal(FEConnectionFactory.java:427)
              at weblogic.jms.frontend.FEConnectionFactory.connectionCreateRequest(FEConnectionFactory.java:386)
              at weblogic.jms.frontend.FEConnectionFactory_WLSkel.invoke(Unknown Source)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:491)
              at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:120)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:434)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
              at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:35)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
              Caused by: weblogic.jms.dispatcher.DispatcherException: Could not register a HeartbeatMonitorListener for [Delegate(9041582) [weblogic.iiop.IOR@d7bc7554 RMI:weblogic.jms.dispatcher.DispatcherImpl:0000000000000000 @sms-agent-dev:25747, class weblogic.jms.dispatcher.DispatcherImpl]] for weblogic.jms.C:sms-oracle2-dev:ydz:-b
              at weblogic.jms.dispatcher.DispatcherWrapperState.addPeerGoneListener(DispatcherWrapperState.java:580)
              at weblogic.jms.frontend.FEConnectionFactory.connectionCreateInternal(FEConnectionFactory.java:421)
              ... 11 more
              Caused by: weblogic.rmi.extensions.server.HeartbeatMonitorUnavailableException: Could not register a HeartbeatMonitorListener for [Delegate(9041582) [weblogic.iiop.IOR@d7bc7554 RMI:weblogic.jms.dispatcher.DispatcherImpl:0000000000000000 @sms-agent-dev:25747, class weblogic.jms.dispatcher.DispatcherImpl]]
              at weblogic.rmi.extensions.server.HeartbeatMonitor.addHeartbeatMonitorListener(HeartbeatMonitor.java:86)
              at weblogic.jms.dispatcher.DispatcherWrapperState.addPeerGoneListener(DispatcherWrapperState.java:576)
              ... 12 more

    The program works on any WebLogic server (8.1.SP6), but not on others.                     What are these others?
              Does the standard "weblogic.jar" thick client work instead? (with "t3" URLs)

  • Error: Find criteria must contain at least one sort field value.

    Hi
    I am getting the followng error in Sort.as when I click on a column in a DataGrid that is bound to a nested property (e.g. parent.name)
    Error: Find criteria must contain at least one sort field value.
    I can see why this is failing.
    In the findItem function of Sort.as the code tests whether there is data in line (456) hasFieldName = values[fieldName] !== undefined. This fails and so an error is raised later in the function by:
         if (fieldsForCompare.length == 0)     {
         message = resourceManager.getString("collections", "findRestriction"); 
              throw new SortError(message);     }
     The code needs to traverse down the object hierarchy to get the field so that error is not thrown .
    The code needs to traverse down the object hierarchy to get the field so that error is not thrown .
    In the case of a non nested property, everything works fine.
    There is lots of discussion about nested properties in DataGrid and there is this jira:
    http://bugs.adobe.com/jira/browse/SDK-9801
    There is talk of using a labelFunction or an itemRenderer and other third party solutions (extensions of DataGridColumn).
    Is this a bug?  is there a workaround using labelFunction or itemRenderer which can stop the error in Sort.as?
    James
    Here is the code of findItem in Sort.as of SDK 3..4.0.9271
    public  
    function findItem(items:Array,values:Object,
    mode:String,
    returnInsertionIndex:Boolean =
    false,compareFunction:Function =
    null):int{
    var compareForFind:Function; 
    var fieldsForCompare:Array; 
    var message:String; 
    if (!items){
    message = resourceManager.getString(
    "collections", "noItems"); 
    throw new SortError(message);}
    else if (items.length == 0){
    return returnInsertionIndex ? 1 : -1;}
    if (compareFunction == null){
    compareForFind =
    this.compareFunction; 
    // configure the search criteria
    if (values && fieldList.length > 0){
    fieldsForCompare = [];
    //build up the fields we can compare, if we skip a field in the
    //middle throw an error. it is ok to not have all the fields
    //though
    var fieldName:String; 
    var hadPreviousFieldName:Boolean = true; 
    for (var i:int = 0; i < fieldList.length; i++){
    fieldName = fieldList[i];
    if (fieldName){
    var hasFieldName:Boolean; 
    try
    hasFieldName = values[fieldName] !==
    undefined;}
    catch(e:Error){
    hasFieldName =
    false;}
    if (hasFieldName){
    if (!hadPreviousFieldName){
    message = resourceManager.getString(
    "collections", "findCondition", [ fieldName ]); 
    throw new SortError(message);}
    else
    fieldsForCompare.push(fieldName);
    else
    hadPreviousFieldName =
    false;}
    else
    //this is ok because sometimes a sortfield might
    //have a custom comparator
    fieldsForCompare.push(
    null);}
    if (fieldsForCompare.length == 0){
    message = resourceManager.getString(
    "collections", "findRestriction"); 
    throw new SortError(message);}
    else
    try
    initSortFields(items[0]);
    catch(initSortError:SortError){
    //oh well, use the default comparators...
    else
    compareForFind = compareFunction;

    I have tried a sortCompareFunction:
    var sort:Sort = new Sort();
    sort.compareFunction = compareFunction;sort.fields = [sortField];
    data.sort = sort;
    data.refresh();
    this makes no difference.
    James

  • Error finding project for application

    Hi all,
    I have problems with deploying application from EPMA.
    Deploy is aborted everytime and I can see this error message in BPMA.log:
    Error finding project for application HP:app
    com.hyperion.interop.lib.OperationFailedException: Application does not exists by this Id 'HP:app'.
         at com.hyperion.interop.lib.helper.ApplicationHelper.getProjectForApplication(Unknown Source)
         at com.hyperion.interop.lib.CMSClient.getProjectForApplication(Unknown Source)
         at com.hyperion.awb.web.util.HSSRegistrationUtil.getHubProjectForApp(HSSRegistrationUtil.java:116)
         at com.hyperion.awb.web.appmanager.Action.deployValidate(Action.java:260)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
    What am I doing wrong?
    Thanks in advance,
    Vlado

    Hi Seb,
    thank you for your answer.
    Unfortunatelly, I still have problems with this.
    Here is my step-by-step install & config procedure:
    0. installed all products
    1. configured all products
    2. logged as admin in user management console and created new user (let's call him "superuser")
    3. logged as superuser in user management console and created new project
    4. created new planning datasource
    5. created dimensions and application in EPMA
    6. deploy this app
    Here I get this error.
    Could you (or anyone else) please describe your install & config process? I think I'm missing some config steps or I'm doing it in wrong order.
    Thanks!
    Vlado
    Edit:
    I found another error message in BPMA.log:
    Application does not exist by this Id
    Edited by: Vlado on Nov 11, 2008 3:04 PM

  • ERROR [JRCCommunicationAdapter]  detected an exception:Error finding JNDI n

    Hi,
    I have two datasources, when i am deploying my application in jboss one ds related data is coming, but other ds related report is giving the following excepion.
    ERROR [JRCCommunicationAdapter]  detected an exception:Error finding JNDI name.
    In UI i am getting as Error finding JNDI name

    The JRC will write temporary files to whatever temp directory is specified in your java System.properties.  Check to see which directory java has specified.... it may be your application server temp, or your user temp..... and ensure that there are appropriate permissions on this directory so that the JRC can write files in here.

  • Error Finding JNDI name (DataSource Name)

    Need help on "Error Finding JNDI name (DataSource Name).
    The following are the details of my Java Swing Program.
    Database used : IBM DB2 V7.2
    Report Tool : Crystal Report 11
    DataSource used: ODBC
    I have a java swing program which calls an Crystal report viewer, to display the selected report. The program is able to display the report (.rpt file) in the java Crystal report viewer which is saved with data.
    However when the report is refreshed from the viewer the program throws an error "Error Finding JNDI name (DataSource Name)".
    i am using the following Crystal Java Reporting Component (JRC) imports.
    import com.crystaldecisions.reports.sdk.*;
    import com.crystaldecisions.sdk.occa.report.lib.*;
    import com.crystaldecisions.ReportViewer.*;
    import com.crystaldecisions.reports.reportengineinterface.*;
    Also i have configured the CRConfig.xml for JDBC connection as,
    <JDBCURL>jdbc:db2:DataSource Name</JDBCURL>
    <JDBCClassName>COM.ibm.db2.jdbc.app.DB2Driver</JDBCClassName>
    <JDBCUserName>user name</JDBCUserName>

    Hi,
    Thanks for your reply!
    Yes, I used ADO.net in the designer.
    The strange thing is that it works fine if I redo the report from scratch by using ADO.net (same XML-file as source as in the old report) and then the same query that didn't work for the "old report". Well on the other hand the new report is not yet as complex as the old one, it has no subreports yet like the old one had.
    I'll try using the other XML source tomorrow as you said, and check if I can get the old report to work properly.
    The old report has an XML-file as datasource(ADO.net) and all data is in subreports. Every subreport has the same datasource as the main report.
    The reason is that when I first start to create a report Crystal Reports asks for a datasource and I filled that in. Then I realized that the reports should be made up of subreports, and when I created the subreports Crystal again asked for a datasource (I thought it could use the datasource from the mainreport).
    Best regards,
    Sebastian

  • Error: Finding the document specification by message type ... failed.

    I'm writing my first BizTalk application base on the EAI Tutorial and getting the error
    Finding the document specification by message type "ProductCatalogInformation" failed.
    My schema has been deployed and is as follows.
      <?xml version="1.0" encoding="utf-16" ?>
    - <xs:schema xmlns="http-colon-backslash-baclslash-MondaySchemas.Schema1" xmlns:b="http-colon-backslash-baclslash-schemas.microsoft.com/BizTalk/2003" targetNamespace="http-colon-backslash-baclslash-MondaySchemas.Schema1" xmlns:xs="http-colon-backslash-baclslash-www.w3.org/2001/XMLSchema">
    - <xs:element name="ProductCatalogInformation">
    - <xs:complexType>
    - <xs:sequence>
      <xs:element name="GlobalDocumentFunctionCode" type="xs:string" />
      <xs:element name="CatalogTypeCode" type="xs:string" />
      <xs:element name="GlobalActionCode" type="xs:string" />
      </xs:sequence>
      </xs:complexType>
      </xs:element>
     </xs:schema>
    My XML is as follows
    <?xml version="1.0" encoding="UTF-8"?>
    <ProductCatalogInformation>
        <GlobalDocumentFunctionCode>Request</GlobalDocumentFunctionCode>
        <CatalogTypeCode>Partial</CatalogTypeCode>
        <GlobalActionCode>Revise</GlobalActionCode>
    </ProductCatalogInformation>
    The error I get is
    There was a failure executing the receive pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Source: "XML disassembler" Receive
    Port: "MondaySolutionRequestPort" URI: "C:\BizTalk\Receive\*.xml" Reason: Finding the document specification by message type "ProductCatalogInformation" failed. Verify the schema deployed properly.
    Suggestions please?
    Is there a link where I can download the completed solution to the BizTalk Server Tutorial 1 Enterprise Application Integration ?
    Thanks in advance..

    1) Check the GAC and ensure that the schema is there, be sure the version numbers are the same.
    2) You should also restart the host instance and try again.
    To check that the schema exists and is deployed properly open the query analyser on your BizTalk Server and
    use the BizTalkMgmtDb and run the query below. In the where clause place the correct target namespace and root node name which is being reported in the error log from the Event Viewer.
    Select msgtype, assemblyid, clr_namespace, clr_assemblyname
    from bt_documentspec
    where msgtype = targetnamespace#rootnode;
    3)  Check the sample XML, its without namespace. Generate instance from the schema and then try.
    Should be 
    <ProductCatalogInformation xmlns="http://MondaySchemas.Schema1"><\ProductCatalogInformation>
    What
    you need to do to fix "There was a failure executing the receive pipeline… failed to load. Verify the schema for this document specification is deployed and is in the Global Assembly Cache" Error after deploying BizTalk Solution
    You can get everything you need to learn about BizTalk here at Learning
    about BizTalk Server has never been easier now with the TechNet Wiki
    Here is the solution: BizTalk
    Server Tutorials--Tutorial 1: Enterprise Application Integration
    Video at Biztalk
    Server 2010: Enterprise Application Integration (EAI) Video Tutorials
    Rachit

  • "Error finding Disk or software" - Anyone Else?

    Is anyone else having a problem with getting the "error finding disk or software" when trying to burn a CD?

    hi ellen!
    "error finding disk or software"
    can you give us the precise text of your error message? if it's easier, try sending us a screenshot of the error message box. there's instructions on how to do that given here:
    Hudgie, "Taking screenshots to help with problems.", 12:04pm Apr 19, 2005 CDT
    love, b

  • "error finding disk or software"

    Has anyone found a fix for error message "error finding disk or software"? Thanks!

    hi ellen!
    "error finding disk or software"
    can you give us the precise text of your error message? if it's easier, try sending us a screenshot of the error message box. there's instructions on how to do that given here:
    Hudgie, "Taking screenshots to help with problems.", 12:04pm Apr 19, 2005 CDT
    love, b

  • Error finding SOA configured servers.

    Hi All,
    i am not able to connect the server from Jdeveloper.while deploying at 4th step of the process(SOA Servers) through an Exception and shows that "Error finding SOA configured servers to deploy archive. Deployment connot continue." some times it's working fine, some times the shows the exception. can any one let me know the reslovution for this.
    please find the blow exception details.
    oracle.rc.asadapter.connection.ConnectionException
         at oracle.rc.asadapter.weblogic.connection.spi.Weblogic10JndiProvider.getPresentation(Weblogic10JndiProvider.java:86)
         at oracle.rc.asadapter.connection.AppServerConnectionImpl$PM.getPresentation(AppServerConnectionImpl.java:171)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listWeblogicSOAServers(ASBrowserHelper.java:242)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listSOAServers(ASBrowserHelper.java:199)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper$RunnableListSOAServers.run(ASBrowserHelper.java:324)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: User: weblogic, failed to be authenticated.]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:42)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:788)
         at weblogic.jndi.WLInitialContextFactoryDelegate.pushSubject(WLInitialContextFactoryDelegate.java:682)
         at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:469)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:376)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.rc.asadapter.weblogic.connection.spi.Weblogic10JndiProvider.getPresentation(Weblogic10JndiProvider.java:84)
         ... 6 more
    Caused by: java.lang.SecurityException: User: weblogic, failed to be authenticated.
         at weblogic.common.internal.RMIBootServiceImpl.authenticate(RMIBootServiceImpl.java:116)
         at weblogic.common.internal.RMIBootServiceImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
         at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Thans
    Hari
    Edited by: Hari on 22 Sep, 2011 6:57 AM

    Hi Hari
    The error stack trace clearly says "User: weblogic, failed to be authenticated." When you configure the Weblogic Domain in your JDeveloper, make sure you give all the details correct like host, port, username, password and domain name. Also you can Test Connection of that configured domain. So first test this connection and then it should work fine.
    Thanks
    Ravi Jegga

Maybe you are looking for