Re: [PHP] PHP and Java: accessing Java classes from PHP

2007-07-31 Thread Holografix
Hi > > If you mean you tried this: > http://php.net/java It was the first thing I tried. I will post a bug in http://bugs.php.net Then I read about php-java-bridge but the examples were using older versions of php-jb. > That said, I don't see how you could possibly access Java without > runnin

Re: [PHP] PHP and Java: accessing Java classes from PHP

2007-07-27 Thread Richard Lynch
On Fri, July 27, 2007 10:31 am, Holografix wrote: > I need to access some custom and native Java classes from php. > I've tried the steps form php manual and php-javabridge from sf but I > always > get an apache crash. > I don't need to run servlets and it's impossible to start servlet > engine in

Re: [PHP] PHP and Java: accessing Java classes from PHP

2007-07-27 Thread Holografix
Hi Thanks for the answer. I'm using php 5 (5.2.3). holo ""Nathan Nobbe"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > if you cant get the php / java bridge to work and you cant run servlets > than > i dont know > what other options you have. we used to use soap for communicat

Re: [PHP] PHP and Java: accessing Java classes from PHP

2007-07-27 Thread Nathan Nobbe
if you cant get the php / java bridge to work and you cant run servlets than i dont know what other options you have. we used to use soap for communication between java and php where i worked last, but that would require servlets as well (afaik). the bridge is marked as experimental.. are you usin

[PHP] PHP and Java: accessing Java classes from PHP

2007-07-27 Thread Holografix
Hi I need to access some custom and native Java classes from php. I've tried the steps form php manual and php-javabridge from sf but I always get an apache crash. I don't need to run servlets and it's impossible to start servlet engine in the server (project requirements). The tutorials i've f

RE: [PHP] PhP and Java login trouble (can someone help a brother out whom is truely trying to understand?)

2007-05-10 Thread Brad Sumrall
I have these to independently working scripts. 1 is php, the other is javascript. For obvious reason, to separate logins are not appropriate. It has been recommended to make a separate function, not sure how to do this Common sense says, "carry the variable from php to javascripting". I am clue

RE: [PHP] PhP and Java login trouble

2007-05-09 Thread Brad Sumrall
: php-general@lists.php.net Subject: Re: [PHP] PhP and Java login trouble Brad Sumrall wrote: > I have been hunting all around that website you referred me too looking for > javascripting information and can find nothing. I know a little bit of php > but little to nothing about javasc

Re: [PHP] PhP and Java login trouble

2007-05-09 Thread itoctopus
I agree with Chris, if you can do it this way, then it's much better. Working with FCKEditor's code was not one of the easiest things I did in my life. -- itoctopus - http://www.itoctopus.com "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Brad Sumrall wrote: >> I am tryi

Re: [PHP] PhP and Java login trouble

2007-05-08 Thread Chris
Brad Sumrall wrote: I have been hunting all around that website you referred me too looking for javascripting information and can find nothing. I know a little bit of php but little to nothing about javascripting. Eh? I never sent you to a website. See this code: function validatelogi

RE: [PHP] PhP and Java login trouble

2007-05-08 Thread Brad Sumrall
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 10:58 PM To: Brad Sumrall Cc: 'php-general@lists.php.net' Subject: Re: [PHP] PhP and Java login trouble Firstly always CC the list - others can provide help and suggestions too. Brad Sumrall wrote: &g

Re: [PHP] PhP and Java login trouble

2007-05-08 Thread Lester Caine
Brad Sumrall wrote: I have been hunting all around that website you referred me too looking for javascripting information and can find nothing. I know a little bit of php but little to nothing about javascripting. I have been beating my head against the wall on this one for weeks now, I am so cl

Re: [PHP] PhP and Java login trouble

2007-05-08 Thread Chris
Firstly always CC the list - others can provide help and suggestions too. Brad Sumrall wrote: Any chance you can tell me what I am doing wrong? Brad onsubmit="return BBValidateLogin();"> You don't have a javascript function called 'BBValidateLogin'. You have one called validateLogin whic

Re: [PHP] PhP and Java login trouble

2007-05-08 Thread Chris
Brad Sumrall wrote: I am trying to create a commonlogin.php which would perform a duel login for phpbb and a java based FCKEditor combined I have working code for each as an individual but not a clue how to combine them. Does anyone have any suggestion on where I can go for information abou

Re: [PHP] php and java appletsf

2004-05-24 Thread Tom Playford
On Fri, May 21, 2004 at 08:16:30AM -0700, jon wrote: > Nah... Maybe we're both confused. Is this a java app you wrote or one > that you found somewhere? If you know how to control the camera from > java and you know how to work in java, you could build yourself a quick > and dirty command-line j

Re: [PHP] php and java applets

2004-05-21 Thread jon
Nah... Maybe we're both confused. Is this a java app you wrote or one that you found somewhere? If you know how to control the camera from java and you know how to work in java, you could build yourself a quick and dirty command-line java application, then feed it commands from php using exec o

Re: [PHP] php and java applets

2004-05-21 Thread Tom Playford
jon wrote: Can you just send a command line java app commands from php? I'm not sure what you're getting at. Do you mean writing the Java code in the php page? I didn't know php could compile the code on the fly, can it? Or do you mean something else? Tom -- jon Tom Playford wrote: Dear all k

Re: [PHP] php and java applets

2004-05-21 Thread jon
Can you just send a command line java app commands from php? -- jon Tom Playford wrote: Dear all knowing list, I am trying to control the movement of a camera in real time from the web. But I also need to make sure that only the user I specify can have control. What I though I could do was

[PHP] php and java applets

2004-05-21 Thread Tom Playford
Dear all knowing list, I am trying to control the movement of a camera in real time from the web. But I also need to make sure that only the user I specify can have control. What I though I could do was this: launch a java applet from a php page parsing the session id. Then when the user adjust

[PHP] PHP and Java

2003-12-11 Thread Mark Ackroyd
Hi, I am not so sure where the problem lies with this. I have installed JDK1.3.1 on a FreeBSD 4.9 server. It seems to work fine. I have written a small java program and it compiles and runs without any issues. I want to get the PHP intgration with java working, I must admit I know more about c

[PHP] php and java

2003-11-19 Thread Edward Peloke
Ok, First, let me say, I have looked at the manual and searched the past posts but still can't get this to work. I also should say that this is my first time trying to bridge php and java so this may be a stupid questionI have a java class(DateUtil) in a package (testphp). I then took the pa

Re: [PHP] PHP and java

2003-10-30 Thread Jacob Vennervald
Why can't you do this using PHP? Have a php script generate a directory listing the user can choose from and when the user chooses a picture load that picture. Jacob On Thu, 2003-10-30 at 02:27, David Miller wrote: > I have written PHP code to upload and download files to my server through my >

Re: [PHP] PHP and java

2003-10-30 Thread - Edwin -
On Wed, 29 Oct 2003 19:27:36 -0600 David Miller <[EMAIL PROTECTED]> wrote: > I have written PHP code to upload and download files to my > server through my browser. >On the local side I have generated a java applet to do a >few things that I just > can't do with a browser. There are som

[PHP] PHP and java

2003-10-29 Thread David Miller
I have written PHP code to upload and download files to my server through my browser. On the local side I have generated a java applet to do a few things that I just can't do with a browser. There are some things that I need the java on the local machine to have access to on the server. I st

Re: [PHP] PHP and JAVA

2003-07-14 Thread Marek Kilimajer
Have you tried looking at http://www.php.net/java ? J.F.Kishor wrote: Hello all, I would like to know if there is a possibility in php to invoke JAVA RMI from php by enabling some options in php in php.ini file. If there is a possibility please let me know, where I can get a document ab

[PHP] PHP and JAVA

2003-07-14 Thread J.F.Kishor
Hello all, I would like to know if there is a possibility in php to invoke JAVA RMI from php by enabling some options in php in php.ini file. If there is a possibility please let me know, where I can get a document about it. If any one of you have tried this then please send me a sample

[PHP] PHP AND JAVA

2002-08-14 Thread Alexandra Aguiar
may i use php with JAVA (note. not JAVASCRIPT , but JAVA APPLETS) !?! any helps !? thx xanda

[PHP] PHP and Java Servlets

2002-03-15 Thread Richard Fox
I have to build a "bridge page" from my PHP script that does the following: 1. Kick off a Java servlet (in my case running on my Tomcat4 plug-in to Apache) 2. Receive data back from that servlet and continue my PHP script. Does anyone have hard won advice, tips on great articles, examples, etc?

Re: [PHP] PHP and Java

2002-03-01 Thread Richard Fox
Minor point, but you do mean LD_LIBRARY_PATH, not LD_LIBRARYPATH right? Also, set [Java] extension = libphp_java.so extension_dir = (pathname to libphp_java.so) Rich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and Java

