Originally posted by Edwin Dalorzo:
My worry is if the magic cookie in the file the evaluator is going to use is different from the one in my file. Because that would make the application start-up fail, or at least will prevent the user from starting the database server.
I was rather thinking about removing the magic cookie check, in order to avoid unforeseen issues during the evaluation.
Originally posted by Mihai Radulescu:
Hi Oliver
How about :
[code]
final ClassLoder loader = getClassLoader();
final URL helpURL = loader.getResource("myHelp.html");
new JEditorPane(helpURL);
[code]
Regards M.
Originally posted by Sham Delaney:
Oliver, is there any benefit to using the way I am connecting...and the way you are connecting?
Originally posted by Jeroen T Wenting:
It's effectively impossible to determine the actual client making a request.
Originally posted by Jared Cope:
I believe that in client mode you must still be able to select a local database, in which case the application will 'switch' to 'alone' mode (even though it was started without the 'alone' command line parameter).
Originally posted by Thirumurugan Mylrajan:
So use command line parm to choose server or client and when the client opens you should be able to choose connecting to a local database or a network server.