Oops. I already sent a reply back to the Almighty Admin of freepgs.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: sixthcrusifix on June 11, 2006, 03:36:28 AM'Tis unfortunate. =/Quote from: jdstroy on June 06, 2006, 05:54:56 PM
Umm, no... that would be a _big_ security issue, and/or it would kill the server resources. I could write a simple class to kill the server resources right now:
public class MainTrouble implements Runnable {
public MainTrouble() {
}
public void run() {
while(true) {
// do not yield or sleep
}
}
public static void Main(String[] args) {
while (true) {
Thread t = new Thread(new MainTrouble());
t.start();
}
}
}
// this class will cause many loop threads to be started that do nothing and consume processor time. not good.
If you're looking for battle hosting, try looking for a shell server and/or a virtual server. Too much trouble for webhosts.
What I'm asking for is just another server-side engine to parse Java Server Pages. It's like working with ASP or PHP.
Hmm nah that's not really what I'm talkign about. I think what I was thinking of is just a simple javascript battle system.
Basically I have a PHP RPG thing I made but battling page by page is ubber lame so I wanted something that at least didn't involve refreshing. There _was_ a javascript battling system made for soem weird forum but I'm bad a javasctip and didn't know how to edit iit.
Quote from: gordon on June 11, 2006, 04:55:12 AM
We do not currently plan to offer JSP support.
You can create a Javascript to refresh the page, or use meta refresh.
Regards,
Gordon