Reports startup exception

I have been trying to run "reports JSP" through JDeveloper using the embedded OC4J test server and i always get the following exception:
javax.servlet.jsp.JspException: REP-52266: The in-process Reports Server rep_brown-8ir2ayw5s failed to start.exception oracle.reports.RWException { oracle.reports.RWError[] errorChain={struct oracle.reports.RWError { int errorCode=52266, java.lang.String errorString="The in-process Reports Server rep_brown-8ir2ayw5s failed to start.", java.lang.String moduleName="REP" }} }
javax.servlet.jsp.JspException: REP-52266: The in-process Reports Server rep_brown-8ir2ayw5s failed to start.exception oracle.reports.RWException {
oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
int errorCode=52266,
java.lang.String errorString="The in-process Reports Server rep_brown-8ir2ayw5s failed to start.",
java.lang.String moduleName="REP"
     at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:433)
     at MyReport.jspService(MyReport.jsp:4)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:778)
     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
     at java.lang.Thread.run(Thread.java:536)
I have tried running the same report using reports builder and it works fine, but crashes when running using jdeveloper.
I'm using the 9.0.4 suite.
Thanks for the help in advance
Mohammad

There are many reasons for failing of in-process server on indows and unix.
IF it is windows box then probably try following--
Make sure to:
Set a valid directory for the REPORTS_TMP (in the registry).
- the user logged in has permissions to the directory defined in the REPORTS_TMP;
- the directory defined in the REPORTS_TMP are accessible and not via a mapped network drive;
- there is adequate disk drive space to accommodate the size of the directory defined in the REPORTS_TMP environment variable in the registry.
- check for any directory containing a space (in REPORTS_TMP) and reset it to a directory without a space.
For example it's possible that:
C:\DOCUMENTS AND SETTINGS\TssAdmin\Local Settings\Temp -> Does not work
C:\DOCUME~1\TssAdmin\Local -> Does work
Please provide the OS and version of AS being used .
Also meanwhile you can try running report from builder using WEB LAYOUT option.
Thanks
Subodh

