<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Jasper Reports and PHP</title>
	<atom:link href="http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sun, 05 Feb 2012 00:06:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Dave Jarvis</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-759</link>
		<dc:creator>Dave Jarvis</dc:creator>
		<pubDate>Mon, 11 Apr 2011 18:45:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-759</guid>
		<description>Hey, Richard.

Your PHP instructions partially inspired me to write a technical manual.

http://www.whitemagicsoftware.com/books/indispensable/

I have also published all of the source code (for free) on the site.

Thanks for all the help!</description>
		<content:encoded><![CDATA[<p>Hey, Richard.</p>
<p>Your PHP instructions partially inspired me to write a technical manual.</p>
<p><a href="http://www.whitemagicsoftware.com/books/indispensable/" rel="nofollow">http://www.whitemagicsoftware.com/books/indispensable/</a></p>
<p>I have also published all of the source code (for free) on the site.</p>
<p>Thanks for all the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mathewssunny</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-753</link>
		<dc:creator>mathewssunny</dc:creator>
		<pubDate>Fri, 04 Feb 2011 07:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-753</guid>
		<description>@Arun 
 Thanks for the reply ..


$jasper_abs_path = sfConfig::get(’sf_upload_dir’).”/jasper_reports/”;
$class = new JavaClass(”java.lang.Class”);
$class-&#62;forName(”com.mysql.jdbc.Driver”);
$driverManager = new JavaClass(”java.sql.DriverManager”);
$conn_path = ‘jdbc:mysql://’.$host.’/’.$dbname.’?user=’.$db_user.’&#38;password=’.$db_pass; [^]
$conn = $driverManager-&#62;getConnection($conn_path);
$test_path = $jasper_abs_path.”test.jrxml”;
$compileManager = new JavaClass(”net.sf.jasperreports.engine.JasperCompileManager”);
$report = $compileManager-&#62;compileReport($test_path);
$fillManager = new JavaClass(”net.sf.jasperreports.engine.JasperFillManager”);
$params = new Java(”java.util.HashMap”);
$jasperPrint = $fillManager-&#62;fillReport($report, $params, $conn);

//XLS
$test_xls = $jasper_abs_path.”$test.xls”;
$parameter = new JavaClass(”net.sf.jasperreports.engine.export.JRXlsExporterParameter”);
$exportManager = new JavaClass(”net.sf.jasperreports.engine.export.JRXlsExporter”);
$exportManager-&#62;setParameter($parameter-&#62;JASPER_PRINT, $print);
$exportManager-&#62;setParameter($parameter-&#62;OUTPUT_FILE_NAME, $test_xls);
$exportManager-&#62;setParameter($parameter-&#62;IS_ONE_PAGE_PER_SHEET, false);
$exportManager-&#62;exportReport();

I am getting error for this code ...
//
500 &#124; Internal Server Error &#124; java_InternalException
stack trace

    * at ()
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 195 ...
    * at java_ThrowExceptionProxyFactory-&#62;getProxy(14, 'net.sf.jasperreports.engine.JREmptyDataSource', 'T', 1)
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 232 ...
    * at java_Arg-&#62;getResult(1)
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 360 ...
    * at java_Client-&#62;getWrappedResult(1)
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 366 ...
    * at java_Client-&#62;getResult()
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 560 ...
    * at java_Client-&#62;invokeMethod(13, 'setParameter', array('JASPER_PRINT', object('java_InternalJava')))
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 1752 ...
    * at java_JavaProxy-&#62;__call('setParameter', array('JASPER_PRINT', object('java_InternalJava')))
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 1851 ...
    * at java_AbstractJava-&#62;__call('setParameter', array('JASPER_PRINT', object('java_InternalJava')))
      in http://127.0.0.1:8080/JavaBridge/java/Java.inc line 1999 ...
    * at Java-&#62;__call('setParameter', array('JASPER_PRINT', object('java_InternalJava')))
      in n/a line n/a ...
//

Help Me....

Regards 
Sunny Mathew</description>
		<content:encoded><![CDATA[<p>@Arun<br />
 Thanks for the reply ..</p>
<p>$jasper_abs_path = sfConfig::get(’sf_upload_dir’).”/jasper_reports/”;<br />
$class = new JavaClass(”java.lang.Class”);<br />
$class-&gt;forName(”com.mysql.jdbc.Driver”);<br />
$driverManager = new JavaClass(”java.sql.DriverManager”);<br />
$conn_path = ‘jdbc:mysql://’.$host.’/’.$dbname.’?user=’.$db_user.’&amp;password=’.$db_pass; [^]<br />
$conn = $driverManager-&gt;getConnection($conn_path);<br />
$test_path = $jasper_abs_path.”test.jrxml”;<br />
$compileManager = new JavaClass(”net.sf.jasperreports.engine.JasperCompileManager”);<br />
$report = $compileManager-&gt;compileReport($test_path);<br />
$fillManager = new JavaClass(”net.sf.jasperreports.engine.JasperFillManager”);<br />
$params = new Java(”java.util.HashMap”);<br />
$jasperPrint = $fillManager-&gt;fillReport($report, $params, $conn);</p>
<p>//XLS<br />
$test_xls = $jasper_abs_path.”$test.xls”;<br />
$parameter = new JavaClass(”net.sf.jasperreports.engine.export.JRXlsExporterParameter”);<br />
$exportManager = new JavaClass(”net.sf.jasperreports.engine.export.JRXlsExporter”);<br />
$exportManager-&gt;setParameter($parameter-&gt;JASPER_PRINT, $print);<br />
$exportManager-&gt;setParameter($parameter-&gt;OUTPUT_FILE_NAME, $test_xls);<br />
$exportManager-&gt;setParameter($parameter-&gt;IS_ONE_PAGE_PER_SHEET, false);<br />
$exportManager-&gt;exportReport();</p>
<p>I am getting error for this code &#8230;<br />
//<br />
500 | Internal Server Error | java_InternalException<br />
stack trace</p>
<p>    * at ()<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 195 &#8230;<br />
    * at java_ThrowExceptionProxyFactory-&gt;getProxy(14, &#8216;net.sf.jasperreports.engine.JREmptyDataSource&#8217;, &#8216;T&#8217;, 1)<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 232 &#8230;<br />
    * at java_Arg-&gt;getResult(1)<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 360 &#8230;<br />
    * at java_Client-&gt;getWrappedResult(1)<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 366 &#8230;<br />
    * at java_Client-&gt;getResult()<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 560 &#8230;<br />
    * at java_Client-&gt;invokeMethod(13, &#8217;setParameter&#8217;, array(&#8217;JASPER_PRINT&#8217;, object(&#8217;java_InternalJava&#8217;)))<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 1752 &#8230;<br />
    * at java_JavaProxy-&gt;__call(&#8217;setParameter&#8217;, array(&#8217;JASPER_PRINT&#8217;, object(&#8217;java_InternalJava&#8217;)))<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 1851 &#8230;<br />
    * at java_AbstractJava-&gt;__call(&#8217;setParameter&#8217;, array(&#8217;JASPER_PRINT&#8217;, object(&#8217;java_InternalJava&#8217;)))<br />
      in <a href="http://127.0.0.1:8080/JavaBridge/java/Java.inc" rel="nofollow">http://127.0.0.1:8080/JavaBridge/java/Java.inc</a> line 1999 &#8230;<br />
    * at Java-&gt;__call(&#8217;setParameter&#8217;, array(&#8217;JASPER_PRINT&#8217;, object(&#8217;java_InternalJava&#8217;)))<br />
      in n/a line n/a &#8230;<br />
//</p>
<p>Help Me&#8230;.</p>
<p>Regards<br />
Sunny Mathew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-752</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Fri, 04 Feb 2011 03:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-752</guid>
		<description>@Mathew, you can check this link for the jasperreports api there are functions for XLS,CSV,RTF similar to the PDF export.
http://jasperreports.sourceforge.net/api/index.html?net/sf/jasperreports/engine/export/JRXlsAbstractExporter.html</description>
		<content:encoded><![CDATA[<p>@Mathew, you can check this link for the jasperreports api there are functions for XLS,CSV,RTF similar to the PDF export.<br />
<a href="http://jasperreports.sourceforge.net/api/index.html?net/sf/jasperreports/engine/export/JRXlsAbstractExporter.html" rel="nofollow">http://jasperreports.sourceforge.net/api/index.html?net/sf/jasperreports/engine/export/JRXlsAbstractExporter.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mathewssunny</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-751</link>
		<dc:creator>mathewssunny</dc:creator>
		<pubDate>Thu, 03 Feb 2011 05:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-751</guid>
		<description>Hi Richard,

I had created a project devolped in PHP(Symfony) and mysql with Javabridge and jasper libraries.I did html and Pdf export using following code

    require_once("http://127.0.0.1:8080/JavaBridge/java/Java.inc"); [^]

    $jasper_abs_path = sfConfig::get('sf_upload_dir')."/jasper_reports/";

    $class = new JavaClass("java.lang.Class");
    $class-&#62;forName("com.mysql.jdbc.Driver");
    $driverManager = new JavaClass("java.sql.DriverManager");
    $conn_path = 'jdbc:mysql://'.$host.'/'.$dbname.'?user='.$db_user.'&#38;password='.$db_pass; [^]
    $conn = $driverManager-&#62;getConnection($conn_path);
    $test_path = $jasper_abs_path."test.jrxml";
    $compileManager = new JavaClass("net.sf.jasperreports.engine.JasperCompileManager");
    $report = $compileManager-&#62;compileReport($test_path);
    $fillManager = new JavaClass("net.sf.jasperreports.engine.JasperFillManager");
    $params = new Java("java.util.HashMap");
    $emptyDataSource = new Java("net.sf.jasperreports.engine.JREmptyDataSource");
    $jasperPrint = $fillManager-&#62;fillReport($report, $params, $conn);
    $exportManager = new JavaClass("net.sf.jasperreports.engine.JasperExportManager");


    //Pdf
    $test_pdf = $jasper_abs_path."$test.pdf";
    $exportManager-&#62;exportReportToPdfFile($jasperPrint,$test_pdf);
    //HTML
    $test_html = $jasper_abs_path."test.html";
    $exportManager-&#62;exportReportToHtmlFile($jasperPrint,test.html);


I need the code for XLS,CSV,RTF for the same..

Thanks 
Sunny Mathew</description>
		<content:encoded><![CDATA[<p>Hi Richard,</p>
<p>I had created a project devolped in PHP(Symfony) and mysql with Javabridge and jasper libraries.I did html and Pdf export using following code</p>
<p>    require_once(&#8221;http://127.0.0.1:8080/JavaBridge/java/Java.inc&#8221;); [^]</p>
<p>    $jasper_abs_path = sfConfig::get(&#8217;sf_upload_dir&#8217;).&#8221;/jasper_reports/&#8221;;</p>
<p>    $class = new JavaClass(&#8221;java.lang.Class&#8221;);<br />
    $class-&gt;forName(&#8221;com.mysql.jdbc.Driver&#8221;);<br />
    $driverManager = new JavaClass(&#8221;java.sql.DriverManager&#8221;);<br />
    $conn_path = &#8216;jdbc:mysql://&#8217;.$host.&#8217;/&#8217;.$dbname.&#8217;?user=&#8217;.$db_user.&#8217;&amp;password=&#8217;.$db_pass; [^]<br />
    $conn = $driverManager-&gt;getConnection($conn_path);<br />
    $test_path = $jasper_abs_path.&#8221;test.jrxml&#8221;;<br />
    $compileManager = new JavaClass(&#8221;net.sf.jasperreports.engine.JasperCompileManager&#8221;);<br />
    $report = $compileManager-&gt;compileReport($test_path);<br />
    $fillManager = new JavaClass(&#8221;net.sf.jasperreports.engine.JasperFillManager&#8221;);<br />
    $params = new Java(&#8221;java.util.HashMap&#8221;);<br />
    $emptyDataSource = new Java(&#8221;net.sf.jasperreports.engine.JREmptyDataSource&#8221;);<br />
    $jasperPrint = $fillManager-&gt;fillReport($report, $params, $conn);<br />
    $exportManager = new JavaClass(&#8221;net.sf.jasperreports.engine.JasperExportManager&#8221;);</p>
<p>    //Pdf<br />
    $test_pdf = $jasper_abs_path.&#8221;$test.pdf&#8221;;<br />
    $exportManager-&gt;exportReportToPdfFile($jasperPrint,$test_pdf);<br />
    //HTML<br />
    $test_html = $jasper_abs_path.&#8221;test.html&#8221;;<br />
    $exportManager-&gt;exportReportToHtmlFile($jasperPrint,test.html);</p>
<p>I need the code for XLS,CSV,RTF for the same..</p>
<p>Thanks<br />
Sunny Mathew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-750</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Wed, 02 Feb 2011 05:20:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-750</guid>
		<description>Can anyone send me the compiled jar file of the ReportGenerator.java....as i am a newbie to java am not able to compile it.</description>
		<content:encoded><![CDATA[<p>Can anyone send me the compiled jar file of the ReportGenerator.java&#8230;.as i am a newbie to java am not able to compile it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kanwar Singh</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-737</link>
		<dc:creator>Kanwar Singh</dc:creator>
		<pubDate>Mon, 06 Dec 2010 10:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-737</guid>
		<description>Hi,

I am getting this error message please help:

java stack trace: java.lang.Exception: CreateInstance failed: new JdbcConnection. Cause: java.lang.ClassNotFoundException: JdbcConnection VM: 1.6.0_17@http://java.sun.com/ at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1374) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1220) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at php.java.bridge.Util.classForName(Util.java:1518) at php.java.bridge.JavaBridge.CreateObject(JavaBridge.java:445) at php.java.bridge.Request.handleRequest(Request.java:458) at php.java.bridge.Request.handleRequests(Request.java:500) at php.java.bridge.http.ContextRunner.run(ContextRunner.java:145) at php.java.bridge.ThreadPool$Delegate.run(ThreadPool.java:60) Caused by: java.lang.ClassNotFoundException: JdbcConnection ...</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am getting this error message please help:</p>
<p>java stack trace: java.lang.Exception: CreateInstance failed: new JdbcConnection. Cause: java.lang.ClassNotFoundException: JdbcConnection VM: 1.6.0_17@http://java.sun.com/ at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1374) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1220) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at php.java.bridge.Util.classForName(Util.java:1518) at php.java.bridge.JavaBridge.CreateObject(JavaBridge.java:445) at php.java.bridge.Request.handleRequest(Request.java:458) at php.java.bridge.Request.handleRequests(Request.java:500) at php.java.bridge.http.ContextRunner.run(ContextRunner.java:145) at php.java.bridge.ThreadPool$Delegate.run(ThreadPool.java:60) Caused by: java.lang.ClassNotFoundException: JdbcConnection &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shashank</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-736</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Mon, 06 Dec 2010 10:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-736</guid>
		<description>@richard : good tutorial it really helped me.

@adedekene : I don't know much but i think the value for classpath i.e.java.class.path should be same as that of CLASSPATH defined for java at the time of installation.</description>
		<content:encoded><![CDATA[<p>@richard : good tutorial it really helped me.</p>
<p>@adedekene : I don&#8217;t know much but i think the value for classpath i.e.java.class.path should be same as that of CLASSPATH defined for java at the time of installation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adedekene</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-727</link>
		<dc:creator>adedekene</dc:creator>
		<pubDate>Wed, 27 Oct 2010 13:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-727</guid>
		<description>Hello,

I'm using PHP 5.3.0 and Apache 2.2.11 with WAMPServer.
I have downloaded the JavaBridge.jar and put it in
the directory of php's extension. And I change also the php.ini, I add in "Module Settings" :

[java]
java.java_home = "c:\Program Files\Java\jdk1.5.0_10\bin"
java.java = "c:\Program Files\Java\jdk1.5.0_10\bin\javaw.exe"
java.class.path = "C:\wamp\bin\php\php5.3.0\ext\JavaBridge.jar"
java.library.path = "C:\wamp\bin\php\php5.3.0\ext"
;java.hosts = "127.0.0.1:8080"
;java.servlet = On
java.log_level = 2

I restarted the services. But the problem is that when I try to execute Java's code in PHP

ex:$system = new Java('java.lang.System');

The class Java is not found</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;m using PHP 5.3.0 and Apache 2.2.11 with WAMPServer.<br />
I have downloaded the JavaBridge.jar and put it in<br />
the directory of php&#8217;s extension. And I change also the php.ini, I add in &#8220;Module Settings&#8221; :</p>
<p>[java]<br />
java.java_home = &#8220;c:\Program Files\Java\jdk1.5.0_10\bin&#8221;<br />
java.java = &#8220;c:\Program Files\Java\jdk1.5.0_10\bin\javaw.exe&#8221;<br />
java.class.path = &#8220;C:\wamp\bin\php\php5.3.0\ext\JavaBridge.jar&#8221;<br />
java.library.path = &#8220;C:\wamp\bin\php\php5.3.0\ext&#8221;<br />
;java.hosts = &#8220;127.0.0.1:8080&#8243;<br />
;java.servlet = On<br />
java.log_level = 2</p>
<p>I restarted the services. But the problem is that when I try to execute Java&#8217;s code in PHP</p>
<p>ex:$system = new Java(&#8217;java.lang.System&#8217;);</p>
<p>The class Java is not found</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Integrar JasperReports en PHP &#171; avanttic blog</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-721</link>
		<dc:creator>Integrar JasperReports en PHP &#171; avanttic blog</dc:creator>
		<pubDate>Mon, 18 Oct 2010 13:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-721</guid>
		<description>[...] http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/" rel="nofollow">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-716</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Fri, 01 Oct 2010 19:29:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.rjohnson.id.au/wordpress/2007/02/04/jasper-reports-and-php/#comment-716</guid>
		<description>@Merrill

I had the exact same problem as yours and it was really hard to find a solution. I took me three days of extensive search to find a clue.

I'm not really sure the following steps are correct but I got my scripts working perfectly after doing them.

First, go to your IReport install dir, search its folder and subfolder recursively for *.jar.
After locating them all, select them, CTRL+C, go to your tomcat WEB-INF/ext dir and paste them there. 
Then, go to your program files/java dir and copy those same files into your jre/ext dir.

Restart tomcat and you're set!

Also, notice I didn't install the JasperServer at all, just IReport, and I'm using the PHP/JavaBridge .war file. Just copy the JavaBridge.war file into your tomcat/webapps dir and restart tomcat.

Regards,

Bruno</description>
		<content:encoded><![CDATA[<p>@Merrill</p>
<p>I had the exact same problem as yours and it was really hard to find a solution. I took me three days of extensive search to find a clue.</p>
<p>I&#8217;m not really sure the following steps are correct but I got my scripts working perfectly after doing them.</p>
<p>First, go to your IReport install dir, search its folder and subfolder recursively for *.jar.<br />
After locating them all, select them, CTRL+C, go to your tomcat WEB-INF/ext dir and paste them there.<br />
Then, go to your program files/java dir and copy those same files into your jre/ext dir.</p>
<p>Restart tomcat and you&#8217;re set!</p>
<p>Also, notice I didn&#8217;t install the JasperServer at all, just IReport, and I&#8217;m using the PHP/JavaBridge .war file. Just copy the JavaBridge.war file into your tomcat/webapps dir and restart tomcat.</p>
<p>Regards,</p>
<p>Bruno</p>
]]></content:encoded>
	</item>
</channel>
</rss>

