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
|
4
|
5
|
6
(4) |
7
(1) |
8
|
|
9
(2) |
10
(2) |
11
(6) |
12
(6) |
13
(10) |
14
(6) |
15
(2) |
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
|
23
|
24
(2) |
25
|
26
(5) |
27
(1) |
28
(5) |
29
(3) |
|
30
(1) |
31
|
|
|
|
|
|
|
From: <php...@li...> - 2007-12-14 17:54:00
|
Hi,
> I am absolutely new to this. But i need to finish some
> job with it and was wondering if someone could
> help me with a tutorial that can help me learn fast.
just download and extract the php-java-bridge_j2ee.zip file. Then right click on JavaBridge.jar
and select "open with Java ...".
After that you can run PHP scripts with Java code embedded. For example:
php -n -dallow_url_include=On test.php
test.php:
require_once ("http://localhost:8080/JavaBridge/java/Java.inc");
$System = java ("java.lang.System");
echo java_inspect ($System); // display all public methods of java.lang.System
If you want a more convenient environment, use Zend Studio and drag and drop Java.inc into its
project include directory. Zend studio offers auto completion for both, Java and PHP methods.
Regards,
Jost Boekemeier
__________________________________ Ihre erste Baustelle? Wissenswertes für Bastler und Hobby Handwerker. www.yahoo.de/clever
|
|
From: <php...@li...> - 2007-12-14 17:42:38
|
=> http://sourceforge.net/tracker/index.php?func=detail&aid=1850893&group_id=117793&atid=679233 Heute schon einen Blick in die Zukunft von E-Mails wagen? Versuchen Sie´s mit dem neuen Yahoo! Mail. www.yahoo.de/mail |
|
From: <php...@li...> - 2007-12-14 16:51:30
|
Hi Jost: > Can you please open a problem report and attach the output of the = test.php > at the end of the > ticket? I open the ticket but what you mean with test.php output? Cheers Ing. Reynier P=E9rez Mira Universidad de las Ciencias Inform=E1ticas=20 |
|
From: <php...@li...> - 2007-12-14 16:22:08
|
Hi Reynier, > I decide to > compile a DLL for Win32 I thought that it is clear that no dll is needed. And, if such a dll exists, we will not support it. The whole communication is based on this misunderstanding. I think we should take this off the list. Can you please open a problem report and attach the output of the test.php at the end of the ticket? Please use http://sourceforge.net/tracker/?func=add&group_id=117793&atid=679233. We'll look at this ASAP. Regards, Jost Boekemeier Jetzt Mails schnell in einem Vorschaufenster überfliegen. Dies und viel mehr bietet das neue Yahoo! Mail - www.yahoo.de/mail |
|
From: <php...@li...> - 2007-12-14 16:02:40
|
Hi Jost:
It's me again. Because I doesn't find any solution after do the same =
again and again I decide to compile a DLL for Win32 and PHP 5.2.5. =
Following the instructions in the README file I do this:
BRIDGE_VERSION=3D"'cat ./VERSION'"
PHP_JAVA=3D""
COND_GCJ=3D0
EXTENSION_NAME=3DJAVA
PHP_JAVA_BIN=3D"javaw"
EXTENSION_DIR=3D"D:/Server/PHP/ext" -> Here is where my .dll reside
PHP=3D"D:/Server/PHP" -> Here is my PHP=20
=20
SYS_INCLUDE=3D"C:/MinGW/include" -> Here ir where MinGW was installed
GCC=3Dgcc
for i in init_cfg.c init_cfg.h; do=20
sed "s*@PHP_JAVA@*${PHP_JAVA}*
s*@COND_GCJ@*${COND_GCJ}*
s*@PHP_JAVA_BIN@*${PHP_JAVA_BIN}*
s*@EXTENSION@*${EXTENSION_NAME}*
s*@BRIDGE_VERSION@*${BRIDGE_VERSION}*" \
<./${i}.in >./${i}
done
$GCC -w -I$SYS_INCLUDE -I. -I$PHP -I$PHP/main -I$PHP/Zend -I$PHP/TSRM =
-D"TSRM_EXPORTS" -D"LIBZEND_EXPORTS" -D"ZTS" -D"_MBCS" -DCOMPILE_DL_JAVA =
-DCFG_JAVA_SOCKET_INET -DEXTENSION_DIR=3D\"$EXTENSION_DIR\" -c *.c
i386-pc-mingw32-dllwrap --export-all-symbols -k *.o -L$PHP -lphp5ts =
-lws2_32 -o php_java.dll
Then this generate errors, see below:
Error:
$ for i in C:/init_cfg.c C:/init_cfg.h; do=20
> sed "s*@PHP_JAVA@*${PHP_JAVA}*
> s*@COND_GCJ@*${COND_GCJ}*
> s*@PHP_JAVA_BIN@*${PHP_JAVA_BIN}*
> s*@EXTENSION@*${EXTENSION_NAME}*
> s*@BRIDGE_VERSION@*${BRIDGE_VERSION}*" \
> <./${i}.in >./${i}
> done
sh: ./init_cfg.c.in: No such file or directory
sh: ./init_cfg.h.in: No such file or directory
$ $GCC -w -I$SYS_INCLUDE -I. -I$PHP -I$PHP/main -I$PHP/Zend -I$PHP/TSRM =
-D"TSRM_EXPORTS" -D"LIBZEND_EXPORTS" -D"ZTS" -D"_MBC
S" -DCOMPILE_DL_JAVA -DCFG_JAVA_SOCKET_INET =
-DEXTENSION_DIR=3D\"$EXTENSION_DIR\" -c *.c
gcc.exe: *.c: Invalid argument
gcc.exe: no input files
$ i386-pc-mingw32-dllwrap --export-all-symbols -k *.o -L$PHP -lphp5ts =
-lws2_32 -o php_java.dll
sh: i386-pc-mingw32-dllwrap: command not found
What I'm doing wrong?
Cheers and thanks again
Ing. Reynier P=E9rez Mira
Universidad de las Ciencias Inform=E1ticas=20
> -----Mensaje original-----
> De: php...@li... =
[mailto:php-java-
> bri...@li...] En nombre de =
php-java-bridge-
> us...@li...
> Enviado el: jueves, 13 de diciembre de 2007 04:14 pm
> Para: php...@li...
> Asunto: Re: [Php-java-bridge-users] Why ...
>=20
> Hi
>=20
> > Jost, when I do this and following every step in the Installation =
Guide
> if I do a phpinfo() I
>=20
> hrm, there is no Java related information in pages generated by =
phpinfo().
>=20
>=20
> > the Apache Logs i have the same error every time I restart Apache. =
So
> ... what can I do for
>=20
> Just remove it. Again, please see our FAQ section "error in the =
Apache..."
> for details.
>=20
>=20
> Regards,
> Jost Boekemeier
>=20
>=20
>=20
> __________________________________ Ihre erste Baustelle?
> Wissenswertes f=FCr Bastler und Hobby Handwerker. www.yahoo.de/clever
>=20
> =
-------------------------------------------------------------------------=
> SF.Net email is sponsored by:
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services
> for just about anything Open Source.
> =
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketpl=
a
> ce
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
|
|
From: <php...@li...> - 2007-12-14 13:41:48
|
Hi Jost: I have some doubts about Win32 installation. I do a intensive searching = on PHP/Java Bridge WebSite and I can't find a manual for install the = bridge. Also I find in Google too and I found this in Spanish[1]. Can = you give me a address for read? Exists any Spanish community? [1] = http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=3DPuente= PHPJava#4._Configuraci%F3n Ing. Reynier P=E9rez Mira Universidad de las Ciencias Inform=E1ticas=20 > -----Mensaje original----- > De: php...@li... = [mailto:php-java- > bri...@li...] En nombre de = php-java-bridge- > us...@li... > Enviado el: jueves, 13 de diciembre de 2007 04:14 pm > Para: php...@li... > Asunto: Re: [Php-java-bridge-users] Why ... >=20 > Hi >=20 > > Jost, when I do this and following every step in the Installation = Guide > if I do a phpinfo() I >=20 > hrm, there is no Java related information in pages generated by = phpinfo(). >=20 >=20 > > the Apache Logs i have the same error every time I restart Apache. = So > ... what can I do for >=20 > Just remove it. Again, please see our FAQ section "error in the = Apache..." > for details. >=20 >=20 > Regards, > Jost Boekemeier >=20 >=20 >=20 > __________________________________ Ihre erste Baustelle? > Wissenswertes f=FCr Bastler und Hobby Handwerker. www.yahoo.de/clever >=20 > = -------------------------------------------------------------------------= > SF.Net email is sponsored by: > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services > for just about anything Open Source. > = http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketpl= a > ce > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |