Wiki source code of Home

Version 1175.1 by Kieran Kelleher on 2010/09/27 16:13

Show last authors
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"]]
3
4 **WebObjects** is a 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
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.
7
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.
9
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]].
11
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/archives/webobjects-dev]] and [[WO Deployment>>http://lists.apple.com/archives/webobjects-deploy]] email lists.
13
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
16 |= Contents
17 | {{section}}\ {toc:style=disc|indent=20px}\ \
18 \
19 {{/section}}
20
21 = Introduction =
22
23 * [[What is WebObjects?>>Overview-What is WebObjects]]
24 * [[History>>Overview-History]]
25 * [[Foundation>>Overview-Foundation]]
26 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
27 * [[Scratch Setup of WebObjects Development on a Mac>>Scratch Setup of WebObjects Development on a Mac]]
28 * [[Hands On Hello World - Your First WebObjects Application>>Hello World - Your First WebObjects Application]]
29 * [[Recent Changes>>http://wiki.objectstyle.org/confluence/pages/recentlyupdated.action?key=WO]]
30 * [[WebObjects for Database Developers]]
31 * [[Naming Conventions]]
32
33 = License =
34
35 As of WebObjects 5.3, the deployment of WebObjects built server applications is now permitted on any platform. The XCode license (within which WebObjects is included) reads:
36
37 D. WebObjects Software. Subject to the terms and conditions of this License, you may use, install and permit others to access the WebObjects deployment software included with the Developer Software to deploy application programs developed using Apple's WebObjects Software. You may also reproduce and distribute: (1) over a network, components of the WebObjects deployment software for installation and use by others ("Java Client End Users") on any remote computer's volatile memory (e.g. RAM) to enable Java Client functionality for the sole purpose of communicating with Apple's WebObjects Software that may be installed and executed on the same Apple-labeled computer on which you have installed the Developer Software (the "Licensed System"); and (2) both manually and automatically over a network, components of the WebObjects deployment software for installation and use by Java Client End Users on any remote computer's non-volatile memory (e.g. ROM) to enable Java Client functionality for the sole purpose of communicating with Apple's WebObjects Software that may be installed and executed on the Licensed System; provided that all distributions to Java Client End Users are made under terms that are at least as restrictive as those set forth in this License and contain the disclaimers and limitations set forth in Sections 6 and 7 of this License. Subject to the terms and conditions of this License, you may also deploy server applications built with the WebObjects Software on any platform.
38
39 Sections 6 and 7 are standard Apple license disclaimers of warranty and limitations of liability clauses. Deployment to other platforms requires WebObjects software be built as Java servlet for deployment on a servlet compatible server such as [[Apache Tomcat>>Programming__WebObjects-Web_Applications-Deployment-Tomcat_Deployment]].
40
41 = Foundation =
42
43 * [[Foundation>>Overview-Foundation]]
44 * [[Key-Value Coding>>Overview-Key Value Coding]]
45
46 = Enterprise Object Framework (EOF) =
47
48 == Introduction ==
49
50 * [[Overview>>EOF-Overview]]
51
52 == Modeling ==
53
54 * [[Overview>>EOF-Modeling-Overview]]
55 * Required Reading
56 ** [[Entities>>EOF-Modeling-Entities]]
57 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
58 ** [[Attributes>>EOF-Modeling-Attributes]]
59 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
60 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
61 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
62 ** [[SQL Generation>>Programming__WebObjects-EOF-Modeling-SQL Generation]]
63 ** [[Code Generation>>Programming__WebObjects-EOF-Modeling-Code Generation]]
64 ** [[Reverse Engineering>>Programming__WebObjects-EOF-Modeling-Reverse Engineering]]
65 ** [[Common Pitfalls and Troubleshooting>>EOF-Modeling-Common Pitfalls and Troubleshooting]]
66 ** [[EOModeler>>EOF-Modeling-EOModeler]]
67 ** [[EOModeler on Windows>>EOF-Modeling-EOModeler on Windows]]
68 ** [[Booleans>>EOF-Modeling-Booleans]]
69 * Advanced
70 ** [[JDBC>>EOF-Modeling-JDBC]]
71 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
72 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
73 ** [[Prototypes>>EOF-Modeling-Prototypes]]
74 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
75 ** [[Custom Attributes>>EOF-Modeling-Custom Attributes]]
76 ** [[Strategy Design Pattern as an Alternative to Entity Inheritance>>Using Strategy Design Pattern with EOF]]
77 * [[Examples>>EOF-Modeling-Examples]]
78
79 == Using EOF ==
80
81 * [[Overview>>EOF-Using EOF-Overview]]
82 * Required Reading
83 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
84 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
85 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
86 ** [[EO Object Store>>Programming__WebObjects-EOF-Using EOF-EO Object Store]]
87 ** [[EO Database>>Programming__WebObjects-EOF-Using EOF-EO Database]]
88 ** [[EO Adaptor>>Programming__WebObjects-EOF-Using EOF-EO Adapter]]
89 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
90 ** [[Faulting>>EOF-Using EOF-Faulting]]
91 ** [[Fetching>>EOF-Using EOF-Fetching]]
92 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
93 ** [[Deleting>>EOF-Using EOF-Deleting]]
94 ** [[Caching and Freshness>>EOF-Using EOF-Caching and Freshness]]
95 ** [[Optimistic Locking>>EOF-Using EOF-Optimistic Locking]]
96 ** [[Memory Management>>EOF-Using EOF-Memory Management]]
97 ** [[EOF Best Practices>>EOF-Using EOF-EOF Best Practices]]
98 ** [[Configuration Settings>>EOF-Using EOF-Configuration Settings]]
99 ** [[Common Pitfalls and Troubleshooting>>EOF-Using EOF-Common Pitfalls and Troubleshooting]]
100 * Advanced
101 ** [[EOGenerator>>EOF-Using EOF-EOGenerator]]
102 ** [[Logging>>EOF-Using EOF-Logging]]
103 ** [[EOF Performance Tuning>>EOF-Using EOF-EOF Performance Tuning]]
104 ** [[Primary Keys>>EOF-Using EOF-Primary Keys]]
105 ** [[Compound Primary Keys>>EOF-Using EOF-Compound Primary Keys]]
106 ** [[Concurrency>>EOF-Using EOF-Concurrency]]
107 ** [[Validation>>EOF-Using EOF-Validation]]
108 ** [[Database Adaptors and Plugins>>EOF-Using EOF-Database Adaptors and Plugins]]
109 ** [[Undo and Redo>>EOF-Using EOF-Undo and Redo]]
110 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
111 ** [[EOSharedEditingContext>>EOF-Using EOF-EOSharedEditingContext]]
112 ** [[Raw Rows>>EOF-Using EOF-Raw Rows]]
113 ** [[Batch Fetching>>EOF-Using EOF-Batch Fetching]]
114 ** [[Fetch Limits>>EOF-Using EOF-Fetch Limits]]
115 ** [[Bulk Operations>>EOF-Using EOF-Bulk Operations]]
116 ** [[Schema Changes>>EOF-Using EOF-Schema Changes]]
117 ** [[Delegates and Notifications>>EOF-Using EOF-Delegates and Notifications]]
118 ** [[Multiple Stacks or Instances>>EOF-Using EOF-Multiple Stacks or Instances]]
119 ** [[Custom Qualifiers>>EOF-Using EOF-Custom Qualifiers]]
120 ** [[Localization and Internationalization>>EOF-Using EOF-Localization and Internationalization]]
121 ** [[Default Values>>EOF-Using EOF-Default Values]]
122 ** [[Custom EOAdaptor>>EOF-Using EOF-Custom EOAdaptor]]
123 ** [[EOF Traces>>EOF-Using EOF-EOF Traces]]
124 ** [[Problems>>EOF-Using EOF-Problems]]
125 * [[Tips and Tricks>>EOF-Using EOF-Tips and Tricks]]
126 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
127 * [[Help//EOF//is//Doing//Strange//Things//>>EOF-Using EOF-Breaking EOF]]
128
129 = Web Applications =
130
131 == Introduction ==
132
133 * [[Overview>>Web Applications-Overview]]
134
135 == Development ==
136
137 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
138 * [[Beginner's Guide>>Development-Beginner's Guide]]
139 * Required Reading
140 ** [[Apache>>Development Tools-Running Through Apache]]
141 ** [[WO Adaptor>>Development-WO Adaptor]]
142 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
143 ** [[WO Session>>Development-WO Session]]
144 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
145 *** [[Binding Synchronization>>Development-WO Component-Binding Synchronization]]
146 *** [[Code, Templates, and WODs>>Development-WO Component-Code Template and WODs]]
147 *** [[Built-in Components>>Development-WO Component-Built-in Components]]
148 ** [[Component Actions>>Development-Component Actions]]
149 ** [[Direct Actions>>Development-Direct Actions]]
150 ** [[Request-Response Loop>>Programming__WebObjects-Web Applications-Development-Request-Response Loop]]
151 ** [[Using EOF in a WOA>>Programming__WebObjects-Web Applications-Development-Using EOF in a WOA]]
152 ** [[Authentication and Security>>Development-Authentication and Security]]
153 ** [[General Best Practices>>Development-General Best Practices]]
154 ** [[WOForm Best Practices>>Development-WOForm Best Practices]]
155 ** [[WODisplayGroup>>Development-WODisplayGroup]]
156 ** [[Debugging Techniques>>Development-Debugging Techniques]]
157 ** [[Direct Connect>>Development-Direct Connect]]
158 ** [[Frameworks>>Development-Frameworks]]
159 ** [[Ajax>>Development-Ajax]]
160 ** [[CSS>>Development-CSS]]
161 ** [[Sending Emails>>Development-Sending Emails]]
162 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
163 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
164 ** [[Common Pitfalls and Troubleshooting>>Development-Common Pitfalls and Troubleshooting]]
165 * Advanced
166 ** [[Application Server URL Creation>>Development-UrlCreation]]
167 ** [[Audit Trails>>Development-Audit Trails]]
168 ** [[Backtracking>>Development-Backtracking]]
169 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
170 ** [[Image Thumbnailing>>Development-Thumbnailing]]
171 ** [[Database vs Filesystem (aka Images in the Database?)>>Development-Database vs Filesystem]]
172 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
173 ** [[Stateless Components>>Development-Stateless Components]]
174 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
175 ** [[WOEvents and Logging>>Development-WOEvents and Logging]]
176 ** [[PDF Generation>>Development-PDF Generation]]
177 ** [[Excel Generation>>Development-Excel Generation]]
178 ** [[SSL>>Development-SSL requests via https protocol]]
179 ** [[Localization and Internationalization>>Development-Localization and Internationalization]]
180 ** [[Testing and JUnit>>Development-Testing and JUnit]]
181 ** [[Custom Error Handling>>Development-Custom Error Handling]]
182 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
183 ** [[Custom Templates>>Development-Custom Templates]]
184 ** [[Calling Commandline Applications>>Calling Commandline Applications]]
185 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
186 ** [[Profiling WO Apps>>Development-Profiling WO Apps]]
187 ** [[J2EE Integration>>Development-J2EE Integration]]
188 ** [[Third Party Jars>>Development-Third Party Jars]]
189 ** [[Generating Static Pages>>Development-Generating Static Pages]]
190 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
191 ** [[Custom Resource Manager>>Development-Custom Resource Manager]]
192 ** [[Persistent Sessions>>Development-Persistent Sessions]]
193 ** [[How Forms Work>>Development-How Forms Work]]
194 * [[Development on Windows>>Development-Development on Windows]]
195 * [[Tips and Tricks>>Development-Tips and Tricks]]
196 * Examples
197 ** [[Hands On Hello World>>Hello World - Your First WebObjects Application]]
198 ** [[Page Layout>>Development-Examples-Page Layout]]
199 ** [[List Components>>Development-Examples-List Components]]
200 ** [[Calendar Component>>Development-Examples-Calendar Component]]
201 ** [[Path Inspector>>Development-Examples-Path Inspector]]
202 ** [[Alphabetic List>>Development-Examples-Alphabetic List]]
203 ** [[Login>>Development-Examples-Login]]
204 ** [[Anchors>>Development-Examples-Anchors]]
205 ** [[Open Link in New Window>>Development-Examples-Open Link in New Window]]
206 ** [[Return a File>>Development-Examples-Return a File]]
207
208 == Deployment ==
209
210 * [[Overview>>Deployment-Overview]]
211 * Required Reading
212 ** [[Apache>>Deployment-Apache]]
213 ** [[Memory Settings>>Deployment-Memory Settings]]
214 ** [[Standard Deployment>>Deployment-Standard Deployment]]
215 ** [[wotaskd>>Deployment-wotaskd]]
216 ** [[Java Monitor>>Deployment-Java Monitor]]
217 ** [[Logging>>Deployment-Logging]]
218 ** [[Split Install>>Deployment-Split Install]]
219 ** [[Common Pitfalls and Troubleshooting>>Deployment-Common Pitfalls and Troubleshooting]]
220
221 * Advanced
222 ** [[WOStats>>Deployment-WOStats]]
223 ** [[Additional Monitoring>>Deployment-Additional Monitoring]]
224 ** [[Debugging wotaskd and JavaMonitor]]
225 ** [[Scheduled Restart>>Deployment-Scheduled Restart]]
226 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
227 ** [[J2EE and Servlet Deployment>>Deployment-J2EE and Servlet Deployment]]
228 ** [[Tomcat Deployment>>Deployment-Tomcat Deployment]]
229 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
230 ** [[Killing WOA Processes>>Deployment-Killing WOA Processes]]
231 ** [[Debugging Frozen Deployed Instances>>Deployment-Debugging Frozen Deployed Instances]]
232 ** [[WOAdaptorInfo>>Deployment-WOAdaptorInfo]]
233
234 * Platform Specifics
235 ** [[Mac OS X Server>>Deployment-Mac OS X Server]]
236 ** [[Linux>>Web Applications-Deployment-Linux]]
237 ** [[Solaris WO5.3.3>>Deployment-Solaris WO5.3.3]]
238 ** [[FreeBSD WO5.2>>Deployment-FreeBSD WO5.2]]
239 ** [[FreeBSD WO5.3>>Deployment-FreeBSD WO5.3]]
240 ** [[FreeBSD 6.2 WO 5.3.3>>Deployment-FreeBSD 6.2 WO5.3.3]]
241 ** [[FreeBSD 6.x WO 5.3.3 using port system with many options>>Deployment-FreeBSD 6.x WO 5.3.3 port]]
242 ** [[Legacy Windows (WO 5.1/5.2 on WinNT/2000)>>Deployment-Windows]]
243 ** [[Current Windows (WO 5.4 on Win2003)>>Deployment-Windows WO 5.3 - WO 5.4]]
244
245 * Helpful Tools & Shellscripts
246 ** [[Capistrano (Overview)>>Deployment-Capistrano (Overview)]]
247
248 = Web Services =
249
250 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
251 * Required Reading
252 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
253 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
254 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
255 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
256 * General Info
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]]
259 * Advanced
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]]
267
268 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
269
270 = Direct To Web (D2W) =
271
272 Please see [[Direct To Web (D2W and ERD2W)>>Direct To Web (D2W and ERD2W)]]
273
274 * Direct to Web
275 ** [[Overview - What is Direct to Web?>>What is Direct to Web]]
276 ** [[D2W Rule System>>The D2W Rule System]]
277 ** [[D2W Rules Reference - Cookbook - FAQ>>D2W Rules Reference - Cookbook - FAQ]]
278 ** [[Direct to Web>>Direct-To-Web]] Getting started (older docs than the overview and rule system docs)
279 ** See David Leber's presentation [[available as part of the WOWODC West 2009 conference materials>>http://www.wocommunity.org/wowodc09/]]
280 * Advanced
281 ** ERD2W - part of the WONDER frameworks
282 ** [[(ER)D2W Flow Control>>D2W Flow Control]]
283 ** See Anjo Krank's presentation [[available as part of the WOWODC 2008 conference materials>>http://www.wocommunity.org/wowodc08/]]
284 ** [[Using ERD2WWizardCreationPage]]
285 * Examples
286 ** [[Project Wonder Bugtracker Application completely built with D2W>>WONDER:Getting Started with BugTracker]]
287 ** [[David Leber's ERExcelLook screencast>>http://davidleber.net/?p=369]]
288 ** [[ERDivaLook framework and example application (included in Wonder)>>ERDivaLook]]
289 * Additional Documents and Tutorials
290 ** [[Changing the Rules with Direct to Web]]
291
292 = Java Client, Direct to Java Client (D2JC) =
293
294 * [[Overview>>Java Client-Overview]]
295 * Direct to Java Client
296 ** [[Getting Started with Direct to Java Client (D2JC)>>Getting Started with Direct to Java Client (D2JC)]]
297 * [[Required Reading>>Java Client-Required Reading]]
298 * Building
299 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
300 ** [[WebStart WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
301 ** [[Additional Java Client files and settings>>Java Client-Additional Files and Settings]]
302 * [[Trouble-Shooting>>Java Client-Trouble Shooting]]
303 * [[Complimentary Frameworks>>Java Client-Complimentary Frameworks]]
304 * [[Advanced>>Programming__WebObjects-Java Client-Advanced]]
305 * [[Interface Builder>>Programming__WebObjects-Java Client-Interface Builder]]
306 * [[svn>>Programming__WebObjects-Java Client-svn]]
307 * [[Examples>>Programming__WebObjects-Java Client-Examples]]
308
309 = Complementary Frameworks =
310
311 == Project WONDER ==
312
313 * [[Overview>>Project WONDER-Overview]]
314 * Required Reading
315 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
316 ** [[Quickstart>>Project WONDER-Quickstart]]
317 ** [[History>>Project WONDER-History]]
318 ** [[Properties File Settings>>Project Wonder Properties Files]]
319 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
320 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
321 *** [[AjaxLook>>Project WONDER-Frameworks-AjaxLook]]
322 *** [[BTBusinessLogic>>Project WONDER-Frameworks-BTBusinessLogic]]
323 *** [[DRGrouping>>Project WONDER-Frameworks-DRGrouping]]
324 *** [[DerbyPlugIn>>Project WONDER-Frameworks-DerbyPlugIn]]
325 *** [[ERAttachment>>Project WONDER-Frameworks-ERAttachment]]
326 *** [[ERCaching>>Project WONDER-Frameworks-ERCaching]]
327 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
328 *** [[ERCaptcha>>Project WONDER-Frameworks-ERCaptcha]]
329 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
330 *** [[ERChronic>>Project WONDER-Frameworks-ERChronic]]
331 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
332 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
333 *** [[ERDivaLook>>ERDivaLook]]
334 *** [[ERDivaliteLook>>Wonder:ERDivaliteLook Framework]]
335 *** [[ERExcelLook>>Project WONDER-Frameworks-ERExcelLook]]
336 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
337 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
338 *** [[ERIUI>>Project WONDER-Frameworks-ERIUI]]
339 *** [[ERIndexing>>Project WONDER-Frameworks-ERIndexing]]
340 *** [[ERJGroupsSynchronizer>>Project WONDER-Frameworks-ERJGroupsSynchronizer]]
341 *** [[ERJQuery>>ERJQuery]]
342 *** [[ERJars>>Project WONDER-Frameworks-ERJars]]
343 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
344 *** [[ERXNavigation>>Project WONDER-Frameworks-ERXNavigation]]
345 *** [[ERMoviesLogic>>Project WONDER-Frameworks-ERMoviesLogic]]
346 *** [[ERNeutralLook>>Project WONDER-Frameworks-ERNeutralLook]]
347 *** [[EROpenID>>Project WONDER-Frameworks-EROpenID]]
348 *** [[EROraclePlugIn>>Project WONDER-Frameworks-EROraclePlugIn]]
349 *** [[ERPDFGeneration>>Project WONDER-Frameworks-ERPDFGeneration]]
350 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
351 *** [[ERPrototaculous>>ERPrototaculous]]
352 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
353 *** [[ERRest>>Project WONDER-Frameworks-ERRest]]
354 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
355 *** [[ERTaggable>>Project WONDER-Frameworks-ERTaggable]]
356 *** [[ERWorkerChannel>>Project WONDER-Frameworks-ERWorkerChannel]]
357 *** [[ExcelGenerator>>Project WONDER-Frameworks-ExcelGeneration]]
358 *** [[FrontBasePlugIn>>Project WONDER-Frameworks-FrontBasePlugIn]]
359 *** [[GoogleChart>>Project WONDER-Frameworks-GoogleChart]]
360 *** [[JavaFSAdaptor>>Project WONDER-Frameworks-JavaFSAdaptor]]
361 *** [[JavaMemoryAdaptor>>Project WONDER-Frameworks-JavaMemoryAdaptor]]
362 *** [[JavaMonitorFramework>>Project WONDER-Frameworks-JavaMonitorFramework]]
363 *** [[JavaRESTAdaptor>>Project WONDER-Frameworks-JavaRESTAdaptor]]
364 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
365 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
366 *** [[SproutCore>>Project WONDER-Frameworks-SproutCore]]
367 *** [[Validity>>Project WONDER-Frameworks-Validity]]
368 *** [[WOJavaRebel>>Project WONDER-Frameworks-WOJavaRebel]]
369 *** [[WOLips>>Project WONDER-Frameworks-WOLips]]
370 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
371 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
372 *** [[WRReporting>>Project WONDER-Frameworks-WRReporting]]
373 *** [[YUI>>Project WONDER-Frameworks-YUI]]
374 ** [[Adaptors>>Programming__WebObjects-Project WONDER-Adaptors]]
375 ** [[PlugIns>>Programming__WebObjects-Project WONDER-PlugIns]]
376 * Advanced
377 * [[Examples>>Programming__WebObjects-Project WONDER-Examples]]
378 * [[Troubleshooting>>Wonder:Troubleshooting]]
379
380 == WireHose ==
381
382 * [[Overview>>Wirehose]]
383 * Basic Concepts
384 ** [[Content Management>>Wirehose-Content Management]]
385 ** [[Personalization>>Wirehose-Personalization]]
386 ** [[Access Control>>Wirehose-Access Control]]
387 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
388 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
389 * Reference
390 ** [[Installation>>Wirehose-Installation]]
391 ** Online Reference Library
392 *** [[Developer Overview>>http://www.wirehose.com/developer/DeveloperOverview.html]]
393 *** [[Java API Reference>>http://www.wirehose.com/developer/javadoc/]]
394 *** [[Properties Reference>>http://www.wirehose.com/developer/Properties.html]]
395 *** [[Database setup>>http://www.wirehose.com/developer/DatabaseSetup.html]]
396 *** [[Regular Expressions>>http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference]]
397 * Recently Deployed Sites
398 ** [[Paizo.com>>http://www.paizo.com]]
399 ** [[Eurovision Song Contest Store>>http://www.eurovisiondownloadshop.tv/cgi-bin/WebObjects/Eurovision]]
400 ** [[Bilka Music Download Store>>http://bilka.phonofile.dk/cgi-bin/WebObjects/Bilka]]
401 ** [[Jubii Music Download Store>>http://musikdownload.jubii.dk/cgi-bin/WebObjects/Jubii]]
402 ** [[Uziing (Scandanavian "Toys-R-Us") Music Store>>http://www.uziing.com/]] (UI is all in Flash)
403
404 == LEWOStuff ==
405
406 * [[Overview>>LEWOStuff-Overview]]
407
408 == GVC Frameworks and GVC.SiteMaker ==
409
410 * [[Overview>>GVC Frameworks-Overview]]
411
412 == Houdah WebObjects Frameworks ==
413
414 * [[Overview>>Houdah WebObjects Frameworks]]
415 * [[HoudahFoundation>>HoudahFoundation]]: Extensions and additions to the Foundation framework
416 * [[HoudahEOControl>>HoudahEOControl]]: Extensions and additions to the EOControl framework
417 * [[HoudahEOAccess>>HoudahEOAccess]]: Extensions and additions to the EOAccess framework
418 * [[HoudahRuleEngine>>HoudahRuleEngine]]: Rule engine used by several of the below frameworks
419 * [[HoudahEOValidation>>HoudahEOValidation]]: Rule based validation
420 * [[HoudahMessages>>HoudahMessages]]: Rule based localizable error messages
421 * [[HoudahAuditTrail>>HoudahAuditTrail]]: Tracks user and timestamp of last change
422 * [[HoudahViewComponents>>HoudahViewComponents]]: High level, large grain view components using stateless cells
423 * [[HoudahControlComponents>>HoudahControlComponents]]: Control layer for EOF based CRUD applications
424 * [[HoudahAgileComponents>>HoudahAgileComponents]]: Rule based control layer for CRUD application (D2W replacement)
425
426 == WOGWT (Google Web Toolkit Integration) ==
427
428 * [[WOGWT Website>>http://code.google.com/p/wogwt]]
429
430 == JBND Data binding ==
431
432 * [[JBND Website>>http://web.mac.com/flor385/JBND]]
433 * [[JBND Wikipedia>>http://en.wikipedia.org/wiki/JBND]]
434
435 == Validation Next Generation (enhanced validation) ==
436
437 [[Validation Next Generation]]
438
439 = Development Tools =
440
441 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
442 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
443 * [[Browser as a Development Tool]]
444 * [[Xcode>>Development Tools-Xcode]]
445 * [[EOModeler>>EOF-Modeling-EOModeler]]
446 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
447 * [[Running Though Apache>>Development Tools-Running Through Apache]]
448 * [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
449 * [[Hudson>>Installing and Using the Hudson build server]]
450 * [[JRebel>>Using JRebel (previously called JavaRebel) with WOLips]]
451
452 = Case Studies =
453
454 * [[iTunes Music Store>>Programming__WebObjects-Case Studies-iTunes Music Store]]
455 * [[.Mac>>Programming__WebObjects-Case Studies-.Mac]]
456 * [[Apple Store>>Programming__WebObjects-Case Studies-Apple Store]]
457 * [[Original Dell Store>>Programming__WebObjects-Case Studies-Original Dell Store]]
458 * [[Radar>>Programming__WebObjects-Case Studies-Radar]]
459 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
460 * [[EverLearn>>Case Studies-EverLearn]]
461 * [[WebObjects Showcase>>WebObjects Showcase]]
462 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
463
464 = Integration with other clients =
465
466 * [[Flex]]
467 * [[Open Laszlo]]
468 * [[Mozilla XUL]]
469 * [[Cocoa]]
470 * [[WO:Eclipse Rich Client Platform (RCP)]]
471
472 = Testing =
473
474 * [[JUnit and TestNG>>Testing-JUnit and TestNG]]
475 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
476 * [[WOUnitTest>>Testing-WOUnitTest]]
477
478 = Database Compatibility / Comparisons =
479
480 * [[FrontBase>>Database Compatibility and Comparisons-FrontBase]]
481 * [[OpenBase>>Database Compatibility and Comparisons-OpenBase]]
482 * [[MySQL>>Database Compatibility and Comparisons-MySQL]]
483 * [[PostgreSQL>>Database Compatibility and Comparisons-PostgreSQL]]
484 * [[Oracle>>Database Compatibility and Comparisons-Oracle]]
485 * [[Sybase>>Database Compatibility and Comparisons-Sybase]]
486 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
487 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
488 * [[Informix>>Database Compatibility and Comparisons-Informix]]
489
490 = Alternative Technologies Pros / Cons =
491
492 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
493 * [[ASP.NET + Monorail>>Programming__WebObjects-Alternative Technologies-ASP.NET+Monorail]]
494 * [[JSP and Taglibs>>Programming__WebObjects-Alternative Technologies-JSP and Taglibs]]
495 * [[EJB>>Programming__WebObjects-Alternative Technologies-EJB]]
496 * [[Hibernate>>Programming__WebObjects-Alternative Technologies-Hibernate]]
497 * [[Core Data>>Programming__WebObjects-Alternative Technologies-Core Data]]
498 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
499 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
500 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
501 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
502 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
503 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
504
505 = Additional Resources =
506
507 * [[Websites>>Additional Resources-Websites]]
508 * [[Mailing Lists>>Mailing Lists]]
509 * [[Tutorials>>Tutorials]]
510 * [[Books>>Additional Resources-Books]]
511 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
512 * [[Authors>>Additional Resources-Authors]]
513 * [[Training>>Additional Resources-WebObjects Training]]
514 * [[User groups]]
515 * [[Known Bugs]]