Quantcast
Channel: SCN : Popular Discussions - SAP Crystal Reports, version for Eclipse
Viewing all 893 articles
Browse latest View live

can't find resource for bundle java.util.PropertyResourceBundle, key Error_InvalidServerName JBOSS

$
0
0

Hi I am creating an application which opens a rpt file when you perform in windows and JBOSS working properly but when I step on Red Hat and JBoss shows me the following error.

 

 

Can not find resource for bundle java.util.PropertyResourceBundle, key Error_InvalidServerName

 

my code:

 

            reportClientDoc.open("reportes/" + reporte1 + ".rpt", 0);

 

in that line is not going.


Eclipse 64bit

$
0
0

Should the CR4E plugins work in a 64bit eclipse environment or do I have to stick to 32bit?

 

Thanks,

 

Steve

java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1

$
0
0

Hi,

 

  How to resolve the below error in Crystal reports usin JSP;

 

Error Stack Trace:

 

java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1

ORA-01000: maximum open cursors exceeded

ORA-00604: error occurred at recursive SQL level 1

ORA-01000: maximum open cursors exceeded

ORA-01000: maximum open cursors exceeded

 

I am using below code to genrate report:


String reportPath;

Object reportSource;

ReportClientDocument reportClientDocument;

ByteArrayInputStream byteArrayInputStream;

byte[] byteArray;

int bytesRead;

 

reportPath = request.getParameter("_reportName");

 

reportClientDocument = new ReportClientDocument();

 

reportClientDocument.setReportAppServer(ReportClientDocument.inprocConnectionString);

 

reportClientDocument.open(reportPath, OpenReportOptions._openAsReadOnly);

 

 

reportSource = reportClientDocument.getReportSource();

session.setAttribute("ReportSource", reportSource);

 

byteArrayInputStream = (ByteArrayInputStream) reportClientDocument

        .getPrintOutputController().export(ReportExportFormat.PDF);

 

response.reset();

 

response.setHeader("Content-disposition", "inline;filename=crreport.pdf");

response.setContentType("application/pdf");

 

byteArray = new byte[1024];

while((bytesRead = byteArrayInputStream.read(byteArray)) != -1) {

response.getOutputStream().write(byteArray, 0, bytesRead);

}

 

response.getOutputStream().flush();

response.getOutputStream().close();

 

reportClientDocument.close();

 

 

Thanks

Penchal

Crystal Reports + J2EE + Websphere Application Server on iSeries/i5/AS400

$
0
0

Dear SAP forums,

 

   We have an AS/400 (AKA i5/iSeries) system and we have Websphere Application Server 6. running our J2EE web application on it.

 

  We are using Crystal Reports 2008 Designer to build our reports, using JDBC to access our DB2 databases and access our data.

 

  After the reports are completed, we want to deploy them to a Struts-enabled, Web-Based application.  I am having enormous difficulty with this configuration.

 

  Is this config even supported?? (AS400 + J2EE + Crystal Reports)?

 

  I am using Crystal Reports sample apps Display Connection Info and Change Database Connection as samples.

 

  Any information anyone can give me will help.

 

Thanks very much,

 

Ryan

Report timeout and refresh.

$
0
0

<p>Hi </p><p>I have the timeout variable set to 10.  After 10 minutes, the report resources are disposed of, and a generic error message is shown:</p>error: <table border="0" cellspacing="0" cellpadding="5"><tbody><tr><td><p><span class="crExceptionText">Due to inactivity, the report document timed out and has already been closed. </span></p><p><span class="crExceptionText">Is it possible to catch this error, and make it create a new clientdoc/reportSource, so that the user does not see this message, so I can create a new clientdoc and get the reportsource again?</span></p><p><span class="crExceptionText">If this is not possible, then if I set the timeout varible to 0, what will happen when the report window is closed? will the report resources get garbage collected by java? or will I eventually run into an "out of memory" error?</span></p><p><span class="crExceptionText">One final question, I saw 2 examples on this crystal site</span></p><p><span class="crExceptionText">1) the ReportClientDoc is stored in session</span></p><p><span class="crExceptionText">2) the ReportS</span><span class="crExceptionText">ource is stored in session.</span></p><p><span class="crExceptionText">Is it better to store the ReportClientDoc or the reportSource in the session from a performance point of view?</span></p><p><span class="crExceptionText">Thanks Shirley</span></p></td></tr></tbody></table>

