Wiki source code of Home

Version 1186.1 by David Avendasora on 2010/11/30 06:32

Hide last authors
David Avendasora 1186.1 1 This site replaces the [[wikibook>>http://en.wikibooks.org/wiki/Programming:WebObjects]], which has been deprecated.
2 [[image:hero_webobjects.jpg||align="right" vspace="4" hspace="4"]]
fisherja 1057.1 3
David Avendasora 1176.1 4 **WebObjects** is an integrated suite of Java frameworks for rapidly developing scalable, sophisticated Internet and Enterprise applications. It is the most mature platform available for enterprise-level web, web service and java client (three-tier client-server) application development.
5
David Avendasora 1080.1 6 It provides a powerful and mature set of Object-Oriented frameworks for managing Object-Relational Mapping ([[ORM>>http://en.wikipedia.org/wiki/Object-relational_mapping]]) to any JDBC-compliant database, Session Management, Undo/Redo/Revert, Ajax, Web Services, full Java Client applications, Rapid Application Development, Streaming Media, file upload/download and many other popular internet and enterprise application technologies.
fisherja 1057.1 7
David Avendasora 1080.1 8 Originally developed by NeXT Computer Inc., in the mid 1990s, it was ported by Apple to Mac OS X and Mac OS X Server in Objective-C and then completely translated to Java for version 5.0.
Pascal Robert 602.1 9
David Avendasora 1186.1 10 It is an incredibly flexible set of frameworks exemplified by Apple's own use of it for such varied applications as the [[iTunes Music Store>>http://phobos.apple.com/WebObjects/MZStore.woa/wa/storeFront]], the on-line [[Apple Store>>http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore/]], the [[.Mac>>http://www.mac.com/WebObjects/Welcome]] group of services including Web-Mail and Calendaring and their [[website>>http://www.apple.com]]. as well as many applications developed and deployed by [[others>>http://www.dyned.com/cgi-bin/WebObjects/WOShowcase]].
Pascal Robert 602.1 11
David Avendasora 1176.1 12 It has a very active [[developer community>>http://www.wocommunity.org/]] and offers excellent support through the very popular [[WebObjects Development>>http://lists.apple.com/mailman/listinfo/webobjects-dev]] and [[WebObjects Deployment>>http://lists.apple.com/mailman/listinfo/webobjects-deploy]] email lists.
Quinton Dolan 1078.1 13
David Avendasora 1186.1 14 In addition Apple, Inc. also provides [[free>>http://www.apple.com/support/webobjects/]] and [[paid-for>>http://www.apple.com/services/technicalsupport/]] support options.
15
David Avendasora 1080.1 16 |= Contents
David Avendasora 1186.1 17 | {{section}}\ {toc:style=disc|indent=20px}\ \
18 \ \
19 \ \
20 \ \
21 \
22 {{/section}}
David Avendasora 1080.1 23
24 = Introduction =
25
26 * [[What is WebObjects?>>Overview-What is WebObjects]]
27 * [[History>>Overview-History]]
Ravi Mendis 1126.1 28 * [[Foundation>>Overview-Foundation]]
David Avendasora 1080.1 29 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
David Holt 1168.1 30 * [[Scratch Setup of WebObjects Development on a Mac>>Scratch Setup of WebObjects Development on a Mac]]
Ravi Mendis 1126.1 31 * [[Hands On Hello World - Your First WebObjects Application>>Hello World - Your First WebObjects Application]]
Pascal Robert 602.1 32 * [[Recent Changes>>http://wiki.objectstyle.org/confluence/pages/recentlyupdated.action?key=WO]]
33 * [[WebObjects for Database Developers]]
34 * [[Naming Conventions]]
35
David Avendasora 1080.1 36 = License =
Pascal Robert 602.1 37
David Avendasora 1176.1 38 As of WebObjects 5.3, the deployment of WebObjects-based server applications is now permitted on any platform. The Xcode 3.1 license (The last that included any reference to WebObjects) stated this:
Pascal Robert 602.1 39
David Avendasora 1176.1 40 D. WebObjects Software. Subject to the terms and conditions of this License, you may incorporate the WebObjects Software included in the Developer Software into application programs (both client and server) that you develop on an Apple-branded computer. You may also reproduce and distribute the WebObjects Software unmodified, in binary form only, on any platform but solely as incorporated into such application programs and only for use by end-users under terms that are at least as restrictive of those set forth in this License (including, without limitation, Sections 2, 6 and 7 of this License).For avoidance of doubt, you may not distribute the WebObjects Software on a stand-alone basis, and you may not develop application programs using the WebObjects Software (or any portion thereof) on any non-Apple branded computer.
Pascal Robert 602.1 41
David Avendasora 1080.1 42 = Foundation =
Pascal Robert 602.1 43
Ravi Mendis 1126.1 44 * [[Foundation>>Overview-Foundation]]
David Avendasora 1080.1 45 * [[Key-Value Coding>>Overview-Key Value Coding]]
Pascal Robert 602.1 46
David Avendasora 1080.1 47 = Enterprise Object Framework (EOF) =
Pascal Robert 602.1 48
David Avendasora 1080.1 49 == Introduction ==
Pascal Robert 602.1 50
David Avendasora 1080.1 51 * [[Overview>>EOF-Overview]]
Pascal Robert 602.1 52
David Avendasora 1080.1 53 == Modeling ==
Pascal Robert 602.1 54
Ravi Mendis 1126.1 55 * [[Overview>>EOF-Modeling-Overview]]
Pascal Robert 602.1 56 * Required Reading
David Avendasora 1080.1 57 ** [[Entities>>EOF-Modeling-Entities]]
58 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
59 ** [[Attributes>>EOF-Modeling-Attributes]]
Pascal Robert 602.1 60 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
David Avendasora 1080.1 61 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
Ravi Mendis 1126.1 62 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
Pascal Robert 602.1 63 ** [[SQL Generation>>Programming__WebObjects-EOF-Modeling-SQL Generation]]
64 ** [[Code Generation>>Programming__WebObjects-EOF-Modeling-Code Generation]]
65 ** [[Reverse Engineering>>Programming__WebObjects-EOF-Modeling-Reverse Engineering]]
David Avendasora 1080.1 66 ** [[Common Pitfalls and Troubleshooting>>EOF-Modeling-Common Pitfalls and Troubleshooting]]
67 ** [[EOModeler>>EOF-Modeling-EOModeler]]
68 ** [[EOModeler on Windows>>EOF-Modeling-EOModeler on Windows]]
69 ** [[Booleans>>EOF-Modeling-Booleans]]
Pascal Robert 602.1 70 * Advanced
Ravi Mendis 1126.1 71 ** [[JDBC>>EOF-Modeling-JDBC]]
Pascal Robert 602.1 72 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
73 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
David Avendasora 1080.1 74 ** [[Prototypes>>EOF-Modeling-Prototypes]]
Pascal Robert 602.1 75 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
David Avendasora 1080.1 76 ** [[Custom Attributes>>EOF-Modeling-Custom Attributes]]
77 ** [[Strategy Design Pattern as an Alternative to Entity Inheritance>>Using Strategy Design Pattern with EOF]]
78 * [[Examples>>EOF-Modeling-Examples]]
Pascal Robert 602.1 79
David Avendasora 1080.1 80 == Using EOF ==
Pascal Robert 602.1 81
David Avendasora 1080.1 82 * [[Overview>>EOF-Using EOF-Overview]]
Pascal Robert 602.1 83 * Required Reading
David Avendasora 1080.1 84 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
Pascal Robert 602.1 85 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
David Avendasora 1080.1 86 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
Pascal Robert 602.1 87 ** [[EO Object Store>>Programming__WebObjects-EOF-Using EOF-EO Object Store]]
88 ** [[EO Database>>Programming__WebObjects-EOF-Using EOF-EO Database]]
89 ** [[EO Adaptor>>Programming__WebObjects-EOF-Using EOF-EO Adapter]]
David Avendasora 1080.1 90 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
Ravi Mendis 1126.1 91 ** [[Faulting>>EOF-Using EOF-Faulting]]
92 ** [[Fetching>>EOF-Using EOF-Fetching]]
Pascal Robert 602.1 93 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
Ravi Mendis 1126.1 94 ** [[Deleting>>EOF-Using EOF-Deleting]]
David Avendasora 1080.1 95 ** [[Caching and Freshness>>EOF-Using EOF-Caching and Freshness]]
96 ** [[Optimistic Locking>>EOF-Using EOF-Optimistic Locking]]
97 ** [[Memory Management>>EOF-Using EOF-Memory Management]]
98 ** [[EOF Best Practices>>EOF-Using EOF-EOF Best Practices]]
99 ** [[Configuration Settings>>EOF-Using EOF-Configuration Settings]]
100 ** [[Common Pitfalls and Troubleshooting>>EOF-Using EOF-Common Pitfalls and Troubleshooting]]
Pascal Robert 602.1 101 * Advanced
David Avendasora 1080.1 102 ** [[EOGenerator>>EOF-Using EOF-EOGenerator]]
103 ** [[Logging>>EOF-Using EOF-Logging]]
104 ** [[EOF Performance Tuning>>EOF-Using EOF-EOF Performance Tuning]]
105 ** [[Primary Keys>>EOF-Using EOF-Primary Keys]]
106 ** [[Compound Primary Keys>>EOF-Using EOF-Compound Primary Keys]]
107 ** [[Concurrency>>EOF-Using EOF-Concurrency]]
108 ** [[Validation>>EOF-Using EOF-Validation]]
109 ** [[Database Adaptors and Plugins>>EOF-Using EOF-Database Adaptors and Plugins]]
110 ** [[Undo and Redo>>EOF-Using EOF-Undo and Redo]]
Pascal Robert 602.1 111 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
David Avendasora 1080.1 112 ** [[EOSharedEditingContext>>EOF-Using EOF-EOSharedEditingContext]]
113 ** [[Raw Rows>>EOF-Using EOF-Raw Rows]]
114 ** [[Batch Fetching>>EOF-Using EOF-Batch Fetching]]
115 ** [[Fetch Limits>>EOF-Using EOF-Fetch Limits]]
116 ** [[Bulk Operations>>EOF-Using EOF-Bulk Operations]]
117 ** [[Schema Changes>>EOF-Using EOF-Schema Changes]]
118 ** [[Delegates and Notifications>>EOF-Using EOF-Delegates and Notifications]]
119 ** [[Multiple Stacks or Instances>>EOF-Using EOF-Multiple Stacks or Instances]]
120 ** [[Custom Qualifiers>>EOF-Using EOF-Custom Qualifiers]]
121 ** [[Localization and Internationalization>>EOF-Using EOF-Localization and Internationalization]]
122 ** [[Default Values>>EOF-Using EOF-Default Values]]
123 ** [[Custom EOAdaptor>>EOF-Using EOF-Custom EOAdaptor]]
124 ** [[EOF Traces>>EOF-Using EOF-EOF Traces]]
125 ** [[Problems>>EOF-Using EOF-Problems]]
126 * [[Tips and Tricks>>EOF-Using EOF-Tips and Tricks]]
Pascal Robert 602.1 127 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
David Avendasora 1080.1 128 * [[Help//EOF//is//Doing//Strange//Things//>>EOF-Using EOF-Breaking EOF]]
Pascal Robert 602.1 129
David Avendasora 1080.1 130 = Web Applications =
Pascal Robert 602.1 131
David Avendasora 1080.1 132 == Introduction ==
Pascal Robert 602.1 133
Ravi Mendis 1126.1 134 * [[Overview>>Web Applications-Overview]]
Pascal Robert 602.1 135
David Avendasora 1080.1 136 == Development ==
Pascal Robert 602.1 137
138 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
Ravi Mendis 1126.1 139 * [[Beginner's Guide>>Development-Beginner's Guide]]
Pascal Robert 602.1 140 * Required Reading
David Avendasora 1080.1 141 ** [[Apache>>Development Tools-Running Through Apache]]
Pascal Robert 1154.1 142 ** [[WO Adaptor>>Development-WO Adaptor]]
Pascal Robert 602.1 143 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
Pascal Robert 1166.1 144 ** [[WO Session>>Development-WO Session]]
Pascal Robert 602.1 145 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
Pascal Robert 1160.1 146 *** [[Binding Synchronization>>Development-WO Component-Binding Synchronization]]
Pascal Robert 1162.1 147 *** [[Code, Templates, and WODs>>Development-WO Component-Code Template and WODs]]
Ravi Mendis 1126.1 148 *** [[Built-in Components>>Development-WO Component-Built-in Components]]
149 ** [[Component Actions>>Development-Component Actions]]
150 ** [[Direct Actions>>Development-Direct Actions]]
Pascal Robert 602.1 151 ** [[Request-Response Loop>>Programming__WebObjects-Web Applications-Development-Request-Response Loop]]
152 ** [[Using EOF in a WOA>>Programming__WebObjects-Web Applications-Development-Using EOF in a WOA]]
Ravi Mendis 1126.1 153 ** [[Authentication and Security>>Development-Authentication and Security]]
154 ** [[General Best Practices>>Development-General Best Practices]]
David Holt 1168.1 155 ** [[WOForm Best Practices>>Development-WOForm Best Practices]]
Pascal Robert 1162.1 156 ** [[WODisplayGroup>>Development-WODisplayGroup]]
Ravi Mendis 1126.1 157 ** [[Debugging Techniques>>Development-Debugging Techniques]]
158 ** [[Direct Connect>>Development-Direct Connect]]
159 ** [[Frameworks>>Development-Frameworks]]
160 ** [[Ajax>>Development-Ajax]]
161 ** [[CSS>>Development-CSS]]
Pascal Robert 1146.1 162 ** [[Sending Emails>>Development-Sending Emails]]
Pascal Robert 602.1 163 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
164 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
Ravi Mendis 1126.1 165 ** [[Common Pitfalls and Troubleshooting>>Development-Common Pitfalls and Troubleshooting]]
Pascal Robert 602.1 166 * Advanced
Ravi Mendis 1126.1 167 ** [[Application Server URL Creation>>Development-UrlCreation]]
168 ** [[Audit Trails>>Development-Audit Trails]]
169 ** [[Backtracking>>Development-Backtracking]]
Pascal Robert 602.1 170 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
Pascal Robert 1154.1 171 ** [[Image Thumbnailing>>Development-Thumbnailing]]
Ravi Mendis 1126.1 172 ** [[Database vs Filesystem (aka Images in the Database?)>>Development-Database vs Filesystem]]
Pascal Robert 602.1 173 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
Pascal Robert 1146.1 174 ** [[Stateless Components>>Development-Stateless Components]]
Pascal Robert 602.1 175 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
Pascal Robert 1162.1 176 ** [[WOEvents and Logging>>Development-WOEvents and Logging]]
Pascal Robert 1134.1 177 ** [[PDF Generation>>Development-PDF Generation]]
Ravi Mendis 1126.1 178 ** [[Excel Generation>>Development-Excel Generation]]
Pascal Robert 1146.1 179 ** [[SSL>>Development-SSL requests via https protocol]]
David Holt 1168.1 180 ** [[Localization and Internationalization>>Development-Localization and Internationalization]]
Pascal Robert 1146.1 181 ** [[Testing and JUnit>>Development-Testing and JUnit]]
Ravi Mendis 1126.1 182 ** [[Custom Error Handling>>Development-Custom Error Handling]]
Pascal Robert 602.1 183 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
Ravi Mendis 1126.1 184 ** [[Custom Templates>>Development-Custom Templates]]
185 ** [[Calling Commandline Applications>>Calling Commandline Applications]]
Pascal Robert 602.1 186 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
Pascal Robert 1144.1 187 ** [[Profiling WO Apps>>Development-Profiling WO Apps]]
Ravi Mendis 1126.1 188 ** [[J2EE Integration>>Development-J2EE Integration]]
Pascal Robert 1154.1 189 ** [[Third Party Jars>>Development-Third Party Jars]]
Ravi Mendis 1126.1 190 ** [[Generating Static Pages>>Development-Generating Static Pages]]
David Avendasora 1080.1 191 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
Ravi Mendis 1126.1 192 ** [[Custom Resource Manager>>Development-Custom Resource Manager]]
Pascal Robert 1134.1 193 ** [[Persistent Sessions>>Development-Persistent Sessions]]
Ravi Mendis 1126.1 194 ** [[How Forms Work>>Development-How Forms Work]]
195 * [[Development on Windows>>Development-Development on Windows]]
Pascal Robert 1154.1 196 * [[Tips and Tricks>>Development-Tips and Tricks]]
Pascal Robert 602.1 197 * Examples
Ravi Mendis 1126.1 198 ** [[Hands On Hello World>>Hello World - Your First WebObjects Application]]
199 ** [[Page Layout>>Development-Examples-Page Layout]]
200 ** [[List Components>>Development-Examples-List Components]]
201 ** [[Calendar Component>>Development-Examples-Calendar Component]]
202 ** [[Path Inspector>>Development-Examples-Path Inspector]]
203 ** [[Alphabetic List>>Development-Examples-Alphabetic List]]
204 ** [[Login>>Development-Examples-Login]]
205 ** [[Anchors>>Development-Examples-Anchors]]
206 ** [[Open Link in New Window>>Development-Examples-Open Link in New Window]]
207 ** [[Return a File>>Development-Examples-Return a File]]
Pascal Robert 602.1 208
David Avendasora 1080.1 209 == Deployment ==
Pascal Robert 602.1 210
David Avendasora 1186.1 211 * [[Overview>>Deployment-Overview]]
Pascal Robert 602.1 212 * Required Reading
David Avendasora 1176.1 213 ** [[Apache>>Configuring Apache for WebObjects]]
Ravi Mendis 1126.1 214 ** [[Memory Settings>>Deployment-Memory Settings]]
215 ** [[Standard Deployment>>Deployment-Standard Deployment]]
David Avendasora 1176.1 216 ** [[wotaskd>>wotaskd]]
217 ** [[Java Monitor>>JavaMonitor]]
David Avendasora 1186.1 218 ** [[Logging>>Deployment-Logging]]
219 ** [[Split Install>>Deployment-Split Install]]
David Avendasora 1176.1 220 ** [[Common Pitfalls and Troubleshooting>>Troubleshooting Deployment]]
David Avendasora 1080.1 221
Pascal Robert 602.1 222 * Advanced
David Avendasora 1176.1 223 ** [[WOStats>>Troubleshooting WOStats]]
224 ** [[Additional Monitoring>>Monitoring your deployed Applications]]
David Avendasora 1186.1 225 ** [[Debugging wotaskd and JavaMonitor on OS X]]
226 ** [[Scheduled Restart>>Deployment-Scheduled Restart]]
Pascal Robert 602.1 227 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
David Avendasora 1176.1 228 ** [[Tomcat Deployment>>Deploying with Tomcat]]
Pascal Robert 602.1 229 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
David Avendasora 1186.1 230 ** [[Killing WOA Processes>>Deployment-Killing WOA Processes]]
231 ** [[Debugging Frozen Deployed Instances>>Deployment-Debugging Frozen Deployed Instances]]
232 ** [[WOAdaptorInfo>>Deployment-WOAdaptorInfo]]
David Avendasora 1080.1 233
Pascal Robert 602.1 234 * Platform Specifics
David Avendasora 1176.1 235 ** [[Mac OS X Server>>Deploying on Mac OS X Server]]
Ravi Mendis 1126.1 236 ** [[Linux>>Web Applications-Deployment-Linux]]
David Avendasora 1176.1 237 ** [[Solaris WO5.3.3>>Deploying on Solaris (WO 5.3.3)]]
238 ** [[FreeBSD WO5.2>>Deploying on FreeBSD (WO 5.2)]]
239 ** [[FreeBSD WO5.3>>Deploying on FreeBSD (WO 5.3)]]
240 ** [[FreeBSD 6.2 WO 5.3.3>>Deploying on FreeBSD 6.2 (WO5.3.3)]]
241 ** [[FreeBSD 6.x WO 5.3.3 using port system with many options>>Deploying on FreeBSD 6.x (WO 5.3.3 port)]]
242 ** [[Legacy Windows (WO 5.1/5.2 on WinNT/2000)>>Deploying on Windows (WO 5.1)]]
243 ** [[Current Windows (WO 5.4 on Win2003)>>Deploying on Windows]]
David Avendasora 1080.1 244
Pascal Robert 602.1 245 * Helpful Tools & Shellscripts
David Avendasora 1176.1 246 ** [[Capistrano (Overview)>>Automating Application Deployment with Capistrano (Overview)]]
Pascal Robert 602.1 247
David Avendasora 1080.1 248 = Web Services =
Pascal Robert 602.1 249
250 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
251 * Required Reading
David Avendasora 1080.1 252 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
253 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
Pascal Robert 602.1 254 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
David Avendasora 1080.1 255 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
Pascal Robert 602.1 256 * General Info
David Avendasora 1080.1 257 ** [[Instructions for .NET consuming Direct to WebServices>>Web Services-Instructions for .NET consuming Direct to WebServices]]
258 ** [[Testing Services with Terminal>>Web Services-Testing Services with Terminal]]
Pascal Robert 602.1 259 * Advanced
David Avendasora 1080.1 260 ** [[Sending Large Data>>Web Services-Sending Large Data]]
261 ** [[How to Trust Any SSL Certificate>>Web Services-How to Trust Any SSL Certificate]]
262 ** [[Problems>>Web Services-Problems]]
263 ** [[Controlling Enterprise Object Serialisation>>Web Services-Controlling Enterprise Object Serialisation]]
264 ** [[Controlling WSDL Service Location>>Web Services-Controlling WSDL Service Location]]
265 ** [[Integration with WebServicesCore on MacOS-X>>Web Services-Integration with WebServicesCore on MacOS-X]]
266 ** [[Working With Temporary GlobalIDs>>Web Services-Working With Temporary GlobalIDs]]
Pascal Robert 602.1 267
268 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
269
Kieran Kelleher 1174.1 270 = Direct To Web (D2W) =
fisherja 1057.1 271
David Avendasora 1176.1 272 {{include value="Direct To Web (D2W and ERD2W)"}}{{/include}}
Kieran Kelleher 1174.1 273
David Holt 1088.1 274 = Java Client, Direct to Java Client (D2JC) =
275
David Avendasora 1080.1 276 * [[Overview>>Java Client-Overview]]
David Holt 1088.1 277 * Direct to Java Client
278 ** [[Getting Started with Direct to Java Client (D2JC)>>Getting Started with Direct to Java Client (D2JC)]]
David Avendasora 1080.1 279 * [[Required Reading>>Java Client-Required Reading]]
280 * Building
281 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
David Holt 1088.1 282 ** [[WebStart WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
David Avendasora 1080.1 283 ** [[Additional Java Client files and settings>>Java Client-Additional Files and Settings]]
284 * [[Trouble-Shooting>>Java Client-Trouble Shooting]]
285 * [[Complimentary Frameworks>>Java Client-Complimentary Frameworks]]
286 * [[Advanced>>Programming__WebObjects-Java Client-Advanced]]
287 * [[Interface Builder>>Programming__WebObjects-Java Client-Interface Builder]]
288 * [[svn>>Programming__WebObjects-Java Client-svn]]
289 * [[Examples>>Programming__WebObjects-Java Client-Examples]]
fisherja 1057.1 290
David Avendasora 1080.1 291 = Complementary Frameworks =
292
293 == Project WONDER ==
294
295 * [[Overview>>Project WONDER-Overview]]
Pascal Robert 602.1 296 * Required Reading
David Holt 1168.1 297 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
David Avendasora 1080.1 298 ** [[Quickstart>>Project WONDER-Quickstart]]
299 ** [[History>>Project WONDER-History]]
David Holt 1088.1 300 ** [[Properties File Settings>>Project Wonder Properties Files]]
Pascal Robert 602.1 301 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
David Avendasora 1080.1 302 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
David Holt 1088.1 303 *** [[AjaxLook>>Project WONDER-Frameworks-AjaxLook]]
304 *** [[BTBusinessLogic>>Project WONDER-Frameworks-BTBusinessLogic]]
305 *** [[DRGrouping>>Project WONDER-Frameworks-DRGrouping]]
306 *** [[DerbyPlugIn>>Project WONDER-Frameworks-DerbyPlugIn]]
307 *** [[ERAttachment>>Project WONDER-Frameworks-ERAttachment]]
308 *** [[ERCaching>>Project WONDER-Frameworks-ERCaching]]
David Avendasora 1080.1 309 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
David Holt 1088.1 310 *** [[ERCaptcha>>Project WONDER-Frameworks-ERCaptcha]]
David Avendasora 1080.1 311 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
David Holt 1088.1 312 *** [[ERChronic>>Project WONDER-Frameworks-ERChronic]]
Pascal Robert 602.1 313 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
314 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
David Holt 1088.1 315 *** [[ERDivaLook>>ERDivaLook]]
David Avendasora 1176.1 316 *** [[ERDivaliteLook>>ERDivaliteLook]]
David Holt 1088.1 317 *** [[ERExcelLook>>Project WONDER-Frameworks-ERExcelLook]]
David Avendasora 1080.1 318 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
319 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
David Holt 1088.1 320 *** [[ERIUI>>Project WONDER-Frameworks-ERIUI]]
321 *** [[ERIndexing>>Project WONDER-Frameworks-ERIndexing]]
322 *** [[ERJGroupsSynchronizer>>Project WONDER-Frameworks-ERJGroupsSynchronizer]]
323 *** [[ERJQuery>>ERJQuery]]
324 *** [[ERJars>>Project WONDER-Frameworks-ERJars]]
David Avendasora 1080.1 325 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
David Holt 1088.1 326 *** [[ERXNavigation>>Project WONDER-Frameworks-ERXNavigation]]
327 *** [[ERMoviesLogic>>Project WONDER-Frameworks-ERMoviesLogic]]
328 *** [[ERNeutralLook>>Project WONDER-Frameworks-ERNeutralLook]]
329 *** [[EROpenID>>Project WONDER-Frameworks-EROpenID]]
330 *** [[EROraclePlugIn>>Project WONDER-Frameworks-EROraclePlugIn]]
331 *** [[ERPDFGeneration>>Project WONDER-Frameworks-ERPDFGeneration]]
David Avendasora 1080.1 332 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
David Holt 1088.1 333 *** [[ERPrototaculous>>ERPrototaculous]]
Pascal Robert 602.1 334 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
David Holt 1088.1 335 *** [[ERRest>>Project WONDER-Frameworks-ERRest]]
David Avendasora 1080.1 336 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
David Holt 1088.1 337 *** [[ERTaggable>>Project WONDER-Frameworks-ERTaggable]]
338 *** [[ERWorkerChannel>>Project WONDER-Frameworks-ERWorkerChannel]]
339 *** [[ExcelGenerator>>Project WONDER-Frameworks-ExcelGeneration]]
340 *** [[FrontBasePlugIn>>Project WONDER-Frameworks-FrontBasePlugIn]]
341 *** [[GoogleChart>>Project WONDER-Frameworks-GoogleChart]]
342 *** [[JavaFSAdaptor>>Project WONDER-Frameworks-JavaFSAdaptor]]
343 *** [[JavaMemoryAdaptor>>Project WONDER-Frameworks-JavaMemoryAdaptor]]
344 *** [[JavaMonitorFramework>>Project WONDER-Frameworks-JavaMonitorFramework]]
345 *** [[JavaRESTAdaptor>>Project WONDER-Frameworks-JavaRESTAdaptor]]
Pascal Robert 602.1 346 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
David Avendasora 1080.1 347 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
David Holt 1088.1 348 *** [[SproutCore>>Project WONDER-Frameworks-SproutCore]]
David Avendasora 1080.1 349 *** [[Validity>>Project WONDER-Frameworks-Validity]]
David Holt 1088.1 350 *** [[WOJavaRebel>>Project WONDER-Frameworks-WOJavaRebel]]
351 *** [[WOLips>>Project WONDER-Frameworks-WOLips]]
David Avendasora 1080.1 352 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
353 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
David Holt 1088.1 354 *** [[WRReporting>>Project WONDER-Frameworks-WRReporting]]
355 *** [[YUI>>Project WONDER-Frameworks-YUI]]
Pascal Robert 602.1 356 ** [[Adaptors>>Programming__WebObjects-Project WONDER-Adaptors]]
357 ** [[PlugIns>>Programming__WebObjects-Project WONDER-PlugIns]]
358 * Advanced
359 * [[Examples>>Programming__WebObjects-Project WONDER-Examples]]
360 * [[Troubleshooting>>Wonder:Troubleshooting]]
361
David Avendasora 1080.1 362 == WireHose ==
Pascal Robert 602.1 363
Ravi Mendis 1126.1 364 * [[Overview>>Wirehose]]
Pascal Robert 602.1 365 * Basic Concepts
Ravi Mendis 1126.1 366 ** [[Content Management>>Wirehose-Content Management]]
David Avendasora 1080.1 367 ** [[Personalization>>Wirehose-Personalization]]
368 ** [[Access Control>>Wirehose-Access Control]]
369 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
370 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
Pascal Robert 602.1 371 * Reference
David Avendasora 1080.1 372 ** [[Installation>>Wirehose-Installation]]
Pascal Robert 602.1 373 ** Online Reference Library
374 *** [[Developer Overview>>http://www.wirehose.com/developer/DeveloperOverview.html]]
375 *** [[Java API Reference>>http://www.wirehose.com/developer/javadoc/]]
376 *** [[Properties Reference>>http://www.wirehose.com/developer/Properties.html]]
377 *** [[Database setup>>http://www.wirehose.com/developer/DatabaseSetup.html]]
378 *** [[Regular Expressions>>http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference]]
379 * Recently Deployed Sites
380 ** [[Paizo.com>>http://www.paizo.com]]
381 ** [[Eurovision Song Contest Store>>http://www.eurovisiondownloadshop.tv/cgi-bin/WebObjects/Eurovision]]
382 ** [[Bilka Music Download Store>>http://bilka.phonofile.dk/cgi-bin/WebObjects/Bilka]]
383 ** [[Jubii Music Download Store>>http://musikdownload.jubii.dk/cgi-bin/WebObjects/Jubii]]
384 ** [[Uziing (Scandanavian "Toys-R-Us") Music Store>>http://www.uziing.com/]] (UI is all in Flash)
385
David Avendasora 1080.1 386 == LEWOStuff ==
Pascal Robert 602.1 387
David Avendasora 1080.1 388 * [[Overview>>LEWOStuff-Overview]]
Pascal Robert 602.1 389
David Avendasora 1080.1 390 == GVC Frameworks and GVC.SiteMaker ==
Pascal Robert 602.1 391
David Avendasora 1080.1 392 * [[Overview>>GVC Frameworks-Overview]]
Pascal Robert 602.1 393
David Avendasora 1080.1 394 == Houdah WebObjects Frameworks ==
fisherja 1057.1 395
Ravi Mendis 1126.1 396 * [[Overview>>Houdah WebObjects Frameworks]]
David Avendasora 1080.1 397 * [[HoudahFoundation>>HoudahFoundation]]: Extensions and additions to the Foundation framework
398 * [[HoudahEOControl>>HoudahEOControl]]: Extensions and additions to the EOControl framework
399 * [[HoudahEOAccess>>HoudahEOAccess]]: Extensions and additions to the EOAccess framework
400 * [[HoudahRuleEngine>>HoudahRuleEngine]]: Rule engine used by several of the below frameworks
401 * [[HoudahEOValidation>>HoudahEOValidation]]: Rule based validation
402 * [[HoudahMessages>>HoudahMessages]]: Rule based localizable error messages
403 * [[HoudahAuditTrail>>HoudahAuditTrail]]: Tracks user and timestamp of last change
404 * [[HoudahViewComponents>>HoudahViewComponents]]: High level, large grain view components using stateless cells
405 * [[HoudahControlComponents>>HoudahControlComponents]]: Control layer for EOF based CRUD applications
406 * [[HoudahAgileComponents>>HoudahAgileComponents]]: Rule based control layer for CRUD application (D2W replacement)
407
408 == WOGWT (Google Web Toolkit Integration) ==
409
410 * [[WOGWT Website>>http://code.google.com/p/wogwt]]
411
412 == JBND Data binding ==
413
414 * [[JBND Website>>http://web.mac.com/flor385/JBND]]
415 * [[JBND Wikipedia>>http://en.wikipedia.org/wiki/JBND]]
416
David Holt 1088.1 417 == Validation Next Generation (enhanced validation) ==
418
419 [[Validation Next Generation]]
420
David Avendasora 1080.1 421 = Development Tools =
422
Pascal Robert 602.1 423 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
David Avendasora 1080.1 424 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
425 * [[Browser as a Development Tool]]
426 * [[Xcode>>Development Tools-Xcode]]
427 * [[EOModeler>>EOF-Modeling-EOModeler]]
Pascal Robert 602.1 428 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
David Avendasora 1080.1 429 * [[Running Though Apache>>Development Tools-Running Through Apache]]
Pascal Robert 1154.1 430 * [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
David Holt 1088.1 431 * [[Hudson>>Installing and Using the Hudson build server]]
432 * [[JRebel>>Using JRebel (previously called JavaRebel) with WOLips]]
Pascal Robert 602.1 433
David Avendasora 1080.1 434 = Case Studies =
Pascal Robert 602.1 435
436 * [[iTunes Music Store>>Programming__WebObjects-Case Studies-iTunes Music Store]]
437 * [[.Mac>>Programming__WebObjects-Case Studies-.Mac]]
438 * [[Apple Store>>Programming__WebObjects-Case Studies-Apple Store]]
439 * [[Original Dell Store>>Programming__WebObjects-Case Studies-Original Dell Store]]
440 * [[Radar>>Programming__WebObjects-Case Studies-Radar]]
David Avendasora 1080.1 441 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
442 * [[EverLearn>>Case Studies-EverLearn]]
443 * [[WebObjects Showcase>>WebObjects Showcase]]
444 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
Pascal Robert 602.1 445
David Avendasora 1080.1 446 = Integration with other clients =
Pascal Robert 602.1 447
David Avendasora 1080.1 448 * [[Flex]]
449 * [[Open Laszlo]]
450 * [[Mozilla XUL]]
451 * [[Cocoa]]
David Avendasora 1176.1 452 * [[Eclipse Rich Client Platform (RCP)>>WO:Eclipse Rich Client Platform (RCP)]]
Pascal Robert 602.1 453
David Avendasora 1080.1 454 = Testing =
Pascal Robert 602.1 455
David Holt 1088.1 456 * [[JUnit and TestNG>>Testing-JUnit and TestNG]]
David Avendasora 1080.1 457 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
458 * [[WOUnitTest>>Testing-WOUnitTest]]
Pascal Robert 602.1 459
David Avendasora 1080.1 460 = Database Compatibility / Comparisons =
461
462 * [[FrontBase>>Database Compatibility and Comparisons-FrontBase]]
463 * [[OpenBase>>Database Compatibility and Comparisons-OpenBase]]
464 * [[MySQL>>Database Compatibility and Comparisons-MySQL]]
465 * [[PostgreSQL>>Database Compatibility and Comparisons-PostgreSQL]]
466 * [[Oracle>>Database Compatibility and Comparisons-Oracle]]
467 * [[Sybase>>Database Compatibility and Comparisons-Sybase]]
Pascal Robert 602.1 468 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
David Avendasora 1080.1 469 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
470 * [[Informix>>Database Compatibility and Comparisons-Informix]]
Pascal Robert 602.1 471
David Avendasora 1080.1 472 = Alternative Technologies Pros / Cons =
Pascal Robert 602.1 473
David Avendasora 1080.1 474 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
Pascal Robert 602.1 475 * [[ASP.NET + Monorail>>Programming__WebObjects-Alternative Technologies-ASP.NET+Monorail]]
476 * [[JSP and Taglibs>>Programming__WebObjects-Alternative Technologies-JSP and Taglibs]]
477 * [[EJB>>Programming__WebObjects-Alternative Technologies-EJB]]
478 * [[Hibernate>>Programming__WebObjects-Alternative Technologies-Hibernate]]
479 * [[Core Data>>Programming__WebObjects-Alternative Technologies-Core Data]]
480 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
481 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
David Avendasora 1080.1 482 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
Pascal Robert 602.1 483 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
484 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
485 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
486
David Avendasora 1080.1 487 = Additional Resources =
Pascal Robert 602.1 488
David Avendasora 1080.1 489 * [[Websites>>Additional Resources-Websites]]
490 * [[Mailing Lists>>Mailing Lists]]
491 * [[Tutorials>>Tutorials]]
492 * [[Books>>Additional Resources-Books]]
Pascal Robert 602.1 493 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
David Avendasora 1080.1 494 * [[Authors>>Additional Resources-Authors]]
495 * [[Training>>Additional Resources-WebObjects Training]]
496 * [[User groups]]
497 * [[Known Bugs]]