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
|
|
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
|
|
From: <php...@li...> - 2008-03-03 18:29:24
|
Hi,
[backward incompatibility]
> I just upgraded from PHP/JavaBridge 3.x to 5.x and the following code
> stopped working:
Please see the NEWS entry for 5.0.0:
<strong>This version is no longer backward compatible with earlier versions:</strong>
[1] Note that in PHP versions <= 5.3
class Clazz { function __toString() {return "42"; } }
var_dump((int)(string)new Clazz());
works correctly but
var_dump((int)new Clazz());
does not. This means that if you want to convert an object into
a value, you must convert it into a string first.
> 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...
Regards,
Jost Boekemeier
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...> - 2008-03-03 18:04:54
|
Hi, I just upgraded from PHP/JavaBridge 3.x to 5.x and the following code stopped working: $upload_id = intval($upload_response->getUploadId()); I also tried with: $upload_id = (int)$upload_response->getUploadId(); but that also does not work. It seems intval and (int) no longer working. The following notice appears on the page: Notice: Object of class java_InternalJava could not be converted to int in test.php on line 114 Any ideas? Cheers, Antonio |
|
From: <php...@li...> - 2008-02-29 07:49:34
|
You're my hero :D Thanks a lot! It works ! Christian |
|
From: <php...@li...> - 2008-02-28 18:46:57
|
Hi,
> Feb 25 16:55:57 VMBridge INFO : socket : SERVLET_LOCAL:9676
> Feb 27 16:05:35 VMBridge INFO : socket : INET:9676
shouldn't this be SERVLET:9676 instead?
INET and INET_LOCAL use a different protocol mode, which is selected by the native, GCC compiled
bridge.
If you want to use INET or INET_LOCAL, you must implement java_get_default_channel. Example:
if(!function_exists("java_get_default_channel")) {
function java_get_default_channel() { return 9876; }
require_once("java/Java.inc");
}
Machen Sie Yahoo! zu Ihrer Startseite. Los geht's:
http://de.yahoo.com/set
|
|
From: <php...@li...> - 2008-02-28 17:04:00
|
Hi, > java.lang.IllegalArgumentException: Standard header not supported > anymore. Use the extended header. I am sorry, but we cannot reproduce this problem. If the problem persists please open a problem report (please use http://sourceforge.net/tracker/?func=add&group_id=117793&atid=679233) and attach the following information: * the version number of the PHP/Java Bridge * the version number of the PECL library, if any. Regards, Jost Boekemeier E-Mails jetzt auf Ihrem Handy. www.yahoo.de/go |
|
From: <php...@li...> - 2008-02-28 10:41:58
|
Hello
I have some problems running php/java bridge in INET-Mode.
First some information:
- system: Gentoo + Apache
- include Java.inc: require_once ( "/www/xxxx/xxxx/java/Java.inc" );
- define("JAVA_HOSTS", "127.0.0.1:9600")
Everthing runs great when i'm using the INET_LOCAL mode. Here's the config:
Feb 25 16:55:57 VMBridge INFO : VM :
1.6.0_03@http://java.sun.com/
Feb 25 16:55:57 VMBridge INFO : VMBridge version : 5.1.0
Feb 25 16:55:57 VMBridge INFO : logFile : /tmp/javabridge.log
Feb 25 16:55:57 VMBridge INFO : default logLevel : 3
Feb 25 16:55:57 VMBridge INFO : socket : SERVLET_LOCAL:9676
Feb 25 16:55:57 VMBridge INFO : java.ext.dirs :
/opt/sun-jdk-1.6.0.03/jre/lib/ext:/usr/java/packages/lib/ext
Feb 25 16:55:57 VMBridge INFO : php.java.bridge.base: /home/www
Feb 25 16:55:57 VMBridge INFO : thread pool size : 20
Feb 25 16:55:57 VMBridge INFO : JavaBridgeRunner started on port
INET_LOCAL:9676
Now i have the bridge to be avaible for the whole network and so i
have to switch to INET-mode:
Feb 27 16:05:35 VMBridge INFO : VM :
1.6.0_03@http://java.sun.com/
Feb 27 16:05:35 VMBridge INFO : VMBridge version : 5.1.0
Feb 27 16:05:35 VMBridge INFO : logFile : /tmp/javabridge2.log
Feb 27 16:05:35 VMBridge INFO : default logLevel : 3
Feb 27 16:05:35 VMBridge INFO : socket : INET:9676
Feb 27 16:05:35 VMBridge INFO : java.ext.dirs :
/opt/sun-jdk-1.6.0.03/jre/lib/ext:/usr/java/packages/lib/ext
Feb 27 16:05:35 VMBridge INFO : php.java.bridge.base: /home/www
Feb 27 16:05:35 VMBridge INFO : thread pool size : 20
Now this exception is thrown:
Feb 28 09:31:30 VMBridge ERROR: An exception occured:
java.lang.IllegalArgumentException: Standard header not supported
anymore. Use the extended header.
java.lang.IllegalArgumentException: Standard header not supported
anymore. Use the extended header.
at php.java.bridge.Parser.initOptions(Parser.java:68)
at php.java.bridge.Request.init(Request.java:181)
at php.java.bridge.JavaBridge.run(JavaBridge.java:206)
at php.java.bridge.ThreadPool$Delegate.run(ThreadPool.java:60)
I hope somebody can help me
Best regards
Christian
|
|
From: <php...@li...> - 2008-02-26 14:51:12
|
Hi,
> It' doesn't overrule this so i end up with some old Classes/Methods default
this is a bug in the DynamicClassLoader. A custom loader should prepend the local classes.
This problem will be fixed in the next release of the PHP/Java Bridge.
As a workaround please the standard class loading mechanism provided by your J2EE server or
servlet engine instead.
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...> - 2008-02-26 14:45:36
|
Hi,
> But is there a way to autostart it, when a script using that bridge is
> running?
You could take a look at tomcat, which automatically starts as a windows or unix service.
> I'm sorry, but again without tomcat...
You could take the Java autostart code from tomcat. Or you could write your own service using
servany.exe.
But this is definitely outside of the scope of the PHP/Java Bridge.
Regards,
Jost Boekemeier
E-Mails jetzt auf Ihrem Handy.
www.yahoo.de/go
|