Crystal Report Images Not Showing - JSP inside /WEB-INF folder

$
0
0

Hi Experts,

 

I am using Crystal report for Eclipse and also using Struts2 and tiles framework combination.

 

The problem is when viewing the report all I've got is red X on all images and the graph image also not showing. This is when I use tiles and my jsp is inside the web-inf folder.

 

This is my struts link: href="s:url value='/report/reportOpen.action?report=1'

 

I've checked that the path to the viewer generated HTML is not correct. see code below.

src="../../../crystalreportviewers/js/crviewerinclude.js"

 

But when I test to access a simple jsp viewer that resides on the web root folder, this works fine but of course this is not what I want to have. I need to have my banner and menus on top of the report page (using tiles)

 

This is my jsp link: href="s:url value='/ReportViewer.jsp?report=1'

 

Viewer generated HTML below.

src="crystalreportviewers/js/crviewerinclude.js"

 

This might be a common problem and that you can share to me your solution.

 

Note: I removed the script tags because I can't submit this entry.

 

Thank you  in advance,

 

Regards,

 

Rulix Batistil

 

 

Crystal Report Images Not Showing - JSP inside /WEB-INF folder

Background threads?

$
0
0

Hi all

 

We're currently evaluating CR for use in our swing-based application. Our app has a plugin mechanism, and I'm having some difficulty in getting our plugins unloaded after using the ReportViewerBean. Specifically, it appears that a number of background threads with names like "Background Batch Spiller 0" are started up by the Crystal Reports code, and hang around even after closing the component. The threads appear to still have references to our plugin's classloader through the inheritedAccessControlContext field on the thread. We are not running with a SecurityManager.

 

I believe that I'm calling ReportClientDocument.close() as necessary and also cleaning up the viewer by calling stop() followed by destroy() on it.

 

Is there any way to programatically tell the Crystal code to shut down all its background threads? Or are there any other suggestions?

 

Thanks in advance

 

Tom

Maximo Crystal Integration

$
0
0

Hello,

 

I'm trying to do a maximo crystal Integration and when I run the report I'm getting

 

this error:

 

HTTP Status 500 -

--------------------------------------------------------------------------------

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: java.lang.NullPointerException
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:491)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:419)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)


root cause

java.lang.NullPointerException
org.apache.jsp.runBoCrystalReport_jsp._jspService(runBoCrystalReport_jsp.java:492)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)


note The full stack trace of the root cause is available in the Apache Tomcat/6.0.24 logs.


--------------------------------------------------------------------------------

Apache Tomcat/6.0.24

 

 

 

Could you please let me know how to fix this error.

 

Thank you!

 

Martin


Putting JARs in shared/lib?

$
0
0

How can I put JRC's JARs in Tomcat's shared\lib -directory instead of my application's lib-directory? Everything works fine if JARs are in Tomcat\webapps\MyApplication\WEB-INF\lib but if I move them to Tomcat\shared\lib I'll get en error message:

 

com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected error determining relative path---- Error code:-2147217395 Error code name:serverProgrammingError

 

Since there might be several web applications on the server running JRC I'd prefer having only one set of required JARs in shared/lib.

Need product guidance

$
0
0

