PHP site scheduling Java execution?

Posted by obfuscation on Stack Overflow See other posts from Stack Overflow or by obfuscation
Published on 2010-05-18T12:58:12Z Indexed on 2010/05/18 13:00 UTC
Read the original article Hit count: 131

Filed under:
|
|

I'm trying to get started on combining my (slightly limited) PHP experience with my (better) Java experience, in a project where I need to allow uploads of Java source files to the server, which the server then executes Javac on to compile it.

Then, at a set time (e.g. specified on upload) I need to run that once on the server, which will generate some database info for the PHP site to display.

To describe my current programming abilities- I have made many desktop Java programs, and am confident in 'pure' Java, but so far have only undertaken a couple of PHP projects (including using the CodeIgniter framework).

My motivation for using PHP as the frontend is because I know it is very fast, lightweight and I will be able to display the results I need very easily with it (simple DB readout). Ideally, the technology used should be able to be developed on a localhost (e.g. WAMP, Tomcat etc..)

Is there any advice which you could give on what technology I should consider to use to bridge this gap, and what resources could help in using that technology? I have looked at a few, but have struggled to find documentation helping in achieving what I need.

© Stack Overflow or respective owner

Related posts about java

Related posts about php