Last modified by David Avendasora on 2009/03/30 14:20

From version 15.1
edited by David Avendasora
on 2008/01/14 10:34
Change comment: There is no comment for this version
To version 17.1
edited by David Avendasora
on 2008/01/14 09:42
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,8 +1,8 @@
1 -Your deployed application must have a jar of all the client-side classes (and any subclasses of EOGenericRecord that your client-classes extend) in the Project.woa/Contents/WebServerResources/Java/ directory. 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, client-side validation and other client-side logic not working 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 -The following are the instructions when using Ant to build:
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" target to your build.xml file.
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}}