Changes for page Java Client-WebStart Distribution Building
Last modified by David Avendasora on 2009/03/30 14:20
From version 19.1
edited by David Avendasora
on 2008/01/14 10:33
on 2008/01/14 10:33
Change comment:
There is no comment for this version
To version 17.1
edited by David Avendasora
on 2008/01/14 09:42
on 2008/01/14 09:42
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,8 +1,8 @@ 1 -You rdeployed applicationmusthave a jar of all the client-side classes(and any subclasses ofEOGenericRecordthatyourclient-classes extend)in the Project.woa/Contents/WebServerResources/Java/ directory.If youdon't include you client-side classes in this directory,WebObjects silently uses EOGenericRecordinstead. This is made obvious by things like default values and client-side validation missing in the deployed application.1 +You must include a jar of all the client-side classes for your application in the Project.woa/Contents/WebServerResources/Java/ directory of your deployed application. 2 2 3 - Thefollowingare theinstructionswhenusingAnt tobuild:3 +If you don't include you client-side classes in this directory, WebObjects silently uses EOGenericRecord instead. This is made obvious by things like default values and client-side validation missing in the deployed application. 4 4 5 - 1. Add the following"javaclient"targettoyourbuild.xmlfile.5 +The following are the instructions for using Ant: 6 6 7 7 {{code}} 8 8 ... ... @@ -15,14 +15,12 @@ 15 15 16 16 {{/code}} 17 17 18 - 1.Make the"build"and"install"targets depend upon "javaclient" just prior to the "ssdd" target.18 +Then you need to make the build and install targets depend upon "javaclient" just prior to the "ssdd" target. 19 19 20 20 {{code}} 21 21 22 22 <target name="build" depends="setProps,init.build,build.woapp,javaclient,ssdd,war" /> 23 23 24 -{{/code}} 25 - 26 -{{code}} 27 27 <target name="install" depends="setProps,init.install,build.woapp,javaclient,ssdd,war" /> 25 + 28 28 {{/code}}