Similar Messages

  • BEA-149218 Attempted to report an exception to DRS and received an error

    I am using Weblogic81 SP2. I have two Managed servers. I am trying to
    start a managed server through Node Manager and I get the following
    error
    ####<Nov 20, 2003 10:09:14 AM EST> <Error> <Deployer> <iolaus>
    <iolaus110> <ExecuteThread: '4' for queue: 'weblogic.kernel.System'>
    <<WLS Kernel>> <> <BEA-149218> <Attempted to report an exception to DRS
    and received an error.
    NotificationException due to underlying exception
    weblogic.drs.internal.InvalidStateException: Slave update for
    DataIdentifier DataIdentfierID: 1 received a commitFailed() call - this
    can only be called if update is in AwaitingCommitCompletion state
    at
    weblogic.drs.internal.statemachines.slave.SlaveState.commitFailed(SlaveState.java:89)
    at
    weblogic.drs.internal.DataReplicationService.notifyCommitFailure(DataReplicationService.java:375)
    at
    weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:581)
    at
    weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:500)
    at
    weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Does anybody know a solution or a work around please?
    Dharmesh

    Not sure if this applies to all instances, but in our case this issue was caused by an incorrect startup script for the admin node. We had neglected to include the -server flag. Adding the flag resolved the issue for us.

  • Programmatically adding chart to a report throws exception

    programmatically adding chart to a report throws exception "chart condition fields are not valid".
    Configuration:
    I am using CR4E to create web application, I've added RAS jars (rasapp.jar, rascore.jar, reporttemplate.jar, serialization.jar) to this web application. For designing reports i am using Crystal Reports 2008.
    Code:
    <%
    // Get the previously opened report from the session.
    ReportClientDocument reportClientDocument =
         (ReportClientDocument)session.getAttribute("ReportClientDocument");
    System.out.println(reportClientDocument.getReportDocument().getName());
    // Try to get the report's DataDefinition object.
    IDataDefinition dataDefinition;
    try
         dataDefinition = reportClientDocument.getDataDefController().getDataDefinition();
    // If the DataDefinition object can not be retrieved, redirect the user to an error page.
    catch (Exception e)
         System.out.println("With error1");
        return;
    // Create a new ChartDefinition object and set its type to ChartType.group.
    ChartDefinition chartDefinition = new ChartDefinition();
    chartDefinition.setChartType(ChartType.group);
    Get the conditional field of the report's first group. Set this conditional
    field for the ChartDefinition object using the setConditonalFields method. Notice
    that the conditional field is first placed in a Fields collection because the
    setConditionalFields method takes a Fields object as an argument.
    Fields conditionFields = new Fields();
    if (!dataDefinition.getGroups().isEmpty())
         IField field = dataDefinition.getGroups().getGroup(0).getConditionField();
         System.out.println("Condition field name ->" + field.getLongName(Locale.ENGLISH));
         conditionFields.addElement(field);
    chartDefinition.setConditionFields(conditionFields);
    //Get the summary field name from the form on the previous page.
    String summaryFieldName = URLDecoder.decode(request.getParameter("summaryField"));
    System.out.println("Summary field name ->" + summaryFieldName);
    Loop through all of the report's summary fields until the one matching the name
    above is found. Set this summary field for the ChartDefinition object using the
    setDataFields method. Notice that the summary field is first placed in a Fields
    collection because the setDataFields method takes a Fields object as an argument.
    Fields dataFields = new Fields();
    for (int i = 0; i < dataDefinition.getSummaryFields().size(); i++)
        IField summaryField = dataDefinition.getSummaryFields().getField(i);
         if (summaryField.getLongName(Locale.ENGLISH).equals(summaryFieldName))
              System.out.println("Adding data field ->" + summaryFieldName);
              dataFields.addElement(summaryField);
    chartDefinition.setDataFields(dataFields);
    Create a new ChartObject to represent the chart that will be added.  Set the
    ChartDefinition property of the ChartObject using the ChartDefinition object created
    above.
    ChartObject chartObject = new ChartObject();
    chartObject.setChartDefinition(chartDefinition);
    Get the chart type, chart placement, and chart title strings from the form on the
    previous page. If no chart title was chosen, create a generic title.
    String chartTypeString = request.getParameter("type");
    String chartPlacementString = request.getParameter("placement");
    String chartTitle = request.getParameter("title");
    System.out.println("chartTypeString ->"+ chartTypeString + "<-chartPlacementString->" + chartPlacementString + "<-chartTitle->"+chartTitle);
    if (chartTitle.equals(""))
         chartTitle = "untitled";
    Create a ChartStyleType object and a AreaSectionKind object based on the
    the chartTypeString and chartPlacementString retrieved above. In this example
    possible chart types are bar chart and pie chart. Possible chart placements
    are header and footer.
    ChartStyleType chartStyleType = ChartStyleType.from_string(chartTypeString);
    AreaSectionKind chartPlacement = AreaSectionKind.from_string(chartPlacementString);
    // Set the chart type, chart placement, and chart title for the chart.
    chartObject.getChartStyle().setType(chartStyleType);
    chartObject.setChartReportArea(chartPlacement);
    chartObject.getChartStyle().getTextOptions().setTitle(chartTitle);
    // Set the width, height, and top for the chart.
    chartObject.setHeight(5000);
    chartObject.setWidth(5000);
    chartObject.setTop(1000);
    Get a ReportDefController object that can be used to modify the report's definition.
    ReportDefController reportDefController;
    try
         reportDefController = reportClientDocument.getReportDefController();
    catch (Exception e)
         System.out.println("With Error2");
         return;
    *Create a Section object that represents the section that will hold the chart.
    If the chart placement was set header, get the header section, otherwise, if the
    chart placement was set to footer, get the footer section.
    Section chartSection = null;
    if (chartPlacement.equals(AreaSectionKind.reportHeader))
         IArea reportHeaderArea =
              reportDefController.getReportDefinition().getReportHeaderArea();
         chartSection = (Section)reportHeaderArea.getSections().getSection(0);
    else if (chartPlacement.equals(AreaSectionKind.reportFooter))
         IArea reportFooterArea =
              reportDefController.getReportDefinition().getReportFooterArea();
         chartSection = (Section)reportFooterArea.getSections().getSection(0);
    Add the chart to the section using the ReportDefController object.
    reportDefController.getReportObjectController().add(chartObject, chartSection, 1);
    // Save the changes and close the report.
    reportClientDocument.save();
    reportClientDocument.close();
    session.removeAttribute("ReportClientDocument");
    %>     
    Trace:
    com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException: The chart condition fields are not valid.---- Error code:-2147213287 Error code name:invalidChartObject
         at com.crystaldecisions.sdk.occa.report.lib.ReportDefControllerException.throwReportDefControllerException(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportObjectController.add(Unknown Source)
         at org.apache.jsp.AddChart_jsp._jspService(AddChart_jsp.java:230)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:387)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         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:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
         at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
         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:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:218)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
         at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:393)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:595)

    Please try this code snippet
    var cs:ColumnSeries = new ColumnSeries();
    cs.dataProvider = dp;
    cs.displayName = "Series 2";
    cs.yField = "values";
    chart.series.push(cs);
    OR
    var temp:Array = [];
    var cs:ColumnSeries = new ColumnSeries();
    cs.dataProvider = dp;
    cs.displayName = "Series 2";
    cs.yField = "values";
    temp = chart.series;
    temp.add(cs);
    chart.series = temp;

  • XL Reporter Startup failed

    Hi
    I am using sap business one 8.8. PL 15.Windows 7
    I get the following error when i start xl reporter on the Server.SAP Business one is installed only on the server and no client machines are installed.
    An error occurred during the process "Report Initialize".Description: (667) MetaInfo.xml not found!(Please contact the administrator to fix the repository connection)
    XL Reporter startup failed!
    Regards
    Farheen

    Try the below suggested procedure from an SAP Note
    1. Find the directory in which you installed the program. This would normally be: C:\Program Files\SAP Manage\SAP Business One\AddOns\XLR\XLReporter.
    2. In the Client folder, run the program file ConnectionManager.exe.
    3. In the first window that appears, choose one of the following:
    Database server administrator password has been changed
    Choose this option if the database server password has been changed and you need to change the encrypted password
    set in the meta data repository. Since the changes that you make with this option only affect the tables in the meta data
    repository, you will only have to perform this operation once on one of the clients.
    Database server name and/or administrator password has been changed
    Choose this option if you have moved the database(s) to a new server and you need to change the server name and/or
    administrator password set in the XL Reporter meta data repository. Since the changes you make with this option affect
    both the tables in the XL Reporter meta data repository and the XL Reporter Metainfo.xml file in the installation directory, you
    must perform this operation on each client running XL Reporter.
    4. Choose Next to continue.
    5. Enter the following information:
    In the Server field, enter the name of the new server. (This option is only available if you have selected the option, "Database server name and/or administrator password has been changed", in step 3 above.)
    In the User field, enter a new user only if the user has changed on the database server. (This option is only availible if you have selected the option, "Database server name and/or administrator password has been changed", in step 3 above.)
    In the Password field, enter a valid password.
    6. Choose Next to continue. When the process is complete, the Operation Finished window appears.
    The status information at the bottom of the window gives you information about the actions performed.
    7. Choose Finish to exit.

  • Error occurred. Contact the administrator and report the exception ID

    Dear All,
    We are on EP 7 SP8. We just now performed a system copy and are right now done with the post installation activities. All seems fine but we are having a problem in the Navigation Windown Quick Create link on the left hand side. Here I am always getting an error: Error occurred. Contact the administrator and report the exception ID in the log: 001A4B066A940068000001B500002946000433EB006CFEAC
    Can someone please guide me with how to remove this error.
    Please let me know as we are stuck and need to give the system to the client.
    Thanks a lot in advance.
    Best Regards,
    Rajeet

    Hello
    Can you see the defaulttrace file for more details?
    Open up Visual Administrator and go to Log Viewer.  Then open up the Defaulttrace file. Generate the same error message and look in the file for more details.
    What do you see?
    And of course.. What did you do to make this error ?
    Best Regards
    Kristoffer Engh

  • DB2 ConnectionServer has reported an Exception: Localization information not found

    Hi
    i'm using db2 as database for sap business object.
    if i try to connect to the database thorugh a multisource datafoundation i get this error:
    any help will be appreciated
    Adriano

    hi thank you and sorry
    Error:
    Failed to execute: SELECT
      Table__1."VV001"
    FROM
      "ADRI"."DBO"."TEST_SAP"  Table__1
    Cause of Error
    [Data Federator Driver] [Server] [Connector 'ADRI'] ConnectionServer has reported an Exception: Localization information not found : java.lang.NumberFormatException

  • Stop query on run on report startup

    Hi
    how to stop query on run on interactive report startup
    Thanks

    Hello,
    What do you mean exactly by "interactive report startup" ?
    Else, if you want to stop a running query you may kill the corresponding session.
    So with OEM or by querying the v$session you may identify the session (sid, serial#) of the query
    to stop. For instance:
    alter session set nls_date_format = 'DD-MM-YYYY HH24:MI:SS';
    select sid, serial#, status, schemaname, osuser, program, sql_id, logon_time
    from v$session;Then, you may execute the following statement so as to KILL the session:
    alter system kill session '<sid>,<serial#>';You may find some examples on the link below:
    [http://www.psoug.org/reference/kill_session.html]
    Hope this help.
    Best regards,
    Jean-Valentin

  • Custom Authenticator WL startup exception

    Hi, I am using Weblogic 9.2 on Linux and have created an example custom authenticator.
    I have followed several suggested method for creation/deployment, but still am having a exception upon startup and hoping someone could help.
    from a previous post I have used the below instructions and have deployed the jar in $WL_HOME/server/lib/mbeantypes
    $WL_HOME/server/providers: This is the base Directory for Customer security Provider.
    $WL_HOME/server/providers/src This is the directory for the Source Code.
    $WL_HOME/server/providers/providersjar This is the directory for the Custom Provider Jar file .
    $WL_HOME/server/providers/created_files This is the Directory for the created schema file by Mbean maker.
    After having the directory structure as mentioned above run the command as below:
    cd $WL_HOME/server
    $WL_HOME/samples/domains/wl_server/setExamplesEnv.sh
    java -Dfiles=providers/created_files -DMDF=providers/src/MyAuthenticator.xml -DMJF=providers/providersjar/MyAuthenticator.jar -DpreserveStubs=true -DcreateStubs=true weblogic.management.commo.WebLogicMBeanMakerStarted the WL server with the following exception:
    starting weblogic with Java version:
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    BEA JRockit(R) (build R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-linux-ia32, compiled mode)
    Starting WLS with line:
    /home/A470231/bea/jrockit_150_12/bin/java -jrockit -Xms256m -Xmx512m -Xverify:none -Xverify:none -da -Dplatform.home=/home/A470231/bea/weblogic92 -Dwls.home=/home/A470231/bea/weblogic92/server -Dwli.home=/home/A470231/bea/weblogic92/integration -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/home/A470231/bea/patch_weblogic923/profiles/default/sysext_manifest_classpath -Dweblogic.configuration.schemaValidationEnabled=false -Dweblogic.Name=examplesServer -Djava.security.policy=/home/A470231/bea/weblogic92/server/lib/weblogic.policy weblogic.Server
    <Aug 2, 2010 1:14:57 PM EDT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /home/A470231/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar:/home/A470231/bea/weblogic92/platform/lib/p13n/p13n_common.jar:/home/A470231/bea/weblogic92/platform/lib/p13n/p13n_system.jar:/home/A470231/bea/weblogic92/platform/lib/wlp/netuix_common.jar:/home/A470231/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar:/home/A470231/bea/weblogic92/platform/lib/wlp/netuix_system.jar:/home/A470231/bea/weblogic92/platform/lib/wlp/wsrp-common.jar>
    <Aug 2, 2010 1:14:58 PM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-linux-ia32 from BEA Systems, Inc.>
    <Aug 2, 2010 1:14:59 PM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.2 MP3 Mon Mar 10 08:28:41 EDT 2008 1096261 >
    <Aug 2, 2010 1:15:03 PM EDT> <Info> <WebLogicServer> <BEA-000215> <Loaded License : /home/A470231/bea/license.bea>
    <Aug 2, 2010 1:15:03 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 2, 2010 1:15:03 PM EDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 2, 2010 1:15:04 PM EDT> <Notice> <Log Management> <BEA-170019> <The server log file /home/A470231/bea/weblogic92/samples/domains/wl_server/servers/examplesServer/logs/examplesServer.log is opened. All server side log events will be written to this file.>
    *****************SERVICE:>com.bea.common.security.internal.legacy.helper.CredentialMappingServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.ApplicationVersioningServiceConfigHelper_TestRealm<
    *****************SERVICE:>com.bea.common.security.internal.legacy.helper.BulkRoleMappingServiceConfigHelper_TestRealm<
    *****************SERVICE:>com.bea.common.security.internal.legacy.helper.BulkAuthorizationServiceConfigHelper_TestRealm<
    *****************SERVICE:>com.bea.common.security.internal.legacy.helper.RoleMappingServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.RoleDeploymentServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.ApplicationVersioningServiceConfigHelper_TestRealm<
    *****************REALM:TestRealm
    *****************ProviderMBean length:2
    *****************ProviderMBean[0]weblogic.security.providers.authorization.DefaultAuthorizerMBeanImpl@a27aaa68([wl_server]/SecurityConfiguration[wl_server]/Realms[TestRealm]/Authorizers[DefaultAuthorizer])
    *****************ProviderMBean[1]weblogic.security.providers.authorization.DefaultAdjudicatorMBeanImpl@c6697d45([wl_server]/SecurityConfiguration[wl_server]/Realms[TestRealm]/Adjudicator[DefaultAdjudicator])
    *****************SERVICE:>com.bea.common.security.internal.legacy.helper.AuthorizationServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.PolicyDeploymentServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.IsProtectedResourceServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.ApplicationVersioningServiceConfigHelper_TestRealm<
    *****************SERVICE:>weblogic.security.service.internal.RoleConsumerServiceConfigHelper_TestRealm<
    <Aug 2, 2010 1:15:07 PM EDT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.security.service.SecurityServiceRuntimeException: [Security:090877]Service Common AuthorizationService unavailable, see exception text: com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name is not specified.
    at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:147)
    at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:83)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doATZ(CommonSecurityServiceManagerDelegateImpl.java:348)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:273)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:444)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:459)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:540)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:376)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Caused by: com.bea.common.engine.ServiceInitializationException: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name is not specified.
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:342)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:292)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:263)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:71)
    at weblogic.security.service.SecurityServiceManager.getService(SecurityServiceManager.java:95)
    at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:137)
    ... 11 more
    Caused by: com.bea.common.engine.SecurityServiceRuntimeException: [Security:097533]SecurityProvider service class name is not specified.
    at com.bea.common.security.internal.legacy.service.SecurityProviderImpl.init(SecurityProviderImpl.java:40)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:340)
    ... 16 more
    Can anyone have any ideas?
    I have narrowed it down to having a problem retrieving the role and policy consumer services I believe
    Thanks,
    Bobby.

    Hi All,
    Found the reason for the exception. I was implementing the generated the CustomAuthenticatorImpl class (generated through WebLogic MBeanMaker utility) as the provider class by implementing the AuthenticationProvider interface. Keeping them separate solved the issue.
    Able to create the jar without any issues and also no error or exception after restart.
    Thanks.

  • IMac G5 – Won't startup except in Safe Mode (10.5.5). Otherwise Blue Screen

    I’ve had my iMac (pre-iSight) for about 3 years now and up until recently never had any major problems with it, despite using it for about 12 hours per day, every day.. A couple of minor problems however had developed, but several months ago and didn’t seem to affect the system:
    (1) Software update stopped working (had to download & install updates manually) &
    (2) Couldn’t verify or repair permissions (even pre 10.5.5. Even when I tried to repair them from another startup disk, the message I got was ‘no package receipts’ – although I could see that they were there in the “receipts” library folder)
    A couple of days ago I decided to try and fix the problems by erasing my startup disk (after backing up all my data of course) and re-installing 10.5 from the installation DVD and then bringing the system up to date. At the time I did this I hadn’t upgraded or installed any new software for several weeks.
    For about one day after that it worked fine. The only ‘alarming’ thing that I noticed during that day was that whilst playing a movie the CPU temperature rose to about 89 C. (I use Temperature Monitor). I read somewhere that the CPU temperature should not exceed 85 for this model and that if it did the system would either shutdown or go to sleep, so I was surprised to see it go as high as 89 (assuming that the right temperature was being reported) before it went to sleep. However, even after that it, it started up correctly a couple of times.
    Since then it will only boot in Safe mode, and when it does it carries on working indefinitely without any problems. The only thing that I lose in safe mode which seems odd – in addition to all the things that I know I should lose – is Audio. The preferences panel says: no input, output devices attached (ie not even the ones built-in).
    If I try a normal start up, the system will go through the grey screen, apple logo, spinning ‘cog’ etc and then almost always go to a blue screen where it stays put. There is a black cursor in the top left corner which, when I try to move it, duplicates itself so that I end up with 2 cursors – one which moves and one which stays in the top left corner.
    On very rare occasions (about 1 time in 20) during a normal startup the system will get past the blue screen and to my desktop (in fact this happened several times consecutively before I got to the point where I could only startup in Safe Mode). However, moving the cursor into the menu bar or into the dock would result in the whole screen freezing – the cursor would move, but nothing else would happen). Also I would see that several pixels were ‘missing’ from the desktop. The desktop is normally solid green, but I would see 3 or 4 red and black pixels.
    I’ve studied all the forum topics that even remotely resemble my problem and tried just about everything I can think of including:
    1. Resetting SMU & PRAM (repetitively)
    2. Running the Apple Hardware Test – All tests passed
    3. Replacing the PRAM battery
    4. Check that the fans are working (I can hear them and when I take the back off, both fans spin)
    5. Erased the disk again, installed the OS from the installation DVD, so that there is no third party software on the system. (and then tried a normal boot both with the original 10.5.1 and 10.5.5 after applying the combo update).
    6. I have several external disks with several copies of the OS on various partitions, including a 10.4.11, but trying to boot from any of those ends with the same result. I can only boot in safe mode, other wise I get a blue screen (or very rarely it will squeak through to the desktop & then immediately freeze).
    Always the same result – safe boot only.
    From reading through the various topics, I get the feeling that my problem may be related to the graphics card, but if that is the case I don’t understand why the system will always boot in safe mode and then run without any problems all day. It even allows me to play movies: very jerky (and no sound), both when I move the QT window and the images themselves, but it still plays.
    Any thoughts on what the problem might be (other than fatal) would be greatly appreciated. Or an explanation why, if it is the graphics card, the system will continue working after safe boot.
    I’ve copied out the system details from Profiler that I think are relevant below.
    All the ‘x’’s in the the ROM revision for the ATI Radeon card look a little odd – never seen that before and I don’t know how long its been there.
    Model Name: iMac G5
    Model Identifier: PowerMac8,2
    Processor Name: PowerPC G5 (3.0)
    Processor Speed: 2 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 512 KB
    Memory: 1 GB
    Bus Speed: 667 MHz
    Boot ROM Version: 5.2.5f1
    Serial Number: W8539……
    ATI Radeon 9600:
    Chipset Model: ATY,RV351
    Type: Display
    Bus: AGP
    Slot: AGP
    VRAM (Total): 128 MB
    Vendor: ATI (0x1002)
    Device ID: 0x4150
    Revision ID: 0x0000
    ROM Revision: 113-xxxxx-117
    Displays:
    iMac:
    Display Type: LCD
    Resolution: 1440 x 900
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Software
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Not Supported
    Display Connector:
    Status: No display connected
    Many thanks for your help

    I had a very similar problem with my 20" iMac G5 ALS running 10.4.11. It began with random freezing inside the OS and intermittent slow booting, but quickly progressed (over a matter of days) to hanging at the blue screen before the logon window, just as you described.
    I too, found that booting in Safe Mode was successful. I ruled out the airport card by manually installing that kernel extension in Safe Mode. A check of the logs pointed to "ATY" which I've since found out is a reference to the ATI drivers, which brought me to this post.
    At least on my system--and I have tested this on Tiger (10.4 and 10.4.11) and Leopard (10.5 and 10.5.6), the only .kext that needs to be removed / renamed is ATIRadeon9700.kext. My preferred method of doing this is to drop to the terminal and type:
    sudo mv /System/Library/Extensions/ATIRadeon.kext /System/Library/Extensions/ATIRadeon.kext.disabled
    This preserves the relevant permissions and ownership, which you'd otherwise have to reset manually if you copy the file elsewhere and then delete the original in the Finder, and then want to restore it to its original condition, BTW:
    sudo chmod -R 755 /System/Library/Extensions/ATIRadeon.kext
    sudo chown -R 0:0 /System/Library/Extensions/ATIRadeon.kext
    Any OS X update will replenish the file, so you should be at the ready to reboot into Safe Mode the first time and rename the file again.
    The downside to all this is that the video acceleration doesn't work, so graphics operations are slow and jerky, but at least everything else seems to be okay, in my case anyway.
    Popping open the case did indeed reveal four bulging capacitors. I bit the bullet and purchased some replacements, part number 647-UHN0J182MPD from Mouser:
    http://mouser.com/Search/ProductDetail.aspx?qs=pjJ%252bhmlZec6zHXGt6EoiHw%3d%3d
    Although I wasn't looking forward to desoldering my logic board, I wasn't real hopeful that I'd have success getting the local Apple shop to replace it under warranty either. I did find some helpful information on performing the fix yourself:
    http://jimwarholic.com/2008/07/how-to-repair-apple-imac-g5.php
    And I do want to be able to sell this thing for at least a little cash to help offset the cost of a new quad-core iMac, whenever they're released.
    Fortunately, for me, the service tech at the Genius Bar at the local Apple store agreed to fix it under the power and video extended warranty, even though it was slightly outside of the warranty period, due to the fact that I had brought it in about a year ago and had the power supply replaced under the same warranty.
    I almost didn't bother to bring the machine in because it's a real nasty day here today, and I figured they'd just tell me "That'll be $800 to fix it," and I'd end up doing surgery on the logic board anyway in addition to carrying the thing up and down the steps to my condo. Boy am I glad I did, though. Apple customer service rocks.

  • Custom Report Giving Exception

    While calling my custom report from webconsole i am getting these exceptions
    Class/Method: tcReportOperationsBean/getPagedReportData encounter some problems: {1}
    Caused by [Nested Exception]:
    java.sql.SQLException: Missing IN or OUT parameter at index:: 16
    and
    C lass/Method: ReportAction/displaySectionalReport encounter some problems: Error executing stored procedure
    Please do give some suggestion.

    I am trying to find why this page does not appear : front_page_admin.cgi. My machine address is :http://y2k/identity/oblix/apps/admin/bin/front_page_admin.cgi
    I also have encountered a problem when I was setting up identity console. It gave me an option to select a user but there were no users there, including Administrator. What might have been the cause? This is the serious and major problem. Thank you in advance. Adam Earthman

  • Crystal Reports - Unhandled exception

    Good day all
    When running a report in Crystal reports addon I get the following error:
    "Unhannled Exception hes occured in you aplication. If you click continue.............."
    I am running crystal reports 2.0.0.7 on a 64bit server. Can this error be related to the Crystal runtime?
    Does the .rpt files need to be recompliled for 64bit?
    Regards
    Erika Boshoff

    I think the version you are using was developed to run on 64 bit, so this shouldn't be the issue.
    The error messages in Crystal are not very clear, check the reporting & printing forum for much more info on Crysal issues.

  • Work Manager 6.0 for SMP 2.3 - standalone server - Startup Exceptions

    Hello Experts.
    I am installing a standalone Agentry Server for Work Manager 6.0 on the server where we have installed SMP 2.3.
    It has been installed successfully and does start up, however I get some annoying error messages during start up.
    It seems that the server is running - I can succesfully synchronize to an ATE client.
    Due to the results from this thread, I have changed all ports in the Agentry.ini file to separate ports numbered 7521, 7522, 7523 and 7524.
    Port issues - SMP and Agentry
    Errors from the startup.log:
    13:26:00 05/05/2014: HTTP-XML Back End Back End: Started
    13:26:00 05/05/2014: Server: Starting threads.
    13:26:00 05/05/2014:    1 initial threads.  Threads will auto-scale.
    13:26:00 05/05/2014: Event: 20, 4, Server v6.1.0.3
    13:26:00 05/05/2014: Starting front ends
    13:26:00 05/05/2014: ANGEL Front End: Starting threads.
    13:26:00 05/05/2014: Exception: 13:26:00 05/05/2014 : 2 (Socket Error), UNKNOWN (UNKNOWN, ), ..\Socket\win32\sockets.cpp#1514:ListeningStreamSocket::OSListeningSocket::listenOn
    13:26:00 05/05/2014:    3 initial threads.  Threads will auto-scale.
    13:26:00 05/05/2014: ANGEL Front End: opening listen socket on port 7523
    13:26:00 05/05/2014: Exception: 13:26:00 05/05/2014 : 2 (Socket Error), UNKNOWN (UNKNOWN, ), ..\Socket\win32\sockets.cpp#1514:ListeningStreamSocket::OSListeningSocket::listenOn
    13:26:00 05/05/2014: Event: 17, 10, 0.0.0.0:7523 open
    13:26:00 05/05/2014: Event: 17, 10, ANGEL Front End v6.1.0.3
    13:26:00 05/05/2014: Exception: 13:26:00 05/05/2014 : 2 (Socket Error), UNKNOWN (UNKNOWN, ), ..\Socket\win32\sockets.cpp#1514:ListeningStreamSocket::OSListeningSocket::listenOn
    13:26:00 05/05/2014: Event: 0, 0, Old log files moved into Logs-Rolled\2014-05-05-132546
    13:26:00 05/05/2014: Event: 0, 23, 4
    13:26:00 05/05/2014: Exception: 13:26:00 05/05/2014 : 2 (Socket Error), UNKNOWN (UNKNOWN, ), ..\Socket\win32\sockets.cpp#1514:ListeningStreamSocket::OSListeningSocket::listenOn
    13:26:01 05/05/2014: Event: 0, 2, Server startup is complete.
    13:26:01 05/05/2014: Agentry Application startup complete
    Can anybody help with the meaning and implications of these errors ?
    Thank you.
    Søren Hansen.

    Damn... I missed one port
    You are correct. The default port (8282) of Agentry is used multiple places in the Agentry.ini file, and collides with SMP.
    Thanks Steve.
    For others:
    Please make sure the following ports of the Agentry.ini file are unique across all applications on the server. In this case I have chosen to call all my ports on this instance 752X.
    Now the server starts without errors.
    [ANGEL Front End Ports]
    1=7523
    [TCP Front End]
    listenOn=7521
    [Java-1]
    nonStandardJavaOptions=-Xdebug -Xrunjdwp:transport=dt_socket,address=7524,server=y,suspend=n
    [HTTPXML-2]
    baseURL=http://localhost:7522
    listenOn=7525
    Søren Hansen.

  • Excel Report JSP Exception

    Hello All,
    I am unsuccessfully following the "Output to Excel with Oracle9i Report" tutorial found at http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html to create a web-based JSP report that automatically opens in Excel within the browser. I created the template using Excel, saved this as a web page, opened this in Reports Builder, etc. Once I complete the report in Reports Builder and save it as a Reports JSP, I can successfully run this within Reports Builder using the "Run Web Layout" feature. The problem is when I try to run this JSP within my web-application in JDeveloper using the in-line reports server. The browser launches Excel, but then the ReportsTag.doStartTag() method throws a JspException (see below). Anyone seen this problem or been successful achieving this? I have a normal web-based JSP report that is running fine within JDeveloper using the reports in-line server. Also, the only way I could get my web/paper-based report to be generated in PDF format and Paginated HTML was to start a separate reports server and submit my report to the rwservlet of this server. Shouldn't I be able to use the in-line server in JDeveloper? Any help or ideas would be greatly appreciated. Thanks!
    Exception I'm getting from Excel Report: javax.servlet.jsp.JspExceptionjavax.servlet.jsp.JspException
    at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:341)
    at jsp.reports._schedule._Excel._jspService(_Excel.java:58)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:684)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)

    Hi Bill
    Let me clarify your doubts. You can use in-process Reports server with report servlet as well as from the jsp engine. The difference here is really on what Reports you can actually run from Reports servlet and jsp engine.
    For running from Report servlet:
    http://xx.x.xx.xxx:9004/reports/rwservlet?reports=...
    You would be using report definition file [rdf/jsp] which have paper layout information included in definition. You can run these paper reports to pdf/html/rtf/delimited/delimitedata format.
    Runnig a reports from jsp engine:
    http://xx.x.xx.xxx:9004/reports/examples/<reports_name.jsp>?server=...+userid=...
    You would be running a report definition [jsp/xml] which have reports jsp tags as part of reports web layout information. Please note these web layout reports which you mention using reports jsp tags, are run under the jspengine using reports tag libraries. The only format you can generate here is html [or excel output].
    Reports in-process server is a concept where if user has not started a exclusive Report server, Report servlet, and also reports tag libraries, would start a default reports server to run the particular request. This way it would make things easy for the user and he would need to manage a seperate report server of it own.
    Thanks
    Rohit

  • Unhandled COMException Message: No Error. during printing some reports, extend Exception Info

    Hi,
    i'm using Crystal Reports for VS version 13.0.13.1597 with Visual Studio 2013
    Unfortunately I get a COMExeption when trying to Print some reports after previously displaying a preview using the CrystalDecisions.Windows.Forms.CrystalReportViewer Component.
    System.Runtime.InteropServices.COMException was unhandled by user code
      HResult=-2147483648
      Message=
    No Error.
      Source=rptcontrollers.dll
      ErrorCode=-2147483648
      StackTrace:
           at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetPage(PageRequestContext pPageRequestContext)
           at CrystalDecisions.ReportSource.EromReportSourceBase.GetPage(PageRequestContext pageReqContext)
           at CrystalDecisions.CrystalReports.Engine.FormatEngine.QueryPageSettingsEventHandler(Object sender, QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintDocument.OnQueryPageSettings(QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintDocument._OnQueryPageSettings(QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintController.PrintLoop(PrintDocument document)
           at System.Drawing.Printing.PrintController.Print(PrintDocument document)
           at System.Drawing.Printing.PrintDocument.Print()
           at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)
           at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)
           at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, Boolean reformatReportPageSettings)
           at Soloplan.CarLo.Printing.PrintAdapterCrystalReports2011.Print() in c:\project.net\Soloplan\CarLo\Printing\PrintAdapterCrystalReports2011.cs:Line 1528.
      InnerException:
    As you can see the error message is a bit short on information what went wrong, especially the Message: No Error.
    Is there any possiblity to extend the information on this exception?
    The behavior is reproducible with some reports, while others work just fine, and even with the problematic reports it only when the call of the Print function is done while the preview is shown.
    I hope someone can point me in the right direction.
    Thanks
    Johannes

    Wow. It's been a long, long time since I've seen CR throw error: no error (like v. 4.5 or so...). Used to chuckle about it - I think I even saved a screenshot of it
    It will be good to have more info on this:
    Win or web app?
    Printer used.
    Printer driver name and version.
    The reports that do not work throw the error consistently?
    Code used to print the reports.
    Is this a threaded app?
    Do you get the issue printing from the viewer?
    Do you get the issue printing from the designer viewer?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Startup Exceptions

    I am a new Sun One Studio 4 user. I get the following exception when I first bring up the software. I am using j2sdk1.4.1_02 and have J2sdkee 1.4 beta installed on a Win2000 pentium 4 machine.
    Anyone have any suggestions?
    Tue Mar 11 09:16:33 EST 2003: org.xml.sax.SAXParseException: Mount/org-openide-filesystems-LocalFileSystem.settings
    Annotation: Source: Mount/org-openide-filesystems-LocalFileSystem.settings
    Annotation: Content:
    Nested annotation: Document root element is missing.
    java.io.IOException: Mount/org-openide-filesystems-LocalFileSystem.settings
    at org.openide.loaders.XMLSettingsSupport$SettingsRecognizer.parse(XMLSettingsSupport.java:613)
    at org.openide.loaders.InstanceDataObject$SettingsInstance.getSettings(InstanceDataObject.java:1184)
    at org.openide.loaders.InstanceDataObject$SettingsInstance.instanceCreate(InstanceDataObject.java:1211)
    at org.netbeans.core.AutomountSupport.checkSaved(AutomountSupport.java:380)
    at org.netbeans.core.AutomountSupport.access$100(AutomountSupport.java:38)
    at org.netbeans.core.AutomountSupport$1.run(AutomountSupport.java:228)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:89)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:388)
    at org.netbeans.core.AutomountSupport.run(AutomountSupport.java:224)
    at org.openide.util.Task.run(Task.java:152)
    [catch] at org.openide.util.RequestProcessor$ProcessorThread.run(RequestProcessor.java:622)
    Tue Mar 11 09:16:33 EST 2003: org.xml.sax.SAXParseException: Document root element is missing.
    org.xml.sax.SAXParseException: Document root element is missing.
    at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3182)
    at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3170)
    at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:501)
    at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
    at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
    at org.openide.loaders.XMLSettingsSupport$SettingsRecognizer.parse(XMLSettingsSupport.java:609)
    at org.openide.loaders.InstanceDataObject$SettingsInstance.getSettings(InstanceDataObject.java:1184)
    at org.openide.loaders.InstanceDataObject$SettingsInstance.instanceCreate(InstanceDataObject.java:1211)
    at org.netbeans.core.AutomountSupport.checkSaved(AutomountSupport.java:380)
    at org.netbeans.core.AutomountSupport.access$100(AutomountSupport.java:38)
    at org.netbeans.core.AutomountSupport$1.run(AutomountSupport.java:228)
    at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:89)
    at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:388)
    at org.netbeans.core.AutomountSupport.run(AutomountSupport.java:224)
    at org.openide.util.Task.run(Task.java:152)
    [catch] at org.openide.util.RequestProcessor$ProcessorThread.run(RequestProcessor.java:622)

    This is a common issue that has already been reported and addressed. It should be fixed in NetBeans 3.4.1 and 3.5 as well as in Sun ONE Studio 5, SE.
    Regards,
    Christina

Maybe you are looking for

  • MSI K7N2 Delta-ILSR Max?

    Hey, Just wondering how far you can go with the K7N2 Delta boards.  I'm currently at 223 on air cooling.  I believe my corsair PC3200C2 XMS memory will hold me back from going farther, but just wondering if anyone knows the limitation in FSB that the

  • Logic Express with not Recognise Amplitube 3 as a Plug-in

    I cannot get Logic Express 9 to recognise Amplitube 3 as a plug-in. What do I need to do to make get it to use Amplitube. I'm new to Logic Express and I'm enjoying the on-board amp sims, but I really love my Amplitube.

  • Ordimage in ADF11g

    Hi, I have worked on BLOB image not shows in JSP page!! image retrival and currently I need to help how to view ordimage in my jspx page. If anyone had compiled such program can you please give me a reference that how can I do that by ADF11g. Note th

  • Epson xp-600 wifi password issues

    I need to enter my wifi password everytime I want to print on Epson XP-600.  Is there a solution to this problem?

  • Errors Opening and Installing Adobe Acrobat Pro

    Originally mine was a single problem with the following error after attempting to open Adobe Acrobat Pro 7.0, "An error has been detected with a required application library and the product cannot continue. Please reinstall the application." Now afte