Can someone point me to an explanation of Crystal Reports product functionality and licensing requirements?  Specifically, I am developing a standalone Java app using the Eclipse IDE.  I am attempting to download and install the 'free' Crystal plug-in (getting errors, but that's another thread).  What exactly am I getting for 'free' once I get it installed?  Will there be end-user Crystal licensing requirements for the end-users of my distributed Java app if I use this plug-in to develop some canned reports?  Thanks...

Error in Crystal Report 2008 SP1

$
0
0

Hi,

 

I created a parmeterized sql command template(.rpt)

example:

SQL  'SELECT Name FROM Employee WHERE EmployeeID = {?EmpID}' in the template command with parameter as EmpID.

 

We are generating the report Using RAS 2008 sp1.

and getting the below error while opening the template using java code.

 

ReportClientDocument rptClientDocument = new ReportClientDocument();

    rptClientDocument.setReportAppServer(rasServer);

 

    if (!myTemplatesPath.startsWith("rassdk://")) {

      myTemplatesPath = "rassdk://" + myTemplatesPath;

    }

    rptClientDocument.open(myTemplatesPath + template,

        OpenReportOptions._openAsReadOnly);

 

StackTrace

:

com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: XML serialization failed.---- Error code:-2147467259 Error code name:failed

at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.v.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.v.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.ab.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.s.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.do(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)

at com.tpt.thresher.powerxl.server.reportdata.userreport.UserReportGenerator.initReport(UserReportGenerator.java:203)

at com.tpt.thresher.powerxl.server.reportdata.userreport.UserReportGenerator.generateReport(UserReportGenerator.java:472)

at com.tpt.thresher.powerxl.server.reportdata.reports.ReportManager.generateUserReport(ReportManager.java:3391)

at com.tpt.thresher.powerxl.server.reportdata.dao.UserReportDAO.generateReport(UserReportDAO.java:33)

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:597)

at com.tpt.thresher.powerxl.server.reportdata.concurrent.ReportDistributedProcessor.processReport(ReportDistributedProcessor.java:494)

at com.tpt.thresher.powerxl.server.reportdata.concurrent.ReportDistributedProcessor.process(ReportDistributedProcessor.java:450)

at com.tpt.thresher.common.concurrent.SpringDistributedProcess.onMessage(SpringDistributedProcess.java:413)

at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4072)

at weblogic.jms.client.JMSSession.execute(JMSSession.java:3964)

at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:4490)

at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)

at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)

at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)

Caused by: java.lang.IndexOutOfBoundsException

at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1048)

at com.crystaldecisions.xml.serialization.XMLObjectSerializer.load(Unknown Source)

... 24 more

Caused by:

java.lang.IndexOutOfBoundsException

at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1048)

at com.crystaldecisions.xml.serialization.XMLObjectSerializer.load(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.v.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.v.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.ab.a(Unknown Source)

at com.crystaldecisions.proxy.remoteagent.s.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.do(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.a(Unknown Source)

at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)

at com.tpt.thresher.powerxl.server.reportdata.userreport.UserReportGenerator.initReport(UserReportGenerator.java:203)

at com.tpt.thresher.powerxl.server.reportdata.userreport.UserReportGenerator.generateReport(UserReportGenerator.java:472)

at com.tpt.thresher.powerxl.server.reportdata.reports.ReportManager.generateUserReport(ReportManager.java:3391)

at com.tpt.thresher.powerxl.server.reportdata.dao.UserReportDAO.generateReport(UserReportDAO.java:33)

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:597)

at com.tpt.thresher.powerxl.server.reportdata.concurrent.ReportDistributedProcessor.processReport(ReportDistributedProcessor.java:494)

at com.tpt.thresher.powerxl.server.reportdata.concurrent.ReportDistributedProcessor.process(ReportDistributedProcessor.java:450)

at com.tpt.thresher.common.concurrent.SpringDistributedProcess.onMessage(SpringDistributedProcess.java:413)

at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4072)

at weblogic.jms.client.JMSSession.execute(JMSSession.java:3964)

at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:4490)

at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)

at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)

at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)

 

