| By Phil Cruz | Article Rating: |
|
| October 21, 2005 09:15 PM EDT | Reads: |
16,901 |
After somewhat of a hiatus, we're back to continue and conclude our CFEverywhere journey. I should note that Dick Applebaum, my copilot for parts 1 and 2, was unable to join me for this last installment. It won't be the same without his contribution but we'll have to make do. Moreover, as Dick provided the knowledge for the Mac side of things, I'll have to apologize in advance for the lack of detail on that front.
In the previous articles, we demonstrated how to deploy a CFML application into a self-contained package. We used BlueDragon, Jetty, and Derby to create a fully dynamic, database-driven application running locally, giving the appearance of a traditional desktop application. Now I'll deliver the final piece of the puzzle and demonstrate how to create an application launcher to deliver the ultimate user experience. To access your application, the user will be able to:
- Download the application (or insert a CD)
- Double-click an icon
- That's it - there is no Step 3!
Create a new project folder called cfeverywherej to contain the files for the Java project. Create a file cfeverywere.java that looks like Listing 1. Let's take a look at the main method of this class. It begins by initializing some variables. It continues on to instantiate a JettyThread class and calls its run method. Looking at Listing 2, we see that JettyThread is a simple class that extends Thread. Its run method checks if the isStarted flag has been set. If not, it starts Jetty using the org.mortbay.jetty.Server class. After the JettyThread is created Derby is started in a similar fashion using the DerbyThread class (see Listing 3). After JettyThread and DerbyThread are created, we wait an amount of time defined by delayMilliseconds that allows time for the servers to initialize and get ready to accept requests. Finally, the Web browser is launched to the application URL using a platform specific command. In order to compile the class files, you will need to make sure the following jar files are on your build path:
cfeverywhere/server/lib/org.mortbay.jetty.jar
cfeverywhere/derby/lib/derbynet.jar
After you have compiled the Java class files, create a JAR file by using the JAR utility:
On Windows:
C:\j2sdk1.4.2_04\bin\jar.exe -cvf cfeverywhere.jar *.class
On Mac OS X:
C:\j2sdk1.4.2_04\bin\jar.exe -cvf cfeverywhere.jar *.class
If you are using Eclipse, you can create the JAR file by choosing Export from the File menu and choosing JAR file. Copy the cfeverywhere.jar file to the cfeverywhere project folder. We now have the Java classes required to create our application bundle. The process to create the application launcher is different for each platform so we'll discuss them separately.
To create our application launcher on Windows, we will use a utility called NativeJ. Visit their Web site at www.dobysoft.com/products/nativej and download the trial version of the program. Install the software and start a new project. Configure the project with these settings:
Executable
- Application Type: console
- Allow application to be installed as a service: no
- Executable filename: cfeverywhere.exe
- Redirect system.out/system.err to: popup message box/Event Log
- Initial process priority: normal
- JVM options: -Djetty.home=server -Dderby.system.home=derby
- Classpath: .;server/lib/org.mortbay.jetty.jar;server/ext/commons-logging.jar;server/ext/ xercesImpl.jar;server/ext/xml-apis.jar;server/lib/javax.servlet.jar;server/lib/ org.mortbay.jmx.jar;server/ext/jasper-compiler.jar;server/ext/jasper-runtime.jar; cfeverywhere.jar
- Main class: cfeverywhere
- Default application arguments: server/etc/cfeverywhere.xml
Double-click the executable, and you should see a command line window appear that shows the server starting up, and then your CFML application should launch in your browser. Pretty cool, huh?
If your CF page didn't display properly it may be that the servers didn't complete the startup procedure before the browser was launched. You may have to increase the delayMilliseconds value in cfeverywhere.java to allow more time. When you want to quit your application you can't simply close the browser. You have to CTRL-C in the command line window and that will initiate a shutdown of the servers.
To create an application bundle on the Mac, you can use the same Java code to create the JAR file. Instead of NativeJ you would use the JarBundler application that is distributed with other developer tools for OSX, which are located at Developer/Applications. Configure JarBundler with the cfeverywhere.jar file and set the classpath similar to how NativeJ was configured; click "Create Application..." and you will have your Mac application bundle. This process is described in more detail in this article: http://java.sun.com/developer/technicalArticles/JavaLP/JavaToMac3/.
Published October 21, 2005 Reads 16,901
Copyright © 2005 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Phil Cruz
Phil Cruz is a Macromedia Certified Advanced ColdFusion developer and has over 12 years of experience in the computing industry. He is responsible for www.mach-ii.info, a community site for the Mach-II framework. As a micro-ISV, he created Tracking Tools, an easy-to-use bug tracking application built with Mach-II (www.tracking-tools.com).
![]() |
Anthony Planavsky 02/08/08 03:44:34 PM EST | |||
Hello, I am trying to implement CFEverywhere, and have everything set up to the point where after clicking the executable icon, the command line window launches and gets to the '..waiting to launch browser...' system print line. But when it tries to run the line 'org.mortbay.jetty.Server.main(myargs);' an error appears in the command line window that says: 'log4j:WARN No appenders could be found for logger (org.mortbay.util.FileResource). The browser window launches, but we get a Page Not Found page because the server did not start due to the error we are getting. If you could give me any help as to why we are getting this error it would be greatly appreciated. I was thinking that maybe it had to do with the build path. In the Java Build Path window, we chose the Libraries tab and clicked Add External JARs and imported the org.mortbay.jetty.jar library. Is this the correct way to reference the build path? Thanks in advance... Anthony Planavsky |
||||
![]() |
CFDJ News Desk 10/21/05 09:22:00 PM EDT | |||
ColdFusion Developer's Journal - CFEverywhere Part 3 |
||||























