Changes for page Java Client and Direct To Java Client Example Project using WebStart
Last modified by David Avendasora on 2008/07/01 16:52
From version 3.1
edited by David Avendasora
on 2008/06/25 09:21
on 2008/06/25 09:21
Change comment:
There is no comment for this version
To version 19.1
edited by David Avendasora
on 2008/06/25 09:49
on 2008/06/25 09:49
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 -Java Client and Direct To Java Client WebStartExample Project1 +Java Client and Direct To Java Client Example Project using WebStart - Content
-
... ... @@ -1,4 +1,6 @@ 1 -1. Create a new WOApplication named "WebStartJNLPTest" in Eclipse with a package of "your.app" 1 +1. Create a new WebObjects Application 2 +[[image:Picture 9.png]] 3 +1. Name it "WebStartJNLPTest" in Eclipse with a package of "your.app" {{note title="Note!"}}If you change the Project name or packages, then you'll need to make additional changes in the subsequent steps.{{/note}} 2 2 1. Modify the Main.html by adding: 3 3 4 4 {{code title="Main.html Changes"}} ... ... @@ -23,21 +23,21 @@ 23 23 24 24 {{/code}} 25 25 26 -1. Create a WOComponent named JavaClient 28 +1. Create a WOComponent named "JavaClient". This WOComponent will be what passes the specifics about your client-side application to WebObjects. 27 27 1. Modify the JavaClient.html replacing the contents with: 28 28 29 -{{code title="JavaClient.html"}} 31 +{{code title="JavaClient.html Contents"}} 30 30 <WEBOBJECT NAME=JavaClientComponent></WEBOBJECT> 31 31 {{/code}} 32 32 33 -1. Modifythe JavaClient.wod filebyadding:35 +1. Paste the following as the contents of the JavaClient.wod file. Feel free to change the applicationName, applicationDescription and vendor parameters to anything you wish. 34 34 35 35 {{code title="JavaClient.wod Contents"}} 36 36 37 37 JavaClientComponent: WOJavaClientComponent { 38 38 applicationClassName = "com.webobjects.eogeneration.EODynamicApplication"; 39 - applicationName = "WebStart JBNDTest";40 - applicationDescription = "WebStart JBNDTest";41 + applicationName = "D2JC WebStart Test"; 42 + applicationDescription = "D2JC WebStart Test"; 41 41 downloadClientClasses = "noDownloadClientClasses"; 42 42 vendor = "My Company"; 43 43 } ... ... @@ -44,6 +44,8 @@ 44 44 45 45 {{/code}} 46 46 49 +{{note title="Note!"}}If you are not creating a Direct To Java Client (D2JC) application, then you will need to replace the applicationClassName parameter (com.webobjects.eogeneration.EODynamicApplication) with the name of your client-side application class. Your non-D2JC client-side Application class *must* subclass EOApplication.{{/note}} 50 + 47 47 1. Add the following frameworks to the project build path: 48 48 JavaDirectToWeb 49 49 JavaDTWGeneration ... ... @@ -59,8 +59,13 @@ 59 59 JavaJDBCAdaptor 60 60 JavaWebObjects 61 61 JavaWOExtensions 62 -1. Create a ClasspathClient.txt file in the root of the project and paste the following as contents: 63 63 67 +{{note title="Note!"}} 68 + If you are not creating a D2JC application, then you won't need all of these, but they won't hurt anything either. 69 +{{/note}} 70 + 71 +1. Create a ClasspathClient.txt file in the root of the project and paste the following as contents:{{note title="Note!"}}If you changed the applicaton name in Step 2 above, make sure you change the name of the Client-Side .jar file in the first classpath line below (WebStartJNLPTest.jar). Also be sure to match the case of the project. Client-Side .jar filenames are CamelCase instead of all lowercase as server-side .jar filenames are.{{/note}} 72 + 64 64 {{code title="ClasspathClient.txt File"}} 65 65 66 66 # ApplicationClass == com.webobjects.eoapplication.client.EOClientApplicationSupport ... ... @@ -151,6 +151,8 @@ 151 151 152 152 {{/code}} 153 153 163 +This file is needed to make up for the lack of Java Client application building by the WOLips Incremental Builder. Please follow the [[instructions]] for how to create the Java Client Incremental Builder. 164 + 154 154 1. Right-click on the javaclientbuild.xml file and select "Run As -> Ant Build" 155 155 1. Right-click on the project and select "Run As -> WebObjects Application" 156 156 1. Select your.app.Application as the Application class