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
(4) |
2
|
3
|
4
|
5
|
6
|
7
|
8
(2) |
9
|
10
(1) |
11
|
12
|
13
(3) |
14
(2) |
15
|
16
(1) |
17
(2) |
18
(5) |
19
(6) |
20
(6) |
21
(10) |
22
(4) |
23
|
24
|
25
|
26
(7) |
27
(6) |
28
(3) |
29
(5) |
30
(2) |
31
|
From: <php...@li...> - 2007-03-26 21:43:34
|
Check the Apache error_log to see if you got any exception or error loading the jar. You're positive that the url http://localhost/~nico/QRCodeVerif.jar works, right? Regards, Andr=E9s Gattinoni On 3/26/07, php...@li... < php...@li...> wrote: > > Hello, > > I've got a problem using the bridge. This little example presents it. The > php file calls a method (QRCodeVerif) which creates a QRCodeDecoder from > the > qrcode.jar. This creation fails although the .jar is in the CLASSPATH > (compilation is ok). > > <?php > java_require('http://localhost/~nico/QRCodeVerif.jar'); > > $url =3D "/home/nico/public_html/upload/123aze.png"; > $name_file =3D "123aze.png"; > > $myObj =3D new Java('QRCodeVerif'); > > $out =3D $myObj->verif($url); > echo $out; > ?> > > The .java : > > import jp.sourceforge.qrcode.codec.QRCodeDecoder; > > public class QRCodeVerif { > > public String verif(String url){ > QRCodeDecoder decoder =3D new QRCodeDecoder(); // Prob= lem > with this line > return url; > } > } > > Can someone resolve this problem ? > > Best regards, > > Nicolas > > _________________________________________________________________ > Personnalisez votre Messenger avec Live.com > http://www.windowslive.fr/livecom/ > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > --=20 Andr=E9s Gattinoni (=AF`=B7._.=B7[El Barto(r)]=B7._.=B7=B4=AF) (...) |
From: <php...@li...> - 2007-03-26 20:15:41
|
Hello, I've got a problem using the bridge. This little example presents it. The php file calls a method (QRCodeVerif) which creates a QRCodeDecoder from the qrcode.jar. This creation fails although the .jar is in the CLASSPATH (compilation is ok). <?php java_require('http://localhost/~nico/QRCodeVerif.jar'); $url = "/home/nico/public_html/upload/123aze.png"; $name_file = "123aze.png"; $myObj = new Java('QRCodeVerif'); $out = $myObj->verif($url); echo $out; ?> The .java : import jp.sourceforge.qrcode.codec.QRCodeDecoder; public class QRCodeVerif { public String verif(String url){ QRCodeDecoder decoder = new QRCodeDecoder(); // Problem with this line return url; } } Can someone resolve this problem ? Best regards, Nicolas _________________________________________________________________ Personnalisez votre Messenger avec Live.com http://www.windowslive.fr/livecom/ |
From: <php...@li...> - 2007-03-26 18:39:24
|
Hello, I just uploaded to the sf.net project files area the new 4.0.6 Debian package, compiled in a pure Debian GNU / Linux 4.0 Etch. You will also find the needed package source files for package rebuilding at your machine (read the release notes), including the source orig.tar.gz file for compiling at other platforms too. Please, test them. Regards. Andre Felipe Machado http://www.techforce.com.br |
From: <php...@li...> - 2007-03-26 18:32:25
|
>> getSystemResource method of the ClassLoader > It should find the resources in the standard Java > repository, which is /usr/share/java/ext or > /usr/java/packages/lib/ext. I tried placing my config files on: /usr/java/packages/lib/ext /usr/share/java-ext/ /usr/share/pear and in the same location as the php file that loads the class. I can't get it to work. The API I'm trying to implement loads these configuration files using ClassLoader.getSystemResource and I need to figure out some way to load them. Thanks again for your helpful advice. Apart from this I'm making big progress with PHP/Java Brigde and it is being very useful. Regards, Andr=E9s Gattinoni |
From: <php...@li...> - 2007-03-26 16:12:16
|
Hi everyone, I'm a php-java-bridge user, in windows environment and the performance penalty is very relevant for our needs and so, i've alocated some time (without priority mind) to build the module into a windows dll. I'm trying (time allow) to "understand" the windows build requirements (not an easy task with all the obscure "Zend" stuff around) for it and build an Ant/Nant file to build it easier. I've had some success in some of the building steps, but it is still a work very much in the process. I know it won't be much, but this is the help i can provide... Cheers, Luis Ferro php...@li... escreveu: > Hello, Jost > It is fundamental to attract and retain more developers to use the repository for development. > Now is time to call for more help on rpm packaging and having a healthy repository is a crucial step. > I can compile and test on Debian, but another people could help on rpm compiling packaging. > > I was talking with other coleague and he still think that 2x performance penalty is a relevant issue. But one fully working implementation is better than many barely working and lagging behind the needs of developers. > How many users has the pure C implementation? > > IMHO, if project offer different implementations, they need to be in sync. > Or drop support for some while other people do not step in and help on compiling and packaging. > The workload is seeming to be increasing too much over you. > The project "bus factor" needs to be improved. > Php-java-bridge is not an "end joe user" application. All users are developers. A skilled RH user may get the rpm compiling and packaging work from now. > But the repository must be in sync with the development, as a development tool, not only as a "documentation tool" for this take off. > As a suggestion, maybe another php-java-bridge-devel could be created. > Any more suggestions? > What can I do to help more? > > Regards. > Andre Felipe Machado > > > > On Sat, 24 Mar 2007 15:56:41 +0100 (CET), Jost Bökemeier wrote: > >> Hi Andre, >> >> what about splitting the pure PHP implementation from the C based >> implementation? >> >> Versions >= 4.0.3 may not compile anymore because I don't have the time >> to check the compile scripts on a variety of operating systems and C >> compilers. >> >> The pure PHP implementation allows us to experiment with certain ideas >> or features very quickly, without having to worry about different >> architectures. >> >> Is it necessary to keep the C based implementation in sync? The RPM >> files for Red Hat are still at 4.0.1 and I don't want to update them until >> a new version of Fedora is available. >> >> >> Regards, >> Jost Boekemeier >> >> > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > |
From: <php...@li...> - 2007-03-26 09:18:30
|
> -----Urspr=FCngliche Nachricht----- > Von: php...@li... > Gesendet: 21.03.07 17:31:30 > An: php...@li... > Betreff: Re: [Php-java-bridge-users] use > Hi, >=20 > > helloworld/Main). -- Unable to call constructor, see > > the README section "Java platform issues" for > > details. > > Am I missing something trivial here=3F >=20 > I think this is explained in the README section "Java > platform issues". >=20 >=20 > > Are there any good tutorials on how to get java code > > called from php and working=3F >=20 > What's wrong with the "loading user libraries" section > from the README=3F :) Thanks, I somehow really missed that part:=20 "Java libraries should ... be installed in one of the following directorie= s: java.ext.dirs or php.java.bridge.base/lib... Libraries in these director= ies are automatically loaded by a static loader whenever the JVM starts." Thanks again for taking the time to even reply to the most trivial questio= ns :-) >=20 >=20 > Regards, > Jost Boekemeier >=20 Best regards, Timo =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F SMS schreiben mit WEB.DE FreeMail - einfach, schnell und kostenguenstig. Jetzt gleich testen! http://f.web.de/=3Fmc=3D021192 |