Error is coming only for RAS 2008 only but in case of enter prise XI  version it is running fine .

suggestions please.

 

 

Regards,

Adyut

CR4E 2.0 support for crystal reports 2011

$
0
0

Need help in answering a clients query, will cr4e 2.0 version support crystal reports 2011. I already am using cr4e 2.0 version to show reports created with crystal 2008 and would like to know if I can support crystal 2011 with the same configuration.

Crystal Reports e-Learning

$
0
0

Dear All,

 

I used SAP Crystal Reports Plugin with Eclipse have gone through few features of it.

 

Now i have got Sap Crystal Reports 2008 XI on my machine. I was looking forward to know

is there any e-Learning course for it so that i can see how we can utilize the maximum of

Crystal Reports.

 

Looking forward to hear.

 

BR,

Prithvi

 

Edited by: prithvisehgal on May 19, 2011 2:45 PM

Using Excel as Data Source for Crystal Reports (with Java SDK)

$
0
0

Hi,

I already tried to find similar topics here but was more or less unable to fix my problem with the suggestion I found so far.

I would like to create a report with a excel file as data source. All my current attempts fail with the following exception "com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(719):  detected an exception: Error finding JNDI name (E:\SampleSalesData.xls)"

 

This is my current approach:

final ReportClientDocument boReportClientDocument = new ReportClientDocument();
boReportClientDocument.setLocale(Locale.US);
boReportClientDocument.newDocument();
final String fullPathToExcelFile = "E:\\SampleSalesData.xls"
final ConnectionInfo boConnectionInfo = new ConnectionInfo();
final PropertyBag boPropertyBag = boConnectionInfo.getAttributes();
boPropertyBag.put("Server Type", "Access/Excel (DAO)");
boPropertyBag.put("Database Type", "Excel 8.0");
boPropertyBag.put("Database DLL", "crdb_dao.dll");
boPropertyBag.put("System Database Path", "");
boPropertyBag.put("Session UserID", "");
boPropertyBag.put("PreQEServerName", fullPathToExcelFile);
boPropertyBag.put("Database Name", fullPathToExcelFile);
boPropertyBag.put("Server Name", fullPathToExcelFile);
boPropertyBag.put("JNDIOptionalName", fullPathToExcelFile);
boPropertyBag.put("Trusted_Connection", false);
boPropertyBag.put("Use JDBC", false);
boConnectionInfo.setAttributes(boPropertyBag);
// Set the DB Username and Pwd
boConnectionInfo.setUserName(null);
boConnectionInfo.setPassword("");
boConnectionInfo.setKind(ConnectionInfoKind.SQL);
// [...]

 

Once I have added the datasoruce I add a filed to the report and would like to export as PDF (this works fine).

The current StatckTrace looks like this:

2015-09-14 16:35:54,191 ERROR [MAIN] com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(719):  detected an exception: Error finding JNDI name (E:\SampleSalesData.xls)

        at com.crystaldecisions.reports.queryengine.Connection.t4(SourceFile:3024)

        at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:697)

        at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:707)

        at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)

        at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)

        at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)

        at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1943)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:660)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:166)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:528)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:526)

        at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:524)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:423)

        at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:351)

        at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)

        at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)

        at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)

        at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)

        at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)

        at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)

        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)

        at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)

        at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(SourceFile:223)

        at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:147)

        at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:128)

        at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:111)

        at EXPORT...

 

Any help on how to resolve this Problem is highly appreciated.

 

Thanks,

Open crystal report in JSP using crystal reports 13 (BO XI 4.0)

$
0
0

Hello,

I am trying read old reports 10 reports in J2EE web application without any luck.  Can someone direct me to appropriate documentation or example helping me get this working.

 

I have copied the lib folders (plus external ) all jar files to WEB-INF/lib folder.  I still get the errors in not finding -

com.crystaldecisions.report.web.viewer.*;

com.crystaldecisions.report.web.viewer.CrystalReportViewer

 

 

What am I doing wrong?

 

Thanks,

 

Amarendra


"Can't find resource for bundle java.util.PropertyResourceBundle" error

$
0
0

I just upgraded my webapps to use CR4E SP1. Every time I view a report, I get the following error. What am I missing?

 

[2009-05-08 10:49:56,826] ERROR com.crystaldecisions.reports.common Failed to load the resource 'InternalFormatterException' from the bundle java.util.PropertyResourceBundle@d5f6e9.

java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key InternalFormatterException

     at java.util.ResourceBundle.getObject(ResourceBundle.java:384)

     at java.util.ResourceBundle.getString(ResourceBundle.java:344)

     at com.crystaldecisions.reports.common.CrystalResources.loadString(Unknown Source)

     at com.crystaldecisions.reports.common.CrystalResources.loadMessage(Unknown Source)

     at com.crystaldecisions.reports.common.CrystalResourcesFactory.getLocalizedMessage(Unknown Source)

     at com.crystaldecisions.reports.common.CrystalException.getLocalizedMessage(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(Unknown Source)

     at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(Unknown Source)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)

     at com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)

     at com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)

     at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)

     at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)

     at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)

     at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)

     at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)

     at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)

     at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)

     at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)

     at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)

     at com.businessobjects.report.web.event.bh.a(Unknown Source)

     at com.businessobjects.report.web.event.o.a(Unknown Source)

     at com.businessobjects.report.web.event.bw.broadcast(Unknown Source)

     at com.businessobjects.report.web.event.am.a(Unknown Source)

     at com.businessobjects.report.web.a.t.if(Unknown Source)

     at com.businessobjects.report.web.e.a(Unknown Source)

     at com.businessobjects.report.web.e.a(Unknown Source)

     at com.businessobjects.report.web.e.a(Unknown Source)

     at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)

     at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)

     at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)

     at org.apache.jsp.reporting.exporter_jsp._jspService(exporter_jsp.java:248)

     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)

     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)

     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)

     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)

     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)

     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)

     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)

     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)

     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)

     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)

     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)

     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)

     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)

     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)

     at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)

     at java.lang.Thread.run(Thread.java:619)

 

JNDI Datasource and connections not closed

$
0
0

hello,

<br/>

i'm printing reports with a JNDI datasource (export to PDF) from JBoss EAP 5.1 with crystal reports runtime: 12.2.210.1215

<br/>

the connections from the report was changed the following way (designed with JDBC) for report and all subreports::

<br/><br/>

<pre>

       IConnectionInfo newCon = new ConnectionInfo();

     newCon.setKind(ConnectionInfoKind.SQL);

     PropertyBag bag = new PropertyBag();

     bag.put("JNDI Datasource Name", dbJNDIName);

     bag.put("Database DLL", "crdb_jdbc.dll"); // required!!!

     newCon.setAttributes(bag);

     clientDoc.getDatabaseController()

          .replaceConnection(oldCon, newCon, null, DBOptions._doNotVerifyDB);

</pre>

<br/>

<br/>

and after printing the report was closed like:<br/>

<pre>

  if (clientDoc != null && clientDoc.isOpen()) {

        clientDoc.close();

  }

</pre>

<br/>

<br/>

If i'm using a:<br/>

<br/>

<pre>

&lt;no-tx-datasource&gt;

        &lt;jndi-name&gt;assekuradeurNOTXDatasource&lt;/jndi-name&gt;

           &lt;connection-url&gt;jdbc:postgresql://....&lt;/connection-url&gt;

           &lt;driver-class&gt;org.postgresql.Driver&lt;/driver-class&gt;

            &lt;user-name&gt;...&lt;/user-name&gt;

           &lt;password&gt;...&lt;/password&gt;

   &lt;/no-tx-datasource&gt;

</pre>

<br/>

it works fine. No exception occurs.<br/>

<br/>

But if i use a:<br/>

<pre>

