You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
(8) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(19) |
Feb
(15) |
Mar
(10) |
Apr
(8) |
May
(7) |
Jun
(9) |
Jul
(13) |
Aug
(31) |
Sep
(111) |
Oct
(52) |
Nov
(72) |
Dec
(42) |
| 2006 |
Jan
(21) |
Feb
(32) |
Mar
(33) |
Apr
(24) |
May
(15) |
Jun
(40) |
Jul
(32) |
Aug
(19) |
Sep
(38) |
Oct
(37) |
Nov
(63) |
Dec
(37) |
| 2007 |
Jan
(18) |
Feb
(39) |
Mar
(69) |
Apr
(49) |
May
(71) |
Jun
(59) |
Jul
(71) |
Aug
(85) |
Sep
(46) |
Oct
(14) |
Nov
(25) |
Dec
(56) |
| 2008 |
Jan
(24) |
Feb
(77) |
Mar
(104) |
Apr
(44) |
May
(41) |
Jun
(11) |
Jul
(31) |
Aug
(59) |
Sep
(44) |
Oct
(86) |
Nov
(66) |
Dec
(93) |
| 2009 |
Jan
(88) |
Feb
(41) |
Mar
(49) |
Apr
(135) |
May
(22) |
Jun
(31) |
Jul
(60) |
Aug
(71) |
Sep
(76) |
Oct
(18) |
Nov
(52) |
Dec
(20) |
| 2010 |
Jan
(8) |
Feb
(50) |
Mar
(35) |
Apr
(48) |
May
(46) |
Jun
(84) |
Jul
(38) |
Aug
(61) |
Sep
(51) |
Oct
(31) |
Nov
(17) |
Dec
(18) |
| 2011 |
Jan
(51) |
Feb
(14) |
Mar
(17) |
Apr
(23) |
May
(15) |
Jun
(11) |
Jul
(5) |
Aug
(5) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(25) |
| 2012 |
Jan
(2) |
Feb
(4) |
Mar
(6) |
Apr
(9) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(10) |
Sep
(16) |
Oct
(3) |
Nov
(13) |
Dec
(7) |
| 2013 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(2) |
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
(9) |
Jul
(5) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
(6) |
Feb
|
Mar
|
Apr
(10) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
| 2018 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
(1) |
2
(3) |
3
|
4
|
5
(2) |
6
(7) |
7
|
|
8
|
9
(1) |
10
|
11
|
12
|
13
(1) |
14
(2) |
|
15
(1) |
16
|
17
|
18
(12) |
19
(4) |
20
|
21
|
|
22
|
23
(2) |
24
|
25
(4) |
26
(3) |
27
(3) |
28
|
|
29
(1) |
30
(5) |
|
|
|
|
|
|
From: <php...@li...> - 2009-11-05 20:08:24
|
Hi,
yes, I saw it.
The PHP/Java Bridge development process took more than 6 years.
During this time some things changed; the new PHP/Zend object system became
stable, eliminating the need for a dedicated java.so/php_java.dll and global
java.ini file (or a php.ini file with java declarations in it).
The proposed PHP namespace separator has changed, too. Instead of
new org_poi_something(...)
PHP 5.3 wants you to use a backslash instead:
java_autoload("poi.jar");
new org\poi\something(...);
The underscore syntax has been removed in bridge version 5.5.4. --
Publishing poi and lucene examples using the underscore syntax and then
silently removing it was certainly a mistake. I will revert this change.
Your code with the underscore will work again in version 5.5.4.1.
The third problem I see is that PHP developers don't understand Java's
immature library handling. We have tried to solve this problem by
introducing special java_require($libs) and java_autoload($libs) procedures.
But these special procedures cannot fix Java's fundamental flaw, so we have
removed them from the documentation and recommend Tomcat or some JEE
container instead (so that the PermGenSpace and NoClassDefFound errors go to
the JEE container developers, not to us).
To avoid the mentioned issues, please deploy JavaBridge.war or
JavaBridgeTemplate.war to a JEE server or servlet engine, remove all legacy
java.so/php_java.dll and php.ini, and then require() Java.inc directly from
the back end.
> I do have JavaBridge running. However, somehow
> Drupal doesn't seem to recognize that it exists.
Well, the communication goes through the HTTP URL connection you have used
to fetch the Java.inc. If your script uses
<?php
require("http://localhost:8080/JavaBridge/java/Java.inc");
...
all further communication uses the back end at
localhost:8080/JavaBridge.
It's really that simple. Just get rid of the old php.ini cruft. :)
Regards,
Jost Boekemeier
On 5 Nov 2009 19:45, <php...@li...> wrote:
Hello,
I've having some trouble with Drupal recognizing my php-java bridge. My
goal is to install sheetnode w/ XLS import/export, and I've followed the
instructions detailed here:
http://drupal.org/project/sheetnode
I'm using Java JRE6:
$ java -version
java version "1.6.0_16"
Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
Java HotSpot(TM) Server VM (build 14.2-b01, mixed mode)
And using php version 5.2.6
I've installed the php/java bridge using the instructions detailed here:
http://php-java-bridge.sourceforge.net/pjb/installation.php
I've installed Tomcat (version 5.5.27), and moved the war file into my
webapps directory. I'm using virtualhosts, so I have a symlink from the
virtual host's root to the JavaBridge webapp directory. I can run the
examples on the page just fine, so it looks like the PHP/Java bridge works.
It just seems that Drupal for some reason cannot recognize it.
In Drupal, when I try to install the php/java bridge module I get this error
message:
(Currently using PHP/Java Bridge extension PHP/Java Bridge extension is NOT
loaded in php.ini. Please install it.)
This seems to indicate that I need to install some kind of php extension,
like "java.so", but such a file is not included in the PHP/JavaBridge
download. In fact the FAQs here
http://php-java-bridge.sourceforge.net/pjb/FAQ.html say:
> How do I enable the Java extension in my php.ini file?
>
> A Java extension does not exist, so you can't enable it.
>
> The VM Bridge is a network protocol, it requires a running Java VM, for
> example the servlet container Apache/Tomcat. Or, if you want to call PHP
> libraries from Java, a running PHP container, e.g. Apache or IIS.
>
So there's no extension, I just have to be running a Java Virtual Machine.
As mentioned before, I am running Tomcat, and do have JavaBridge running.
However, somehow Drupal doesn't seem to recognize that it exists.
Wondering where to go from here. Please send me any recommendations.
Thanks
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus
on
what you do best, core application coding. Discover what's new with
Crystal Reports now. http://p.sf.net/sfu/bobj-july
_______________________________________________
php-java-bridge-users mailing list
php...@li...
https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
|
|
From: <php...@li...> - 2009-11-05 18:44:07
|
Hello, I've having some trouble with Drupal recognizing my php-java bridge. My goal is to install sheetnode w/ XLS import/export, and I've followed the instructions detailed here: http://drupal.org/project/sheetnode I'm using Java JRE6: $ java -version java version "1.6.0_16" Java(TM) SE Runtime Environment (build 1.6.0_16-b01) Java HotSpot(TM) Server VM (build 14.2-b01, mixed mode) And using php version 5.2.6 I've installed the php/java bridge using the instructions detailed here: http://php-java-bridge.sourceforge.net/pjb/installation.php I've installed Tomcat (version 5.5.27), and moved the war file into my webapps directory. I'm using virtualhosts, so I have a symlink from the virtual host's root to the JavaBridge webapp directory. I can run the examples on the page just fine, so it looks like the PHP/Java bridge works. It just seems that Drupal for some reason cannot recognize it. In Drupal, when I try to install the php/java bridge module I get this error message: (Currently using PHP/Java Bridge extension PHP/Java Bridge extension is NOT loaded in php.ini. Please install it.) This seems to indicate that I need to install some kind of php extension, like "java.so", but such a file is not included in the PHP/JavaBridge download. In fact the FAQs here http://php-java-bridge.sourceforge.net/pjb/FAQ.html say: > How do I enable the Java extension in my php.ini file? > > A Java extension does not exist, so you can't enable it. > > The VM Bridge is a network protocol, it requires a running Java VM, for > example the servlet container Apache/Tomcat. Or, if you want to call PHP > libraries from Java, a running PHP container, e.g. Apache or IIS. > So there's no extension, I just have to be running a Java Virtual Machine. As mentioned before, I am running Tomcat, and do have JavaBridge running. However, somehow Drupal doesn't seem to recognize that it exists. Wondering where to go from here. Please send me any recommendations. Thanks |