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-07 16:49:23
|
Thank you! Yes, I understand that. Actually, I have already taken out
the if statment
if( $fuzzyRuleSet == null ) {
so I am running
$temp = $fuzzyRuleSet->toString();
directly, but it still give me an nullpointerexception. The method can
run in java just don't understand how come it cannot run in php. Any
other suggestions? Please! Thanks again!
On Fri, Mar 7, 2008 at 12:34 AM,
<php...@li...> wrote:
> > if( $fuzzyRuleSet == null ) {
>
> > $temp = $fuzzyRuleSet->toString();
> >
> > Even I take out the null test, the error still remains. Can anyone help? Thanks!
>
> The same argument applies to the above code, of course.
>
> Use
>
> (string)$fuzzyRuleSet == null
>
> or better
>
> is_null (java_values ($fuzzyRuleSet))
>
>
> for the test.
>
>
> Regards,
> Jost Boekemeier
>
>
>
> Lesen Sie Ihre E-Mails auf dem Handy.
> www.yahoo.de/go
>
> -------------------------------------------------------------------------
>
> 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
>
|
|
From: <php...@li...> - 2008-03-07 15:20:01
|
Hmm, well me again. Sorry to bother but i feel like a dumb. I can't get rid of my problem and i don't really get all the faces of how to use the bridge in the way i want to use it. Thanks for the various INSTALL files which i haven't seen at first. It helped me a bit though. What I understood is that the JavaBridgeRunner is the entry point of the bridge. But how do I use it. It seems that I have to open the socket myself? I am able to make my php communicates with my java class and get the runner but after then... I was actually thinking about using something like a stub on the php side, which would connect to another JVM where my Java object is already instanciated (something like RMI actually). Then I would have been able to catch my parameters through that socket. Am I completely wrong and should search in another direction or is it just that i missed something in the 'how to use' process? Would you mind explaining me what i got wrong? Thanks for your help 2008/3/4, php...@li... < php...@li...>: > > 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 > > ------------------------------------------------------------------------- > 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 > -- # !! brOl_oUilLe --> << bro...@gm... >> |
|
From: <php...@li...> - 2008-03-07 15:03:48
|
Hi, > $session = java_session(); > echo $session->getId(); > > > Uncaught [[o:Exception]:"java.lang.Exception: Invoke failed: > [[o:RemoteHttpSessionFacade]]->getId. Cause: java.lang.NoSuchMethodException: getId(). the RemoteHttpSessionFacade doesn't have a getId(). Please see the API documentation for details. http://php-java-bridge.cvs.sourceforge.net/*checkout*/php-java-bridge/php-java-bridge/server/documentation/API/index.html?revision=1.17 What you want is an instance of the HttpSession, not the HttpSessionFacade. The Session can be obtained from the request object. Regards, Jost Boekemeier Lesen Sie Ihre E-Mails jetzt einfach von unterwegs. www.yahoo.de/go |
|
From: <php...@li...> - 2008-03-07 14:58:40
|
Hi,
> of the java/php bridge, but it sounds like this is nothing we really
> have to worry about then?
the bridge simply forwards the Java statements as soon as it receives them.
Other technologies such as Soap or XML-RPC have a much higher overhead. -- mod_jk goes even
further and forwards the entire script to the back end.
Regards,
Jost Boekemeier
Lesen Sie Ihre E-Mails auf dem Handy.
www.yahoo.de/go
|
|
From: <php...@li...> - 2008-03-07 14:53:28
|
Right - I tried but apparently the session per java_session() is not aware of such methods. $session = java_session(); echo $session->getId(); Uncaught [[o:Exception]:"java.lang.Exception: Invoke failed: [[o:RemoteHttpSessionFacade]]->getId. Cause: java.lang.NoSuchMethodException: getId(). Candidates: [] Responsible VM: 1.5.0_09@http://java.sun.com/" at:\n#-5 php.java.bridge.JavaBridge.Invoke(JavaBridge.java:1040)\n#-4 php.java.bridge.Request.handleRequest(Request.java:409)\n#-3 php.java.bridge.Request.handleRequests(Request.java:485)\n#0 http://192.168.15.62:8080/JavaBridge/java/Java.inc(259): java_ThrowExceptionProxyFactory->getProxy(5, 'java.lang.Strin...', true)\n#1 http://192.168.15.62:8080/JavaBridge/java/Java.inc(409): java_Arg->getResult(true)\n#2 http://192.168.15.62:8080/JavaBridge/java/Java.inc(415): java_Client->getWrappedResult(true)\n#3 http://192.168.15.62:8080/JavaBridge/java/Java.inc(619): java_Client->getResult()\n#4 http://192.168.15.62:8080/JavaBridge/java/Java.inc(1730): java_Client->invokeMethod(1, 'getId', Array)\n#5 http://192.168.15.62:8080/JavaBridge/java/Java.inc(1843): java_JavaProxy->__call('getId', Array) Thanks for the reference to the j2ee docs tho - those are always hard to come by. ~tim Hi, > I see the context and the session, however I am having trouble getting at the actual value of > the java session id. => http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpSession.html#getId() Hope it helps. Regards, Jost Boekemeier |
|
From: <php...@li...> - 2008-03-07 12:18:25
|
i am not concerned about the java backend, i was just concerned if there for some reason overhead (in terms of speed/memory) is because of the java/php bridge, but it sounds like this is nothing we really have to worry about then? cheers, RJ On 3/6/08, php...@li... > Well, the bridge simply forwards the Java calls to the J2EE back end. > > If one back end cannot handle the load anymore, just add another one. Please > see the "How do I set > up a J2EE cluster" from our FAQ for details. > > > Regards, > Jost Boekemeier > |
|
From: <php...@li...> - 2008-03-07 11:11:45
|
thanks for the reply. i could be wrong, it's like moving the overhead to the script rather than leaving it in java.so On Fri, Mar 7, 2008 at 7:31 PM, <php...@li...> wrote: > Hi, > > >, why > > can't you push all the java functions into java.so? > > Because of the additional overhead for class registration. > > Do you really want to create a Java class in each of your scripts? > > > Regards, > Jost Boekemeier > > > > Lesen Sie Ihre E-Mails auf dem Handy. > www.yahoo.de/go > > ------------------------------------------------------------------------- > 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 > |
|
From: <php...@li...> - 2008-03-07 08:34:43
|
> if( $fuzzyRuleSet == null ) {
> $temp = $fuzzyRuleSet->toString();
>
> Even I take out the null test, the error still remains. Can anyone help? Thanks!
The same argument applies to the above code, of course.
Use
(string)$fuzzyRuleSet == null
or better
is_null (java_values ($fuzzyRuleSet))
for the test.
Regards,
Jost Boekemeier
Lesen Sie Ihre E-Mails auf dem Handy.
www.yahoo.de/go
|
|
From: <php...@li...> - 2008-03-07 08:31:38
|
Hi,
>, why
> can't you push all the java functions into java.so?
Because of the additional overhead for class registration.
Do you really want to create a Java class in each of your scripts?
Regards,
Jost Boekemeier
Lesen Sie Ihre E-Mails auf dem Handy.
www.yahoo.de/go
|
|
From: <php...@li...> - 2008-03-07 04:09:57
|
Thanks for the help. But the
if( $fis == null )
is not the cause of the error. The error is from
$temp = $fuzzyRuleSet->toString();
Even I take out the null test, the error still remains. Can anyone help? Thanks!
On Wed, Mar 5, 2008 at 1:57 AM,
<php...@li...> wrote:
> > > if( $fis == null ) {
> >
> > The above test is invalid. $fis is an object representing Java NULL, not a PHP null pointer.
>
> BTW: a PHP null value should be tested with is_null(...), see your PHP documentation
>
>
> Machen Sie Yahoo! zu Ihrer Startseite. Los geht's:
> http://de.yahoo.com/set
>
>
>
> -------------------------------------------------------------------------
> 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
>
|
|
From: <php...@li...> - 2008-03-07 02:24:09
|
Hi, thanks, that explains it. I was just wondering why would you call it a bug:) - cos having to include Java.inc in every script is really annoying, why can't you push all the java functions into java.so? Rong On Fri, Mar 7, 2008 at 3:23 AM, <php...@li...> wrote: > Hi, > > > well, for v4 and v5.0 i didn't need to include Java.inc, > > yes, this was a bug in java.so. Please see the NEWS file for version 5.2.0for details. > > However, unless you use PHP 4, you need to include Java.inc, if you want > to access the Java class > or the java() function. > > > Regards, > Jost Boekemeier > > > > Lesen Sie Ihre E-Mails auf dem Handy. > www.yahoo.de/go > > ------------------------------------------------------------------------- > 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 > |