&lt;xa-datasource&gt;

    &lt;jndi-name&gt;assekuradeurDatasource&lt;/jndi-name&gt;

    &lt;track-connection-by-tx/&gt;

     &lt;xa-datasource-class&gt;org.postgresql.xa.PGXADataSource&lt;/xa-datasource-class&gt;

    &lt;xa-datasource-property name="ServerName"&gt;...&lt;/xa-datasource-property&gt;

    &lt;xa-datasource-property name="PortNumber"&gt;...&lt;/xa-datasource-property&gt;

    &lt;xa-datasource-property name="DatabaseName"&gt;...&lt;/xa-datasource-property&gt;

    &lt;xa-datasource-property name="User"&gt;...&lt;/xa-datasource-property&gt;

    &lt;xa-datasource-property name="Password"&gt;...&lt;/xa-datasource-property&gt;

    &lt;transaction-isolation&gt;TRANSACTION_READ_COMMITTED&lt;/transaction-isolation&gt;

    &lt;min-pool-size&gt;1&lt;/min-pool-size&gt;

    &lt;max-pool-size&gt;200&lt;/max-pool-size&gt;

   &lt;/xa-datasource&gt;

</pre><br/>

<br/>

i got the following exception after printing (printed document was ok):<br/>

<br/>

<pre>

2011-02-17 11:30:57,673 INFO  [org.jboss.resource.connectionmanager.CachedConnectionManager] (http-0.0.0.0-8080-1) Closing a connection for you.  Please close them yourself: org.jboss.resource.adapter.jdbc.jdk6.WrappedConnectionJDK6@6d0faf

java.lang.Throwable: STACKTRACE

     at org.jboss.resource.connectionmanager.CachedConnectionManager.registerConnection(CachedConnectionManager.java:278)

     at org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:524)

     at org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.java:941)

     at org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:89)

     at com.crystaldecisions.reports.queryengine.driverImpl.jdbc.JDBCConnection.Open(Unknown Source)

     at com.crystaldecisions.reports.queryengine.JDBConnectionWrapper.Open(SourceFile:123)

     at com.crystaldecisions.reports.queryengine.Connection.br(SourceFile:1771)

     at com.crystaldecisions.reports.queryengine.Connection.bs(SourceFile:491)

     at com.crystaldecisions.reports.queryengine.Connection.t1(SourceFile:2978)

     at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.a(SourceFile:696)

     at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.for(SourceFile:706)

     at com.crystaldecisions.reports.reportdefinition.ReportHelper.a(SourceFile:198)

     at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.long(SourceFile:957)

     at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.a(SourceFile:635)

     at com.businessobjects.reports.sdk.requesthandler.ReportViewingRequestHandler.int(SourceFile:672)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1944)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)

     at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)

     at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)

     at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)

     at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)

     at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)

     at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)

     at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)

     at com.crystaldecisions.sdk.occa.report.application.ds.a(SourceFile:186)

     at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:1558)

     at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(SourceFile:337)

     at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(SourceFile:223)

     at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:147)

     at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:128)

     at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(SourceFile:111)

     at org.sis.assekuradeur.utils.JRCHelper.print(JRCHelper.java:94)

...

 

2011-02-17 11:30:57,675 INFO  [org.jboss.resource.connectionmanager.TxConnectionManager] (http-0.0.0.0-8080-1) throwable from unregister connection

java.lang.IllegalStateException: Trying to return an unknown connection2! org.jboss.resource.adapter.jdbc.jdk6.WrappedConnectionJDK6@6d0faf

     at org.jboss.resource.connectionmanager.CachedConnectionManager.unregisterConnection(CachedConnectionManager.java:330)

     at org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener.connectionClosed(TxConnectionManager.java:797)

     at org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection.closeHandle(BaseWrapperManagedConnection.java:363)

     at org.jboss.resource.adapter.jdbc.WrappedConnection.close(WrappedConnection.java:156)

     at sun.reflect.GeneratedMethodAccessor374.invoke(Unknown Source)

     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

     at java.lang.reflect.Method.invoke(Method.java:597)

     at org.jboss.resource.connectionmanager.CachedConnectionManager.closeConnection(CachedConnectionManager.java:523)

     at org.jboss.resource.connectionmanager.CachedConnectionManager.access$000(CachedConnectionManager.java:63)

     at org.jboss.resource.connectionmanager.CachedConnectionManager$CloseConnectionSynchronization.afterCompletion(CachedConnectionManager.java:603)

     at org.jboss.resource.connectionmanager.TransactionSynchronizer.invokeAfter(TransactionSynchronizer.java:301)

     at org.jboss.resource.connectionmanager.TransactionSynchronizer.afterCompletion(TransactionSynchronizer.java:271)

     at com.arjuna.ats.internal.jta.resources.arjunacore.SynchronizationImple.afterCompletion(SynchronizationImple.java:123)

     at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.afterCompletion(TwoPhaseCoordinator.java:381)

     at com.arjuna.ats.arjuna.coordinator.TwoPhaseCoordinator.end(TwoPhaseCoordinator.java:99)

     at com.arjuna.ats.arjuna.AtomicAction.commit(AtomicAction.java:160)

     at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.commitAndDisassociate(TransactionImple.java:1431)

     at com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction.commit(BaseTransaction.java:137)

     at com.arjuna.ats.jbossatx.BaseTransactionManagerDelegate.commit(BaseTransactionManagerDelegate.java:75)

     at org.jboss.aspects.tx.TxPolicy.endTransaction(TxPolicy.java:170)

     at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:87)

...

</pre>

 

Edited by: M.Schulz on Feb 17, 2011 11:50 AM

crystal report of label size is not printing correctly

$
0
0

Hi,

 

 

we have interated  crystal report CR4E version with our application and facing 2 issue when i am generating crystal reports from application.

 

 

we are  having a crystal report designed for label size. 

 

 

1.

 

While generate the report from application with output as a pdf browser and print to label printer (DYMO Label Writer 400) all the records(for example:7) are getting printed in a single label .

 

when the same report is generated from crystal report software and print to label printer (DYMO prinetr 400) all the records (For example:7 records) it is printing  each record per page (for example :7 pages).

 

 

 

 

2.

 

When i am generating crystal report of label size from my application and  getting the binary data . When  i am sending this binary data to a label printer(DYMO Label writer 400) i am getting an exception "printer's imageable width is too small".

 

 

 

i am using CR4E crystal report version and java 1.5 verison.The paper size of the label printer (DYMO label Writer 400)" 30252 Address"

 

 

 

can any one please help me on this issues.

 

 

Advacne thanks

 

Rajesh

Howto deactivate PerformanceMonitor

$
0
0

Hello,

 

we are developing an eclipse RCP-Application with crystal to show some reports. We have analysed the memory usage of the application and found a nasty issue. After opening und closing some reports we found an instance of the class com.businessobjects.performancemonitoring.PerformanceMonitorholding objects with a total size of 200MB (e.g. ReportDocuments).

How can we disable the performance monitor? And if thats not possible what can we do to free the memory?

PerformanceMonitor.png

Best regards,

Guido

Exporting Report to PDF - Report Application Server 2013

$
0
0

I am trying to export a report to PDF format by using the following code:

 

ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) clientDoc.getPrintOutputController().export(ReportExportFormat.PDF);

 

This code works when using the XI version of the Report Application Version. However, I am recently upgrading to 2013 and when trying to export I am getting a java.lang.ClassCastException

 

I tried to search for the API Reference and Developer Guide for the 2013 version, however I couldn't find it. The most recent version that I could find is the 2011 version.

 

Could you please guide me with a sample of how an export is done and do you have any links for the API Reference and Developer Guide for the 2013 version?

Viewing all 893 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>