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
(3) |
5
(4) |
6
(3) |
7
|
8
|
9
|
10
|
11
(3) |
12
(8) |
13
(4) |
14
|
15
|
16
(1) |
17
|
18
(1) |
19
(2) |
20
|
21
|
22
|
23
|
24
(2) |
25
(5) |
26
(8) |
27
(10) |
28
(1) |
29
|
30
(5) |
31
(1) |
|
|
|
|
From: <php...@li...> - 2010-08-31 18:47:01
|
Hi Kok, thank you very much for the bug report. java_session() and java_session(null, false) should behave differently. I will fix this in PHP/Java Bridge version 6.2.1rc3. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-30 19:20:49
|
Hi Jost, My point is, is it possible to configure java_session(); such that it returns a null when no session currently exists? Or is there any function to determine whether a session already exists? Thanks. Regards, Kok Hoor Hi Kok, > I am a newbie using php-java bridge. Is there any way to make any calls > to Java to return session only if it exists, and not create a new one? If JavaBridge.war back end is running in a servlet engine or JEE server, the code: <?php require_once("java/Java.inc"); java_session(); ?> uses an existing session or creates a new one, depending on whether your browser(!) has sent a session cookie or not. > The reason I ask is because, by default, our existing Java web does not > create any session until after the user logs into our system. java_session() (or session_start(), for that matters) should be called before any response has been created. Furthermore, if an HTTP front- and a JEE back-end is used, java_session() must be the first Java statement in your PHP script. Otherwise you'll get an error message that a session cannot be allocated (you won't get a session, not even a new one). It sounds as if your browser has cookies switched off, so that the server tries to allocate a new session for each request. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-30 19:10:50
|
Hi Kok, > I am a newbie using php-java bridge. Is there any way to make any calls > to Java to return session only if it exists, and not create a new one? If JavaBridge.war back end is running in a servlet engine or JEE server, the code: <?php require_once("java/Java.inc"); java_session(); ?> uses an existing session or creates a new one, depending on whether your browser(!) has sent a session cookie or not. > The reason I ask is because, by default, our existing Java web does not > create any session until after the user logs into our system. java_session() (or session_start(), for that matters) should be called before any response has been created. Furthermore, if an HTTP front- and a JEE back-end is used, java_session() must be the first Java statement in your PHP script. Otherwise you'll get an error message that a session cannot be allocated (you won't get a session, not even a new one). It sounds as if your browser has cookies switched off, so that the server tries to allocate a new session for each request. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-30 18:28:55
|
Hi, I am a newbie using php-java bridge. Is there any way to make any calls to Java to return session only if it exists, and not create a new one? The reason I ask is because, by default, our existing Java web does not create any session until after the user logs into our system. I have tried java_session(null,true) and java_session(null,false), but regardless, a new session is created whether I like it or not. I even tried calling $java_context()->getHttpServletResponse()->getSession(false), but an exception is thrown. I am using JavaBridgeTemplate621rc2.war Thanks. Regards, Kok Hoor |
From: <php...@li...> - 2010-08-27 15:45:15
|
Its only possible if the php process and the java process are running under the same user on the same machine and the user who should see the frame is also the user running the java + php process. An example would be if you have some swing GUI and you want to code some logic in PHP and ship the app as a whole, so no _remote_ webserver is required. You cannot show a JFrame to a _remote_ user, if thats what you want. On Fri, Aug 27, 2010 at 5:19 PM, <php...@li...> wrote: > Hi Jost Bökemeier, > so it's possible to display a swing frame with Java bridge?but how can i do > that and what changes can i make in order to do that? > thnx > > > > ________________________________ > De : "php...@li..." > <php...@li...> > À : php...@li... > Envoyé le : Ven 27 août 2010, 15h 46min 48s > Objet : Re: [Php-java-bridge-users] Re : Aide sur JavaBridge > > Hi Dominik, > > >> Also you are mixing up things... you want to show a Swing Frame >> through a Web-Request > > Not necessarily web requests, no. > > Both bridges can be used to control a Java desktop application (think > of a Java report designer or something) through PHP scripts. > > The only difference is that Zend uses a binary protocol similar to > PHP/Java Bridge version 1 and supports dynamic class loading through > java_require(), while the PHP/Java Bridge uses an XML protocol and > requires you to add all libraries to the java application class path. > > > Regards, > Jost Bökemeier > > ------------------------------------------------------------------------------ > Sell apps to millions through the Intel(R) Atom(Tm) Developer Program > Be part of this innovative community and reach millions of netbook users > worldwide. Take advantage of special opportunities to increase revenue and > speed time-to-market. Join now, and jumpstart your future. > http://p.sf.net/sfu/intel-atom-d2d > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > > > > > ------------------------------------------------------------------------------ > Sell apps to millions through the Intel(R) Atom(Tm) Developer Program > Be part of this innovative community and reach millions of netbook users > worldwide. Take advantage of special opportunities to increase revenue and > speed time-to-market. Join now, and jumpstart your future. > http://p.sf.net/sfu/intel-atom-d2d > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > -- Dominik Dorn http://dominikdorn.com http://twitter.com/domdorn Tausche Deine Lernunterlagen auf http://www.studyguru.eu ! |
From: <php...@li...> - 2010-08-27 13:46:54
|
Hi Dominik, > Also you are mixing up things... you want to show a Swing Frame > through a Web-Request Not necessarily web requests, no. Both bridges can be used to control a Java desktop application (think of a Java report designer or something) through PHP scripts. The only difference is that Zend uses a binary protocol similar to PHP/Java Bridge version 1 and supports dynamic class loading through java_require(), while the PHP/Java Bridge uses an XML protocol and requires you to add all libraries to the java application class path. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-27 13:26:40
|
> so this code doesn't display "undefined function;java_require"because i am using > JavaBridge which is integrated in Zend Server CE. I think this says it all. You are using a different product from an other vendor (ZEND). Also you are mixing up things... you want to show a Swing Frame through a Web-Request which is not possible... the java code is executed on the server.. Where should the frame be rendered? On the administrators screen? If you just want to render some views in the webbrowser, you better stick to JavaSCRIPT and leave the javabridge alone. -- Dominik Dorn http://dominikdorn.com http://twitter.com/domdorn Tausche Deine Lernunterlagen auf http://www.studyguru.eu ! |
From: <php...@li...> - 2010-08-27 12:41:16
|
> when i wrote the command :java -jar HelloWorld,i get the message : Failed to > load Main-Class manifest attribute from Helloworld.jar Can we please stop this conversation? Please re-read the install instructions *carefully* and follow them *exactly*, simply copy/paste the code given there. The instructions are correct; if java complains about "Helloworld.jar", you have made a mistake, the install instructions use "HelloWorld.jar". Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-27 11:52:26
|
Hello! Failed to load Main-Class manifest attribute from Helloworld.jar Is it "Helloworld.jar" or "HelloWorld.jar"? Either you wrote a bug and the Main-Class manifest attribute doesn't exist, or your JDK is incompatible with your JRE. Peter |
From: <php...@li...> - 2010-08-27 11:25:33
|
Hi, > i created the MANIFEST.MF and the .jar with commands present in the site,but > when i do: java -jar HelloWorld.jar i have the result below: > Failed to load Main-Class manifest attribute from Helloworld.jar please pass this on to a java expert. We cannot help any further. > how can i Drag and drop JavaBridge.jar to the current directory.? For example by using some file manager. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-27 08:32:37
|
Hi, > ok i'll follow it;please how can i get the MANIFEST File? the "MANIFEST.MF" file is a standard text file. You can create it with a text editor (vi, emacs, edit, wordpad or similar). Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-26 15:39:05
|
> when i enter the command i have this: Failed to load main-class manifest > attribute from HelloWorld.jar. Then you a probably not using the PHP/Java Bridge at all. Please follow the instructions from http://php-java-bridge.sourceforge.net/pjb/desktop-apps.php > please what do you mean by Java log file? The argument to -Dphp.java.bridge.default_log_file= |
From: <php...@li...> - 2010-08-26 15:23:45
|
> The communication can be traced by starting your application with the options: java -Dphp.java.bridge.default_log_file= -Dphp.java.bridge.default_log_level=4 -jar HelloWorld.jar What are the last 10 lines from your Java log file? |
From: <php...@li...> - 2010-08-26 12:46:02
|
Hi, > java_require('http://localhost:10088/HelloWorld.jar'); > $world = new java("HelloWorld"); > echo $world->hello(array("from PHP")); > so when i launch this,nothing displayed. I am sorry, but I cannot reproduce this problem. Your code should display "undefined function: java_require". Please follow the instructions at: http://php-java-bridge.sourceforge.net/pjb/desktop-apps.php Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-26 12:40:22
|
Hi, this problem appeared in version 6.2.1 test1 and has been fixed in cvs head about a month ago. Please use the official PHP/Java Bridge download: http://php-java-bridge.sourceforge.net/pjb/download.php There is no stable version 6 yet. PHP/Java Bridge version 6 will be released at the end of september. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-25 18:24:35
|
I'm getting the exception below. Anyone seen this one before? These are the scenarios that I have tried that all result in this: -) Using the release version of the template jar without any modifications -) Building my own war and packaging it up similar to the template war -) Both the scenarios above under JBoss 5.1 and Tomcat 6 (Yes, I know JBoss uses tomcat but I wanted to rule out JBoss adding something odd to the mix) For what it's worth, I'm using OSX and MAMP on the php side and on the java side I'm using java 1.6.0_20. java.io.IOException: Invalid chunk header at org.apache.coyote.http11.filters.ChunkedInputFilter.doRead(ChunkedInputFilter.java:133) at org.apache.coyote.http11.InternalInputBuffer.doRead(InternalInputBuffer.java:710) at org.apache.coyote.Request.doRead(Request.java:428) at org.apache.catalina.connector.InputBuffer.realReadBytes(InputBuffer.java:304) at org.apache.tomcat.util.buf.ByteChunk.substract(ByteChunk.java:403) at org.apache.catalina.connector.InputBuffer.read(InputBuffer.java:327) at org.apache.catalina.connector.CoyoteInputStream.read(CoyoteInputStream.java:193) at php.java.bridge.Parser.read(Parser.java:94) at php.java.bridge.Parser.parse(Parser.java:176) at php.java.bridge.Request.handleRequest(Request.java:383) at php.java.bridge.Request.handleRequests(Request.java:491) at php.java.servlet.PhpJavaServlet.handleChunkedLocalConnection(PhpJavaServlet.java:199) at php.java.servlet.PhpJavaServlet.handleLocalConnection(PhpJavaServlet.java:261) at php.java.servlet.PhpJavaServlet.handlePut(PhpJavaServlet.java:338) at php.java.servlet.PhpJavaServlet.doPut(PhpJavaServlet.java:349) at javax.servlet.http.HttpServlet.service(HttpServlet.java:640) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:637) |
From: <php...@li...> - 2010-08-25 11:09:27
|
Not any more. We are on a tight timeline and I was preemptively looking for solutions if I were to be told that persistent connections aren't being used. On Aug 25, 2010, at 5:13 AM, php...@li... wrote: > Hi Daniel, > >> Is there a clean way to use BASIC authentication for php to java http requests? > > Doesn't make sense to me. Basic auth is handled by the browser/user, > not a server-side script. > > Do you have a use-case? > > >> looking for something more than a global set of credentials. > > You can declare access rules per rmi method, see EJB/JEE spec and > RMI/IIOP example. > > > Regards, > Jost Bökemeier > > ------------------------------------------------------------------------------ > Sell apps to millions through the Intel(R) Atom(Tm) Developer Program > Be part of this innovative community and reach millions of netbook users > worldwide. Take advantage of special opportunities to increase revenue and > speed time-to-market. Join now, and jumpstart your future. > http://p.sf.net/sfu/intel-atom-d2d > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
From: <php...@li...> - 2010-08-25 10:17:14
|
Hi everyone, i am working on a PHP application ,i need to introduce a .jar ,so my JavaBridge turn well with some examples,but when i tried the example in the site which concern the message dialogue,that doesn't work. So it doesn't display a message dialog,below are all the codes i used: ***************HelloWorld.java***************** import javax.swing.JOptionPane; public class HelloWorld { public static void main(String args[]) throws Exception { JOptionPane.showMessageDialog(null, "hello world"); System.exit(0); } public void hello(String args[]) throws Exception { JOptionPane.showMessageDialog(null, "hello " + args[0]); } } so i created the HelloWorld.jar,and it's worked,so below is the PHP code: ************************* <?php java_require('http://localhost:10088/HelloWorld.jar'); $world = new java("HelloWorld"); echo $world->hello(array("from PHP")); ?> so when i launch this,nothing displayed. Please really need someone for help. |
From: <php...@li...> - 2010-08-25 09:14:06
|
Hi Daniel, > Is there a clean way to use BASIC authentication for php to java http requests? Doesn't make sense to me. Basic auth is handled by the browser/user, not a server-side script. Do you have a use-case? > looking for something more than a global set of credentials. You can declare access rules per rmi method, see EJB/JEE spec and RMI/IIOP example. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-25 09:05:48
|
Hi Daniel, > writing to determine if my initial tests are coincidence or if I indeed can > assume that the same server side thread is allocated for the duration of a > single page rendering on the php side. the PHP/Java Bridge uses persistent connections, yes. If a PHP process "j" is connected to a java thread "k", j will continue to use k until j or k is destroyed (OOM condition or other fatal error). Note: persistent connections are not used if you program your own servlet. That's up to you: http://php-java-bridge.sourceforge.net/pjb/servlet-programming.php Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-24 12:40:45
|
Is there a clean way to use BASIC authentication for php to java http requests? I'd like to adjust this on a per web user basis so I'm looking for something more than a global set of credentials. Thanks in advance, Daniel |
From: <php...@li...> - 2010-08-24 12:00:24
|
The java code I'm trying to call from php relies on thread locals for storing security and transaction information. In the zend version of the bridge, I noticed that each call to a java operation could potentially result in a different thread handling the call. My initial tests on the php/java bridge suggest that's not true about this implementation. I'm writing to determine if my initial tests are coincidence or if I indeed can assume that the same server side thread is allocated for the duration of a single page rendering on the php side. Thanks in advance, Daniel |
From: <php...@li...> - 2010-08-19 14:09:27
|
Thanks Jost ________________________________________ From: php...@li... [php...@li...] Sent: Thursday, August 19, 2010 8:21 AM To: php...@li... Subject: Re: [Php-java-bridge-users] BIRT Report Designer Hi Jason, great! Thank you very much! Your changes will appear in PHP/Java Bridge version 6.2.1, which will be released at the end of september. Regards, Jost Bökemeier ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
From: <php...@li...> - 2010-08-19 12:21:08
|
Hi Jason, great! Thank you very much! Your changes will appear in PHP/Java Bridge version 6.2.1, which will be released at the end of september. Regards, Jost Bökemeier |
From: <php...@li...> - 2010-08-18 18:52:59
|
Jost, I committed them. I did not build any scripts, just updated what you already had. I also added a lot of php files to show how to use it. Look at the BIRTindex.php. Can you check it to verify everything went up ok? Jason ________________________________________ From: php...@li... [php...@li...] Sent: Friday, August 13, 2010 6:30 AM To: php...@li... Subject: Re: [Php-java-bridge-users] BIRT Report Designer Hi Jason, CVS user/password should be the same as your sf.net account: gromwe/***** Please see https://sourceforge.net/apps/trac/sourceforge/wiki/CVS%20client%20instructions Or please send me a binary patch file, I will commit it. Regards, Jost Bökemeier ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |