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
(2) |
4
(17) |
5
(5) |
6
(7) |
7
(11) |
8
(11) |
|
9
(3) |
10
(3) |
11
(9) |
12
(6) |
13
(11) |
14
(3) |
15
(2) |
|
16
(1) |
17
(4) |
18
|
19
|
20
(2) |
21
(2) |
22
(3) |
|
23
|
24
|
25
|
26
|
27
(1) |
28
(1) |
29
|
|
30
|
31
|
|
|
|
|
|
|
From: <php...@li...> - 2008-03-04 22:04:27
|
I was trying to use the jFuzzyLogic toolkit with PHP/Java bridge but I
got some error. The PHP/Java bridge I use is 5.1.0 and the jFuzzyLogic
is 1.2.1. Here's my code:
<?php
if(!extension_loaded("java"))
require_once("JavaBridge/java/Java.inc");
java_require("jFuzzyLogic_1_2_1.jar");
$fis = new Java("net.sourceforge.jFuzzyLogic.FIS");
$fis->load("fcl/tipper.fcl");
if( $fis == null ) {
echo "<p>Can't load file</p>";
}
else {
echo "<p>Load succeed</p>";
}
$fuzzyRuleSet = $fis->getFuzzyRuleSet("tipper");
if( $fuzzyRuleSet == null ) {
echo "<p>Can't get fuzzy rule set</p>";
}
else {
echo "<p>Get fuzzy rule set succeed</p>";
}
$temp = $fuzzyRuleSet->toString();
echo "<p>fuzzy rule set<br />" . $temp . "</p>";
?>
And the output is:
Load succeed
Get fuzzy rule set succeed
Fatal error: Uncaught [[o:Exception]:"java.lang.Exception: Invoke
failed: [[o:Request$PhpNull]]->toString. Cause:
java.lang.NullPointerException: call object is null, check the server
log file(s). VM: 1.5.0@http://www.ibm.com/" at: #-5
php.java.bridge.JavaBridge.Invoke(JavaBridge.java:1016) #-4
php.java.bridge.Request.handleRequest(Request.java:409) #-3
php.java.bridge.Request.handleRequests(Request.java:485) #0
C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc(259):
java_ThrowExceptionProxyFactory->getProxy(4, 'php.java.bridge...',
true) #1 C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc(411):
java_Arg->getResult(true) #2
C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc(417):
java_Client->getWrappedResult(true) #3
C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc(621):
java_Client->getResult() #4
C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc(1749):
java_Client->invokeMeth in
C:\temp\Terry\xampp\htdocs\Thesis_Dexiong_Terry_Zhang\JavaBridge\java\Java.inc
on line 222
According to the documentation, toString() is a legal method in the
FuzzyRuleSet class and the jFuzzyLogic toolkit is tested in java and
works fine. Does anyone know how come I get this error? Any help will
be appreciated. Thanks a lot!!!
Terry
|
|
From: <php...@li...> - 2008-03-04 15:27:50
|
Please see the INSTALL.STANDALONE for details how to invoke methods within a running Java process.
__________________________________ Ihre erste Baustelle? Wissenswertes für Bastler und Hobby Handwerker. www.yahoo.de/clever
|
|
From: <php...@li...> - 2008-03-04 15:26:23
|
You probably have an old JavaBridge.jar in the global classpath. Either in /usr/share/java or /usr/java/default/
Heute schon einen Blick in die Zukunft von E-Mails wagen? www.yahoo.de/mail
|
|
From: <php...@li...> - 2008-03-04 14:36:24
|
> the protocol has been changed from version 4 to version 5: Jost, we do not understand why our JavaBridge is appearing to be 4... we copied the JavaBridge.jar file and we are running it like this: java -Dphp.java.bridge.base=/opt/javabridge -jar /opt/javabridge/JavaBridge.jar SERVLET:8080 6 javabridge_log & On our server (Ubuntu Dapper) it works fine and the log file (javabridge_log) shows VMBridge version : 5.2.0, but on our dev box it shows up as VMBridge version : 4.3.0, even though it is *exactly* the same identical JavaBridge.jar file (extracted from JavaBridge.war /WEB-INF/lib/). We double-checked to make sure it was the same file. Any ideas what we are doing wrong? Thanks! Cheers, Antonio |
|
From: <php...@li...> - 2008-03-04 13:24:35
|
Hi, I'm trying to get my php-java bridge working but without success. Php communicates well with Java but my problem is that i can't access (more precisely, don't know how to access) to a running object. How would I do to get an instance of this object ? To be more clear, an application is lauched with the java command. I want to access to some parameters to show them using Php, while the application is still running, doing some other treatment. Thanks for your precious help Thomas -- # !! brOl_oUilLe --> |
|
From: <php...@li...> - 2008-03-04 12:49:48
|
Hi, > 2. as for tomcat. any idea how would my php(apache) > communicate with java(tomcat) please see the INSTALL.J2EE document for details. IBM has a more detailed description at: http://www.ibm.com/developerworks/aix/library/au-javaphpaix5/ Jetzt Mails schnell in einem Vorschaufenster überfliegen. Dies und viel mehr bietet das neue Yahoo! Mail - www.yahoo.de/mail |
|
From: <php...@li...> - 2008-03-04 12:23:11
|
hi, thanks for the quick reply. 1. i've seen some documents from the internet. there seems to be success running the dll with php+apache. Particulary this version of bridge "php-java-bridge_3.2.1b_j2ee.zip", it seems that this copy is nowhere to be found here. is it possible for me to download the binary version of this ? 2. as for tomcat. any idea how would my php(apache) communicate with java(tomcat) ? would you recommend running php+java/php bridge on a single tomcat? thanks! --- php...@li... wrote: > Hi, > > > i'm interested to run php/java to call ireport, > > on windows you'll need Tomcat or some other servlet > engine as a back end. > > This is necessary because the windows version of gcc > cannot compile the bridge > to native code. > > > > no knowledge on java programming. > > Just click on > > http://ftp.halifax.rwth-aachen.de/apache/tomcat/tomcat-6/v6.0.16/bin/apache-tomcat-6.0.16.exe > > and install tomcat as a windows service. > > Then copy JavaBridge.war to > c:/program files/apache software > foundation/tomcat/webapps/, wait a second until > c:/program files/apache software > foundation/tomcat/webapps/JavaBridge/ appears and > copy > this directory over to your web server document > root. > > > Regards, > Jost Boekemeier > > > > Heute schon einen Blick in die Zukunft von > E-Mails wagen? www.yahoo.de/mail > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio > 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > ____________________________________________________________________________________ Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping |
|
From: <php...@li...> - 2008-03-04 12:09:03
|
Hi,
the protocol has been changed from version 4 to version 5:
case 'V':
if ($st['n']!='T') {
if(JAVA_DEBUG) {echo "setresult VOID:"; echo "\n";}
$arg->setVoidSignature();
}
Since version 5.0.0 the back end sends a flag which indicates that the result should be cached.
Please upgrade both, the back end and the front end.
Regards,
Jost Boekemeier
Lesen Sie Ihre E-Mails jetzt einfach von unterwegs.
www.yahoo.de/go
|
|
From: <php...@li...> - 2008-03-04 12:01:51
|
> Old documentation states that the "java.so" C implementation was 10
> times faster than the "pure PHP" implementation of the PHP/Java
> Bridge.
As of PHP 5.1.4 this is no longer the case.
> Besides the fact that the pure PHP implementation is much easier to
> setup, is there a reason why the C implementation was deprecated,
The bottleneck are the java reflection calls, which is common to all JSR 223 script engines.
PHP 4 is no longer supported, so we were able to remove the old C bindings.
Regards,
Jost Boekemeier
__________________________________ Ihre erste Baustelle? Wissenswertes für Bastler und Hobby Handwerker. www.yahoo.de/clever
|
|
From: <php...@li...> - 2008-03-04 12:00:15
|
We got the PHP/Java Bridge 5.2.0 running fine on two boxes (one WinXP, the other one Ubuntu Dapper) but on the third box we get this php notice: Notice: Undefined index: n in library/java/Java.inc on line 505 The bridge works fine but the notice is a bit annoying. We are using exactly the same code. Any ideas? Thanks! Antonio |
|
From: <php...@li...> - 2008-03-04 11:44:04
|
Just wondering... Old documentation states that the "java.so" C implementation was 10 times faster than the "pure PHP" implementation of the PHP/Java Bridge. Besides the fact that the pure PHP implementation is much easier to setup, is there a reason why the C implementation was deprecated, considering it is 10 times faster? Or is that no longer the case? Cheers, Antonio |
|
From: <php...@li...> - 2008-03-04 11:38:40
|
Hi, > i'm interested to run php/java to call ireport, on windows you'll need Tomcat or some other servlet engine as a back end. This is necessary because the windows version of gcc cannot compile the bridge to native code. > no knowledge on java programming. Just click on http://ftp.halifax.rwth-aachen.de/apache/tomcat/tomcat-6/v6.0.16/bin/apache-tomcat-6.0.16.exe and install tomcat as a windows service. Then copy JavaBridge.war to c:/program files/apache software foundation/tomcat/webapps/, wait a second until c:/program files/apache software foundation/tomcat/webapps/JavaBridge/ appears and copy this directory over to your web server document root. Regards, Jost Boekemeier Heute schon einen Blick in die Zukunft von E-Mails wagen? www.yahoo.de/mail |
|
From: <php...@li...> - 2008-03-04 11:28:31
|
hi,
i'm using
apache
php 5.2
winxp sp2
jdk 1.5.0_05-b05
i'm interested to run php/java to call ireport,i have
no knowledge on java programming. i've downloaded
php-java-bridge_5.2.0_j2ee , but did not find any
java-x86-windows.dll. anyone knows where i can find
this extension so i can put it into my php extension?
i can only find php-4-java-x86-windows.dll which i
believe only runs for php4.
thanks and regards
____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
|
|
From: <php...@li...> - 2008-03-04 11:18:23
|
> > I also tried with: > > $upload_id = (int)$upload_response->getUploadId(); > > $upload_id = (int)(string)$upload_response->getUploadId(); > > should work. Please ask the PHP developers why the extra (string) cast is necessary... It works! Very easy to setup the new JavaBridge. Excellent work, congratulations! Cheers, Antonio |
|
From: <php...@li...> - 2008-03-04 09:48:44
|
Dear Mr. Boekemeier, thanks a lot, I'll look at it... Greetings, Matthias |
|
From: <php...@li...> - 2008-03-04 09:31:35
|
Hi,
> Is a real java object created? And if I use methods of this java object,
> does the bridge send it to the object, make the needed operations and
> send the return value back?
Yes, the bridge uses XML RPC.
> I'm sorry, I have read the "How it works" part more than once, but I'm
> still not sure how it works... :o)
If you set the log level to 4 or above, you should be able to see the XML communication. Please
see the PROTOCOL.TXT for details.
Regards,
Jost Boekemeier
Lesen Sie Ihre E-Mails jetzt einfach von unterwegs.
www.yahoo.de/go
|
|
From: <php...@li...> - 2008-03-04 09:19:08
|
Good Morning together,
I have a general question, what exactly is created if I use that code:
$str = new Java("java.lang.String","Hello");
echo $str;
I use a php environment and like to integrate a java application.
The other examples look like the bridge is reflecting the code to php.
Is a real java object created? And if I use methods of this java object,
does the bridge send it to the object, make the needed operations and
send the return value back?
I'm sorry, I have read the "How it works" part more than once, but I'm
still not sure how it works... :o)
Greetings,
Matthew
|