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
|
2
|
3
(1) |
4
(1) |
5
|
6
(1) |
7
|
|
8
(1) |
9
(1) |
10
|
11
(3) |
12
|
13
(3) |
14
(1) |
|
15
|
16
|
17
(1) |
18
(1) |
19
(2) |
20
|
21
|
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
29
(2) |
30
(1) |
31
(2) |
|
|
|
|
|
From: <php...@li...> - 2006-01-13 18:56:46
|
Hi Curtis, > I don't want to use an app server as this is just a utility > application. well, at least on unix the bridge runs more than 2-3 times faster when it is deployed into a application server or servlet engine. The reason is that the bridge uses the servlet for activation only and then switches to a pipe communication channel which is 1.5 times faster than fastest unix domain socket implementation and more than two times faster than local tcp sockets backed by shared memory. > java.class.path = c:\php5\ext\php_java.jar > java.java_library = C:\jdk1.4.2\jre\bin\server\jvm.dll > java.java_library.path = C:\php5\ext These settings might confuse the bridge, please remove them. > like this: javaw -Djava.library.path=c:\php5\ext Can you please type: java -jar JavaBridge.jar INET_LOCAL:9267 5 Bridge.log (please avoid backslashes, they have a different meaning in java) and check if your php_java.dll is indeed the php_java.dll from the PHP/Java Bridge and not its predecessor, the ext/java extension After that php-cgi.exe test.php >result.html should display that the backend is running. > All that happens is winzip opens up with the jar file. This shouldn't happen if you have just installed a jdk which associates .jar with java. -- It's not java's fault that some public domain programs destroy the created java file associations. :) In any case, the following should always work: c: cd \php5 .\php-cgi.exe -n -q -dextension_dir=ext test.php >result.html The result.html should display "java running" and the java command used to start the backend. You can cut and paste the complete command to a command shell, please do not convert slashes into backslashes. If this doesn't work for some reason, please open a bug report, please use: http://sourceforge.net/tracker/?func=add&group_id=117793&atid=679233. We'll then look at this issue asap. Regards, Jost Boekemeier ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de |
|
From: <php...@li...> - 2006-01-13 18:22:49
|
Hi, in version 3.x the java_session() only works when it is the first java statement within your script. This is a technical problem, when the tomcat response is written, it is no longer possible to call request.getSession(). Version 2.0.8 contained code which allocated a new servlet instance in this case. I have created a problem report for this, please see PR1405042 for details (http://sourceforge.net/tracker/index.php?func=detail&aid=1405042&group_id=117793&atid=679233) This problem will be fixed in version 3.0.6. However it is better to aquire a session handle as early as possible. For example the following code is problematic: echo "test"; $session = java_session(); => "Error response header already sent" $s = new java("java.lang.String", ...); $session = java_session(); => null; "Tomcat response headers already sent" Regards, Jost Boekemeier ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de |
|
From: <php...@li...> - 2006-01-13 15:42:45
|
I'm having issues getting the bridge to start with php 5.0.4 without running the bridge from the command line like this: javaw -Djava.library.path=c:\php5\ext -Djava.class.path=c:\php5\ext\JavaBridge.jar -Djava.awt.headless=true php.java.bridge.JavaBridge INET_LOCAL:9267 3 "" I don't want to use an app server as this is just a utility application. Here are my settings and versions Apache 2.0 PHP-Java Bridge version: 3.0.5 OS: Windows 2K workstation PHP INI settings extension=php_java.dll [java] java.log_level=3 java.socketname=9267 java.class.path = c:\php5\ext\php_java.jar java.java_home = C:\jdk1.4.2; java.java_library = C:\jdk1.4.2\jre\bin\server\jvm.dll java.java_library.path = C:\php5\ext PHP Info java support Enabled java bridge 3.0.5 java.java_home C:/jdk1.4.2 java.java javaw java.wrapper no value (use default wrapper) java.log_file <stdout> java.log_level 3 java.ext_java_compatibility Off java command javaw -Djava.library.path=c:/php5/ext -Djava.class.path=c:/php5/ext/JavaBridge.jar -Djava.awt.headless=true php.java.bridge.JavaBridge INET_LOCAL:9267 3 "" java status not running java server localhost Any suggestions? I don't know what to do about the java status as "not running". The following instructions from the install.windows file make no sense on a windows machine with winzip loaded: Double-click on c:\php5\JavaBridge.jar. Or deploy JavaBridge.war (from the J2EE download) into your servlet engine or java application server and re-start it. All that happens is winzip opens up with the jar file. I don't know what point the author is trying to get across, but it ain't gonna happen on winders! It says that if the above succeeded... But what if it doesn't? Thanks, I'm a little frustrated trying to get this running because I want to integrate the saxon xslt engine so i can get xslt 2.0 functionality (anybody making an extension?) and get on with my REAL development. I'll go ahead and start developing as it stands now, but I'd like to see the bridge run when apache starts. Your time is much appreciated. Curtis Fisher |