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.

Similar Messages

  • Report service Integration (sql 2012 and SharePoint 2013) error Report Server WMI Provider error: Invalid namespace

    Report Server WMI Provider Error: Invalid namespace
    Domain Server, Sql2012 server and SP2013 Server (3 vm servers)
    the sql server reporting services service application and applications Proxy are installed and started (SP2013 Sever)
    the sql server PowerPivot system Service and SQL server Reporting Services Service are Started (in Services on Server)
    in sql server 2012 sp1 reporting service configured (web service URL and Report Manager URL are configured and tested,  the database report server mode is native) (SQl 2012 Server)
    under general Application Settings .. trying to setup the "Reporting Service Integration" give us the above error message (Report Server WMI Provider Error: Invalid namespace)
    I was looking for all blogs and TechNet material but without success.

    Follow these steps:
    1) Uninstall SSRS from the Database Engine server (MSSQLSERVER instance).
    2) Install SSRS on the SharePoint server using the "Reporting Services - SharePoint" install option during SQL Feature selection, no other services are required (e.g. you do not need to install Database Engine services).
    3) You should then see SSRS as a Service Instance in Central Admin -> Manage Services on Server, at which point you can also create an SSRS Service Application.
    While this guide (http://msdn.microsoft.com/en-us/library/jj219068.aspx#bkmk_install_SSRS) walks you through it, this is for a single server install where the Database Engine is also installed on SharePoint, not something you want to do.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • HT5654 When attempting to open iTunes on my PC, I receive the error message: Runtime Error! R6034

    When attempting to open iTunes on my PC, I get an error message: Runtime Error!  R6034

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Attempted to install new version of itunes and now getting errors occurred while install updates. runtime error program: c:\program files (x86) an application has made an attempt to load the c runtime library incorrectly. please contact the applications

    attempted to install newest version of itunes and now get 'runtime error' program: c:\program files (x86) r6034

    Hey Debbiered1,
    Follow the steps in this link to resolve the issue:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    When you uninstall, the items you uninstall and the order in which you do so are particularly important:
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    Let us know if following that article and uninstalling those components in that order helped the situation.
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

  • Creating a report from scratch in java and getting invalidfield error

    hello
    I am trying to generate a report java.
    I am getting invalidfieldobject - the field was not found
    I checked the resultset and it does contain the column called trn
    package com.surecomp;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.data.DBField;
    import com.crystaldecisions.sdk.occa.report.data.FieldValueType;
    import com.crystaldecisions.sdk.occa.report.definition.FieldObject;
    import com.crystaldecisions.sdk.occa.report.definition.ISection;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat;
    import com.crystaldecisions.sdk.occa.report.lib.ReportSDKException;
    public class reporting  {
         public static void main(String[] args) {
              reporting x = new reporting();
              x.run();
         public void run() {
              try {
                   java.sql.ResultSet javaResultSet = null;
                   Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
                   java.sql.Connection connection = java.sql.DriverManager.getConnection("jdbc:sqlserver://ssi-allmatch:1433;databaseName=mrmdus33xxx;","sa", "sa12");
                   java.sql.Statement statement = connection.createStatement();
                   javaResultSet = statement.executeQuery("select * from trades");               
                   ReportClientDocument boReportClientDocument = new ReportClientDocument();
                   boReportClientDocument.newDocument();
                   boReportClientDocument.getDatabaseController().addDataSource(javaResultSet);
                   ISection boSectionToAddTo = boReportClientDocument.getReportDefController().getReportDefinition().getDetailArea().getSections().getSection(0);
                   // Create a new Database Field Object
                   DBField boDBField = new DBField();
                   boDBField.setName("trades.trn");
                   boDBField.setHeadingText("trn");
                   boDBField.setType(FieldValueType.stringField);
                   FieldObject boFieldObject = new FieldObject();
                   boFieldObject.setDataSourceName(boDBField.getFormulaForm());
                   boFieldObject.setFieldValueType(boDBField.getType());
                   boFieldObject.setLeft(9000);
                   boFieldObject.setTop(1);
                   boFieldObject.setWidth(1911);
                   boFieldObject.setHeight(226);
                   boReportClientDocument.getReportDefController().getReportObjectController().add(boFieldObject, boSectionToAddTo, -1);
                   ByteArrayInputStream byteArrayInputStream = null;
                   byteArrayInputStream = (ByteArrayInputStream) boReportClientDocument.getPrintOutputController().export(ReportExportFormat.PDF);
                   writeFileFromInputStream("c:/bob.pdf",byteArrayInputStream);
              catch(ReportSDKException ex) {     
                   System.out.println(ex);
              catch(Exception ex) {
                   System.out.println(ex);               
        private void writeFileFromInputStream(String sfile, ByteArrayInputStream inputStream)  {
             try {
                  File file = new File(sfile);
                  OutputStream outputStream = new FileOutputStream(file);  
                  int bytesRead = 0;  
                  byte [] buffer = new byte[32768];  
                  while ((bytesRead = inputStream.read(buffer, 0, 32768)) != -1) {  
                            outputStream.write(buffer, 0, bytesRead);  
                  outputStream.close();    
                  inputStream.close();     
             } catch (Throwable th) {

    Hi,
    I have the same problem, did you get this resolved? I am new to the Crystal Report Java SDK and want to create reports from scratch but I can't find any good resources on the internet or the website.

  • Report for Actual PO Qty and Received Qty

    Hi,
    Is there any standard report which have the information of PO details like how much quantity PO have and how much received against the total PO Quantity.
    Regards..

    Hi,
    Use Scope of List  as " ALV ".
    Selection Parameters -- WE101
    Pass on the list of PO's for which you wish to check as a i/p data.
    Regards
    Ramesh Ch

  • I am trying to upgrade my hard drive in my mac book pro using the disk utility in an attempt to clone my old hard drive.  I can only get so far, just before cloning may start and receive an "error 254" and can go no further.  Any idea what this error is?

    I am trying to upgrad the hard drive in my mac book pro using the disk utility in an attempt to clone my old hard drive.  I can only get so far throughj the process where its about to start cloing when I get a message " error 254".  Any idea what that means and how do I get around this issue so I can use my new hard drive?  Thanks for your input.
    Vince

    Connect the HDD to your MBP.  Open Disk Utility>Erase and drag the HDD icon inrt the Name field.  The format should be Mac OS Extended (Journaled).  Click on the Erase button.
    Then try the clone process again.  You may use Disk Utility>Restore or a third party cloning application such as Carbon Copy Cloner or Super Duper.
    Ciao.

  • I attempted to upgrade to iOS6 and received an error with a command to restore!? What do I do? I don't want to lose all my apps and details!

    Is there anything I can do NOT to lose my apps and info?
    This is the last straw! If I lose my apps I say bye bye to Apple!

    This is why it said on your phone, before it started to update to ensure you have backed up. There is no way arround the restore. This issue normall comes from the iPhione loosing charge during update or the update being corrupted during the download. The software your iPhone is having right now is inoperable and needsto be reinstalled. You'll be able to redownload all your Apps for free again, should they still be available in the appstore. But all the rest of your data must be on your Computer or iCloud, or you to load them onto your phone again.

  • I am having difficulty re-installing iTunes Store on my Windows 7 Desktop and receiving an error "R6034  an application has made an attempt to load the c runtime library incorrectly."

    Any suggestions/troubleshooting will be highly appreciated.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • I am attempting to load CS6 from a disc and get an error message to close Bridge exe.  Bridge is not

    I am attemtpting to load CS6 from a disc.  I get an error messsage to close Bridge exe even though Bridge is not running.

    See also http://helpx.adobe.com/creative-suite/kb/error-installation-cannot-continue-bridge.html

  • Just attempted to download the lastest ITunes update and received a Run Time error R6034

    Having a update issue!
    Most recent Itunes update would not load properly.
    Received the following ERRORS:
    C/RUN ERROR R6034
    ERROR 7
    WINDOWS ERROR 1114
    MICROSOFT VISUAL C++
    Now what?
    Any help out there?
    Thanks,
    vinylguru

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components; this won't normally affect its library, but that should be backed up anyway.
    (99143)

  • OSB Message Reports - Purge Exception

    Hello everybody,
    The Purge Messages functionality in the sbconsole (Reporting > Message Reports > Message Reports) results in this Console Exception
    Message: javax.naming.ServiceUnavailableException (Root exception is java.net.UnknownHostException: null: null)
    Type: java.net.UnknownHostException
    with the following stack trace:
    (InetAddress.java:1128) java.net.InetAddress.getAllByName0()
    (InetAddress.java:1098) java.net.InetAddress.getAllByName0()
    (InetAddress.java:1061) java.net.InetAddress.getAllByName()
    (RJVMFinder.java:414) weblogic.rjvm.RJVMFinder.getDnsEntries()
    (RJVMFinder.java:181) weblogic.rjvm.RJVMFinder.findOrCreate()
    (ServerURL.java:154) weblogic.rjvm.ServerURL.findOrCreateRJVM()
    (WLInitialContextFactoryDelegate.java:350) weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext()
    (Environment.java:307) weblogic.jndi.Environment.getContext()
    (Environment.java:277) weblogic.jndi.Environment.getContext()
    (WLInitialContextFactory.java:117) weblogic.jndi.WLInitialContextFactory.getInitialContext()
    (NamingManager.java:667) javax.naming.spi.NamingManager.getInitialContext()
    (InitialContext.java:247) javax.naming.InitialContext.getDefaultInitCtx()
    (InitialContext.java:223) javax.naming.InitialContext.init()
    (InitialContext.java:197) javax.naming.InitialContext.()
    (ReportingUtil.java:64) com.bea.wli.reporting.jmsprovider.utils.ReportingUtil.getContextForCluster()
    (ReportingMessagePurgerImpl.java:75) com.bea.wli.reporting.jmsprovider.runtime.ReportingMessagePurgerImpl.__sendPurgeMessage()
    (ReportingMessagePurgerImpl.java:36) com.bea.wli.reporting.jmsprovider.runtime.ReportingMessagePurgerImpl.access$000()
    (ReportingMessagePurgerImpl.java:54) com.bea.wli.reporting.jmsprovider.runtime.ReportingMessagePurgerImpl$1.run()
    (ReportingMessagePurgerImpl.java:53) com.bea.wli.reporting.jmsprovider.runtime.ReportingMessagePurgerImpl$1.run()
    (AuthenticatedSubject.java:363) weblogic.security.acl.internal.AuthenticatedSubject.doAs()
    (:-1) weblogic.security.service.SecurityManager.runAs()
    (SecurityModuleImpl.java:376) com.bea.wli.sb.security.SecurityModuleImpl.runAlsbPrivilegedAction()
    (ReportingMessagePurgerImpl.java:52) com.bea.wli.reporting.jmsprovider.runtime.ReportingMessagePurgerImpl.sendPurgeMessage()
    (ReportingHelper.java:194) com.bea.alsb.console.oam.reporting.jmsprovider.ReportingHelper.purgeMessages()
    (ReportManagementFlow.java:332) com.bea.alsb.console.reporting.jmsprovider.ReportManagementFlow.purge()
    (NativeMethodAccessorImpl.java:-2) sun.reflect.NativeMethodAccessorImpl.invoke0()
    (NativeMethodAccessorImpl.java:39) sun.reflect.NativeMethodAccessorImpl.invoke()
    (DelegatingMethodAccessorImpl.java:25) sun.reflect.DelegatingMethodAccessorImpl.invoke()
    (Method.java:585) java.lang.reflect.Method.invoke()
    (FlowController.java:870) org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod()
    (FlowController.java:809) org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward()
    (FlowController.java:478) org.apache.beehive.netui.pageflow.FlowController.internalExecute()
    (PageFlowController.java:306) org.apache.beehive.netui.pageflow.PageFlowController.internalExecute()
    (FlowController.java:336) org.apache.beehive.netui.pageflow.FlowController.execute()
    (FlowControllerAction.java:52) org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute()
    (RequestProcessor.java:431) org.apache.struts.action.RequestProcessor.processActionPerform()
    (PageFlowRequestProcessor.java:97) org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201()
    (PageFlowRequestProcessor.java:2044) org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute()
    (ActionInterceptors.java:91) org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction()
    (PageFlowRequestProcessor.java:2116) org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform()
    (SBConsoleRequestProcessor.java:89) com.bea.alsb.console.common.base.SBConsoleRequestProcessor.processActionPerform()
    (RequestProcessor.java:236) org.apache.struts.action.RequestProcessor.process()
    (PageFlowRequestProcessor.java:556) org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal()
    (PageFlowRequestProcessor.java:853) org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process()
    (AutoRegisterActionServlet.java:631) org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process()
    (PageFlowActionServlet.java:158) org.apache.beehive.netui.pageflow.PageFlowActionServlet.process()
    (ConsoleActionServlet.java:241) com.bea.console.internal.ConsoleActionServlet.process()
    (ActionServlet.java:414) org.apache.struts.action.ActionServlet.doGet()
    (ConsoleActionServlet.java:130) com.bea.console.internal.ConsoleActionServlet.doGet()
    (SBConsoleActionServlet.java:49) com.bea.alsb.console.common.base.SBConsoleActionServlet.doGet()
    (PageFlowUtils.java:1170) org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup()
    (ScopedContentCommonSupport.java:686) com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction()
    (ScopedContentCommonSupport.java:142) com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal()
    (PageFlowStubImpl.java:106) com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction()
    (NetuiActionHandler.java:107) com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction()
    (NetuiContent.java:180) com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction()
    (NetuiContent.java:168) com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction()
    (NetuiContent.java:223) com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData()
    (ControlLifecycle.java:178) com.bea.netuix.nf.ControlLifecycle$2.visit()
    (ControlTreeWalker.java:324) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:334) com.bea.netuix.nf.ControlTreeWalker.walkRecursive()
    (ControlTreeWalker.java:130) com.bea.netuix.nf.ControlTreeWalker.walk()
    (Lifecycle.java:375) com.bea.netuix.nf.Lifecycle.processLifecycles()
    (Lifecycle.java:341) com.bea.netuix.nf.Lifecycle.processLifecycles()
    (Lifecycle.java:332) com.bea.netuix.nf.Lifecycle.processLifecycles()
    (Lifecycle.java:164) com.bea.netuix.nf.Lifecycle.runInbound()
    (Lifecycle.java:139) com.bea.netuix.nf.Lifecycle.run()
    (UIServlet.java:377) com.bea.netuix.servlets.manager.UIServlet.runLifecycle()
    (UIServlet.java:253) com.bea.netuix.servlets.manager.UIServlet.doPost()
    (UIServlet.java:194) com.bea.netuix.servlets.manager.UIServlet.service()
    (SingleFileServlet.java:266) com.bea.netuix.servlets.manager.SingleFileServlet.service()
    (HttpServlet.java:820) javax.servlet.http.HttpServlet.service()
    (AsyncInitServlet.java:124) weblogic.servlet.AsyncInitServlet.service()
    (StubSecurityHelper.java:226) weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run()
    (StubSecurityHelper.java:124) weblogic.servlet.internal.StubSecurityHelper.invokeServlet()
    (ServletStubImpl.java:283) weblogic.servlet.internal.ServletStubImpl.execute()
    (TailFilter.java:26) weblogic.servlet.internal.TailFilter.doFilter()
    (FilterChainImpl.java:42) weblogic.servlet.internal.FilterChainImpl.doFilter()
    (RequestEventsFilter.java:26) weblogic.servlet.internal.RequestEventsFilter.doFilter()
    (FilterChainImpl.java:42) weblogic.servlet.internal.FilterChainImpl.doFilter()
    (WebAppServletContext.java:3393) weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()
    (AuthenticatedSubject.java:321) weblogic.security.acl.internal.AuthenticatedSubject.doAs()
    (:-1) weblogic.security.service.SecurityManager.runAs()
    (WebAppServletContext.java:2140) weblogic.servlet.internal.WebAppServletContext.securedExecute()
    (WebAppServletContext.java:2046) weblogic.servlet.internal.WebAppServletContext.execute()
    (ServletRequestImpl.java:1366) weblogic.servlet.internal.ServletRequestImpl.run()
    (ExecuteThread.java:200) weblogic.work.ExecuteThread.execute()
    (ExecuteThread.java:172) weblogic.work.ExecuteThread.run()
    Turning on full debug logging for the AdminServer didn't yield any useful information.
    Apart from that the OSB seems to work fine in our application so we're wondering what's causing this error?
    This is using WebLogic Server 10.0 and ALSB 3.0.
    Any help is appreciated.
    Cheers,
    Jan

    Hi,
    I am also getting the same error.
    I have a standalone instance of OSB .The OS is Red hat linux Enterprise edition.
    Regards,
    Vivek Kumar

  • 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;

  • Why in the world is it that everytime I attempt to report a problem with The TV Show "The Walking Dead Season 2 episode 1" I tunes redirects me to their main page..***.. I just want to watch this show. I'm deployed

    Why in the world is it that everytime I attempt to report a problem with The TV Show "The Walking Dead Season 2 episode 1" Itunes redirects me to their main page..**

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • 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

Maybe you are looking for

  • Getting compilation error: java.util.Set is an interface. This interface is not supported.

    Hi Folks, Is there a limitation in BEA's web services implementation? I have a simple web service that returns an array of java objects. However I am calling another middle tier API that returns a Set. I convert this Set into array of object and retu

  • Table Field Names

    Hi All, I m unable to find tables, in which these fields are related..mainly....Father's Name and Shift.... Plz Help Me... Thanks...

  • Problem in saving the details of 0590 infotype...

    Hi Experts, When im trying to save  the  longterm reimbursement amount in 590 infotype itis howing the error message that """Hard furnishing scheme is not available  for the employee number ** on 01.04.2007""" What could be the problem.Where should w

  • Steps to create a planning folder in detail.

    hai friends,              i am new to BPS .i want to create a planning folder.so i need detail steps and documentation. Thankyou, shankar.

  • Sub components problem in custom tag

    Hi! Im writing custom tag that do nothing but can contains other components. So first I create custom tag with hendler that extends UIComponentTag and component class that extends UIComponentBase now tag work but i dont see sub components on the page