2002-03-01 Thread Richard Fox
>From my experience getting Java to run w/ PHP and Apache on RedHat 7.0, you can try setting the LD_LIBRARY_PATH environment variable ( without which my Java would not run) set to the location of libjava.so, libjvm.so, and php_java.jar, in my case (without line feeds) LD_LIBRARY_PATH="/usr/java/

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
, March 01, 2002 10:56 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] PHP and Java no, it isn't. it is in usr/local/lib/php/modules > Is the libphp_java.so located in your apache libexec directory? > > > > Ray Hunter > Firmware Engineer > > ENTERASYS NETWORKS > >

RE: [PHP] PHP and Java

2002-03-01 Thread Proyecto de Grado
ECTED]] > Sent: Friday, March 01, 2002 10:49 AM > To: [EMAIL PROTECTED] > Subject: [PHP] PHP and Java > > > I have Java1.2 , php4.1.1 and apache 1.3.22, sun solaris7 > >I did compile php with-java > >1) Java section in php.ini >[Java] >ja

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
Is the libphp_java.so located in your apache libexec directory? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:49 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP and Java I have

[PHP] PHP and Java

2002-03-01 Thread Proyecto de Grado
I have Java1.2 , php4.1.1 and apache 1.3.22, sun solaris7 I did compile php with-java 1) Java section in php.ini [Java] java.home = /usr/java1.2 java.class.path = /usr/local/lib/php/php_java.jar java.library=/usr/java1.2/jre/lib/sparc/libjvm.so java.library.path = /usr/loca

[PHP] PHP and JAVA

2001-12-02 Thread Steve Haemelinck
Hi all Does anyone got any experience with JAVA in PHP? I tried to rebuild php with java support. Everything worked well but when I try to initiate Java in PHP, I get cannot instantiate Virtual machine. I use kaffe and I believe I have configured PHP correctly. See http://www.haemelinck.be:8080/

Re: [PHP] php and java problem

2001-10-01 Thread Alexander Deruwe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 30 September 2001 21:36, Nikola Veber wrote: > Hi ! > > I was able to determine the user's screen resolution, but I'd like to let > php know that(the next page loaded should be in > the right resolution, I'd like to pass a value to php, but

Re: [PHP] php and java problem

2001-10-01 Thread George Pitcher
: "php forum" <[EMAIL PROTECTED]> Sent: Sunday, September 30, 2001 10:36 PM Subject: [PHP] php and java problem > Hi ! > > I was able to determine the user's screen resolution, but I'd like to let php know > that(the next page loaded should be in > the

[PHP] php and java problem

2001-10-01 Thread Nikola Veber
Hi ! I was able to determine the user's screen resolution, but I'd like to let php know that(the next page loaded should be in the right resolution, I'd like to pass a value to php, but I don't know how). Thanx Nikola -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

[PHP] php and java problem

2001-09-30 Thread Nikola Veber
Hi ! I was able to determine the user's screen resolution, but I'd like to let php know that(the next page loaded should be in the right resolution, I'd like to pass a value to php, but I don't know how). Thanx Nikola -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] PHP and Java issues. Desperate please help.

2001-08-28 Thread Bill Koch
I have dug through several forums trying to find a solution to this issue. I have configured PHP4.0.6 with Sun's JDK1.3.1 on RH7.1. I keep receiving a the following error message: Fatal error: Unable to load Java Library /usr/java/jdk1.3.1/jre/lib/i386 /classic/libjvm.so, error: /usr/java/jdk1.

[PHP] PHP and Java InputStream object

2001-08-15 Thread Kiat Kin
Is it possible use php to read a file and then using it to construct a java.InputStream object? TIA Kiat Kin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mai

[PHP] php and java

2001-08-14 Thread Gaylen Fraley
I'm trying to get java support working with php and the jvm loads the first time and then I have to start and stop the server to get it to load again. In other words it's erring out and saying it can't load the jvm. I have followed the instructions at www.phpbuilder.com exactly and can't seem to

Re: [PHP] PHP and Java (CVS version)

2001-02-14 Thread Alex Akilov
Evan, It sounds like your PATH doesn't contain the JDK/bin directory. What happens if you type "which jar" at a command shell? Alex -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

[PHP] PHP and Java (CVS version)

2001-02-13 Thread Montgomery-Recht, Evan
I've noticed a problem with the config.m4 in the ext/java directory. Basic issue I'm running redhat 7.0 with the sun jdk installed in /usr/java/jdk1.3 I type in really simple after doing a buildconf I have my JAVA_HOME and PATH's setup to get all java exe's. configure --with-mysql=/usr --with-