Wiki source code of Home

Version 1071.1 by Kieran Kelleher on 2008/07/29 06:30

Show last authors
1 See [[instructions for editing>>WOCOM]]. 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 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.
4
5 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.
6
7 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.
8
9 It is an incredibly flexible set of frameworks exemplified by Apples 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]].
10
11 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.
12
13 In addition Apple, Inc. also provides [[free>>http://www.apple.com/support/webobjects/]] and [[paid-for>>http://www.apple.com/services/technicalsupport/]] support options.
14
15 |= Contents
16 | {{section}}
17 # [#Introduction]
18 # [#License]
19 # [#Foundation]
20 # [#Enterprise Object Framework (EOF)]
21 ## [#Introduction]
22 ## [#Modeling]
23 ## [#Using EOF]
24 # Client Strategies:
25 ## [#Web Applications]
26 ### [#Introduction]
27 ### [#Development]
28 ### [#Deployment]
29 ## [Java Client]
30 ## [#Web Services]
31 ## [Cocoa Client] (Mac and iPhone)
32 ## [Adobe Flex Client]
33 # [#Complementary Frameworks]
34 ## [#Project WONDER]
35 ## [#WireHose]
36 ## [#LEWOStuff]
37 ## [#GVC Frameworks and GVC.SiteMaker]
38 ## [#Houdah WebObjects Frameworks]
39 # [#Development Tools]
40 # [Best Practices|Best Practices]
41 # [#Direct-To]
42 # [#Case Studies]
43 # [#Integration with other clients]
44 # [#Testing]
45 # [#Database Compatibility/Comparisons]
46 # [#Alternative Technologies Pros/Cons]
47 # [#Additional Resources]
48 {{/section}}
49
50 = Introduction =
51
52 * [[What is WebObjects?>>Overview-What is WebObjects]]
53 * [[History>>Overview-History]]
54 * [[Foundation>>Programming__WebObjects-Overview-Foundation]]
55 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
56 * [[Scratch Setup of WebObjects Development on a Mac>>WOL:Scratch Setup of WebObjects Development on a Mac]]
57 * [[Hands On Hello World - Your First WebObjects Application>>Hands On___Hello World - Your First WebObjects Application]]
58 * [[Recent Changes>>http://wiki.objectstyle.org/confluence/pages/recentlyupdated.action?key=WO]]
59 * [[WebObjects for Database Developers]]
60 * [[Naming Conventions]]
61
62 = License =
63
64 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:
65
66 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.
67
68 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]].
69
70 = Foundation =
71
72 * [[Foundation>>Programming__WebObjects-Overview-Foundation]]
73 * [[Key-Value Coding>>Overview-Key Value Coding]]
74
75 = Enterprise Object Framework (EOF) =
76
77 == Introduction ==
78
79 * [[Overview>>EOF-Overview]]
80
81 == Modeling ==
82
83 * [[Overview>>Programming__WebObjects-EOF-Modeling-Overview]]
84 * Required Reading
85 ** [[Entities>>EOF-Modeling-Entities]]
86 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
87 ** [[Attributes>>EOF-Modeling-Attributes]]
88 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
89 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
90 ** [[Fetch Specifications>>Programming__WebObjects-EOF-Modeling-Fetch Specifications]]
91 ** [[SQL Generation>>Programming__WebObjects-EOF-Modeling-SQL Generation]]
92 ** [[Code Generation>>Programming__WebObjects-EOF-Modeling-Code Generation]]
93 ** [[Reverse Engineering>>Programming__WebObjects-EOF-Modeling-Reverse Engineering]]
94 ** [[Common Pitfalls and Troubleshooting>>EOF-Modeling-Common Pitfalls and Troubleshooting]]
95 ** [[EOModeler>>EOF-Modeling-EOModeler]]
96 ** [[EOModeler on Windows>>EOF-Modeling-EOModeler on Windows]]
97 ** [[Booleans>>EOF-Modeling-Booleans]]
98 * Advanced
99 ** [[JDBC>>Programming__WebObjects-EOF-Modeling-JDBC]]
100 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
101 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
102 ** [[Prototypes>>EOF-Modeling-Prototypes]]
103 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
104 ** [[Custom Attributes>>EOF-Modeling-Custom Attributes]]
105 ** [[Strategy Design Pattern as an Alternative to Entity Inheritance>>Using Strategy Design Pattern with EOF]]
106 * [[Examples>>EOF-Modeling-Examples]]
107
108 == Using EOF ==
109
110 * [[Overview>>EOF-Using EOF-Overview]]
111 * Required Reading
112 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
113 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
114 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
115 ** [[EO Object Store>>Programming__WebObjects-EOF-Using EOF-EO Object Store]]
116 ** [[EO Database>>Programming__WebObjects-EOF-Using EOF-EO Database]]
117 ** [[EO Adaptor>>Programming__WebObjects-EOF-Using EOF-EO Adapter]]
118 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
119 ** [[Faulting>>Programming__WebObjects-EOF-Using EOF-Faulting]]
120 ** [[Fetching>>Programming__WebObjects-EOF-Using EOF-Fetching]]
121 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
122 ** [[Deleting>>Programming__WebObjects-EOF-Using EOF-Deleting]]
123 ** [[Caching and Freshness>>EOF-Using EOF-Caching and Freshness]]
124 ** [[Optimistic Locking>>EOF-Using EOF-Optimistic Locking]]
125 ** [[Memory Management>>EOF-Using EOF-Memory Management]]
126 ** [[EOF Best Practices>>EOF-Using EOF-EOF Best Practices]]
127 ** [[Configuration Settings>>EOF-Using EOF-Configuration Settings]]
128 ** [[Common Pitfalls and Troubleshooting>>EOF-Using EOF-Common Pitfalls and Troubleshooting]]
129 * Advanced
130 ** [[EOGenerator>>EOF-Using EOF-EOGenerator]]
131 ** [[Logging>>EOF-Using EOF-Logging]]
132 ** [[EOF Performance Tuning>>EOF-Using EOF-EOF Performance Tuning]]
133 ** [[Primary Keys>>EOF-Using EOF-Primary Keys]]
134 ** [[Compound Primary Keys>>EOF-Using EOF-Compound Primary Keys]]
135 ** [[Concurrency>>EOF-Using EOF-Concurrency]]
136 ** [[Validation>>EOF-Using EOF-Validation]]
137 ** [[Database Adaptors and Plugins>>EOF-Using EOF-Database Adaptors and Plugins]]
138 ** [[Undo and Redo>>EOF-Using EOF-Undo and Redo]]
139 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
140 ** [[EOSharedEditingContext>>EOF-Using EOF-EOSharedEditingContext]]
141 ** [[Raw Rows>>EOF-Using EOF-Raw Rows]]
142 ** [[Batch Fetching>>EOF-Using EOF-Batch Fetching]]
143 ** [[Fetch Limits>>EOF-Using EOF-Fetch Limits]]
144 ** [[Bulk Operations>>EOF-Using EOF-Bulk Operations]]
145 ** [[Schema Changes>>EOF-Using EOF-Schema Changes]]
146 ** [[Delegates and Notifications>>EOF-Using EOF-Delegates and Notifications]]
147 ** [[Multiple Stacks or Instances>>EOF-Using EOF-Multiple Stacks or Instances]]
148 ** [[Custom Qualifiers>>EOF-Using EOF-Custom Qualifiers]]
149 ** [[Localization and Internationalization>>EOF-Using EOF-Localization and Internationalization]]
150 ** [[Default Values>>EOF-Using EOF-Default Values]]
151 ** [[Custom EOAdaptor>>EOF-Using EOF-Custom EOAdaptor]]
152 ** [[EOF Traces>>EOF-Using EOF-EOF Traces]]
153 ** [[Problems>>EOF-Using EOF-Problems]]
154 * [[Tips and Tricks>>EOF-Using EOF-Tips and Tricks]]
155 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
156 * [[Help//EOF//is//Doing//Strange//Things//>>EOF-Using EOF-Breaking EOF]]
157
158 = Web Applications =
159
160 == Introduction ==
161
162 * [[Overview>>Programming__WebObjects-Web Applications-Overview]]
163
164 == Development ==
165
166 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
167 * [[Beginner's Guide>>Programming__WebObjects-Web Applications-Development-Beginner's Guide]]
168 * Required Reading
169 ** [[Apache>>Development Tools-Running Through Apache]]
170 ** [[WO Adaptor>>Web Applications-Development-WO Adaptor]]
171 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
172 ** [[WO Session>>Web Applications-Development-WO Session]]
173 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
174 *** [[Binding Synchronization>>Web Applications-Development-WO Component-Binding Synchronization]]
175 *** [[Code, Templates, and WODs>>Web Applications-Development-WO Component-Code Template and WODs]]
176 *** [[Built-in Components>>Programming__WebObjects-Web Applications-Development-WO Component-Built-in Components]]
177 ** [[Component Actions>>Web Applications-Development-Component Actions]]
178 ** [[Direct Actions>>Web Applications-Development-Direct Actions]]
179 ** [[Request-Response Loop>>Programming__WebObjects-Web Applications-Development-Request-Response Loop]]
180 ** [[Using EOF in a WOA>>Programming__WebObjects-Web Applications-Development-Using EOF in a WOA]]
181 ** [[Authentication and Security>>Web Applications-Development-Authentication and Security]]
182 ** [[General Best Practices>>Web Applications-Development-General Best Practices]]
183 ** [[WOForm Best Practices>>Web Applications-Development-WOForm Best Practices]]
184 ** [[WODisplayGroup>>Web Applications-Development-WODisplayGroup]]
185 ** [[Debugging Techniques>>Programming__WebObjects-Web Applications-Development-Debugging Techniques]]
186 ** [[Direct Connect>>Web Applications-Development-Direct Connect]]
187 ** [[Frameworks>>Web Applications-Development-Frameworks]]
188 ** [[Ajax>>Web Applications-Development-Ajax]]
189 ** [[CSS>>Web Applications-Development-CSS]]
190 ** [[Sending Emails>>Web Applications-Development-Sending Emails]]
191 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
192 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
193 ** [[Common Pitfalls and Troubleshooting>>Web Applications-Development-Common Pitfalls and Troubleshooting]]
194
195 * Advanced
196
197 *
198 ** [[Application Server URL Creation>>WebApplictions-Development-UrlCreation]]
199 ** [[Audit Trails>>Web Applications-Development-Audit Trails]]
200 ** [[Backtracking>>Web Applications-Development-Backtracking]]
201 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
202 ** [[Image Thumbnailing>>Web Applications-Development-Thumbnailing]]
203 ** [[Database vs Filesystem (aka Images in the Database?)>>Web Applications-Development-Database vs Filesystem]]
204 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
205 ** [[Stateless Components>>Web Applications-Development-Stateless Components]]
206 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
207 ** [[WOEvents and Logging>>Web Applications-Development-WOEvents and Logging]]
208 ** [[PDF Generation>>Web Applications-Development-PDF Generation]]
209 ** [[Excel Generation>>Web Applications-Development-Excel Generation]]
210 ** [[SSL>>Web Applications-Development-SSL requests via https protocol]]
211 ** [[Localization and Internationalization>>Web Applications-Development-Localization and Internationalization]]
212 ** [[Testing and JUnit>>Web Applications-Development-Testing and JUnit]]
213 ** [[Custom Error Handling>>Web Applications-Development-Custom Error Handling]]
214 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
215 ** [[Custom Templates>>Web Applications-Development-Custom Templates]]
216 ** [[Calling Commandline Applications>>Web Applications-Development-Calling Commandline Applications]]
217 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
218 ** [[Profiling WO Apps>>Web Applications-Development-Profiling WO Apps]]
219 ** [[J2EE Integration>>Web Applications-Development-J2EE Integration]]
220 ** [[Third Party Jars>>Web Applications-Development-Third Party Jars]]
221 ** [[Generating Static Pages>>Web Applications-Development-Generating Static Pages]]
222 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
223 ** [[Custom Resource Manager>>Web Applications-Development-Custom Resource Manager]]
224 ** [[Persistent Sessions>>Web Applications-Development-Persistent Sessions]]
225 ** [[How Forms Work>>Web Applications-Development-How Forms Work]]
226 * [[Development on Windows>>Web Applications-Development-Development on Windows]]
227 * [[Tips and Tricks>>Web Applications-Development-Tips and Tricks]]
228 * Examples
229 ** [[Hands On Hello World>>Hands On___Hello World - Your First WebObjects Application]]
230 ** [[Page Layout>>Web Applications-Development-Examples-Page Layout]]
231 ** [[List Components>>Web Applications-Development-Examples-List Components]]
232 ** [[Calendar Component>>Web Applications-Development-Examples-Calendar Component]]
233 ** [[Path Inspector>>Web Applications-Development-Examples-Path Inspector]]
234 ** [[Alphabetic List>>Web Applications-Development-Examples-Alphabetic List]]
235 ** [[Login>>Web Applications-Development-Examples-Login]]
236 ** [[Anchors>>Web Applications-Development-Examples-Anchors]]
237 ** [[Open Link in New Window>>Web Applications-Development-Examples-Open Link in New Window]]
238 ** [[Return a File>>Web Applications-Development-Examples-Return a File]]
239
240 == Deployment ==
241
242 * [[Overview>>Web Applications-Deployment-Overview]]
243 * Required Reading
244 ** [[Apache>>Web Applications-Deployment-Apache]]
245 ** [[Memory Settings>>Web Applications-Deployment-Memory Settings]]
246 ** [[Standard Deployment>>Web Applications-Deployment-Standard Deployment]]
247 ** [[wotaskd>>Web Applications-Deployment-wotaskd]]
248 ** [[Java Monitor>>Web Applications-Deployment-Java Monitor]]
249 ** [[Logging>>Web Applications-Deployment-Logging]]
250 ** [[Split Install>>Programming__WebObjects-Web Applications-Deployment-Split Install]]
251 ** [[Common Pitfalls and Troubleshooting>>Web Applications-Deployment-Common Pitfalls and Troubleshooting]]
252
253 * Advanced
254 ** [[WOStats>>Web Applications-Deployment-WOStats]]
255 ** [[Additional Monitoring>>Web Applications-Deployment-Additional Monitoring]]
256 ** [[Debugging wotaskd and JavaMonitor]]
257 ** [[Scheduled Restart>>Web Applications-Deployment-Scheduled Restart]]
258 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
259 ** [[J2EE and Servlet Deployment>>Web Applications-Deployment-J2EE and Servlet Deployment]]
260 ** [[Tomcat Deployment>>Web Applications-Deployment-Tomcat Deployment]]
261 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
262 ** [[Killing WOA Processes>>Web Applications-Deployment-Killing WOA Processes]]
263 ** [[Debugging Frozen Deployed Instances>>Web Applications-Deployment-Debugging Frozen Deployed Instances]]
264
265 * Platform Specifics
266 ** [[Mac OS X Server>>Programming__WebObjects-Web Applications-Deployment-Mac OS X Server]]
267 ** [[Linux>>Programming__WebObjects-Web Applications-Deployment-Linux]]
268 ** [[Solaris WO5.3.3>>Programming__WebObjects-Web Applications-Deployment-Solaris WO5.3.3]]
269 ** [[FreeBSD WO5.2>>Web Applications-Deployment-FreeBSD WO5.2]]
270 ** [[FreeBSD WO5.3>>Web Applications-Deployment-FreeBSD WO5.3]]
271 ** [[FreeBSD 6.2 WO 5.3.3>>Web Applications-Deployment-FreeBSD 6.2 WO5.3.3]]
272 ** [[FreeBSD 6.x WO 5.3.3 using port system with many options>>Web Applications-Deployment-FreeBSD 6.x WO 5.3.3 port]]
273 ** [[Windows>>Web Applications-Deployment-Windows]]
274 * Helpful Tools & Shellscripts
275
276 = Web Services =
277
278 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
279 * Required Reading
280 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
281 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
282 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
283 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
284 * General Info
285 ** [[Instructions for .NET consuming Direct to WebServices>>Web Services-Instructions for .NET consuming Direct to WebServices]]
286 ** [[Testing Services with Terminal>>Web Services-Testing Services with Terminal]]
287 * Advanced
288 ** [[Sending Large Data>>Web Services-Sending Large Data]]
289 ** [[How to Trust Any SSL Certificate>>Web Services-How to Trust Any SSL Certificate]]
290 ** [[Problems>>Web Services-Problems]]
291 ** [[Controlling Enterprise Object Serialisation>>Web Services-Controlling Enterprise Object Serialisation]]
292 ** [[Controlling WSDL Service Location>>Web Services-Controlling WSDL Service Location]]
293 ** [[Integration with WebServicesCore on MacOS-X>>Web Services-Integration with WebServicesCore on MacOS-X]]
294 ** [[Working With Temporary GlobalIDs>>Web Services-Working With Temporary GlobalIDs]]
295
296 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
297
298 = Java Client =
299
300 * [[Overview>>Java Client-Overview]]
301 * [[Required Reading>>Java Client-Required Reading]]
302 * Building
303 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
304 ** [[WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
305 * [[Complimentary Frameworks>>Java Client-Complimentary Frameworks]]
306 * [[Advanced>>Programming__WebObjects-Java Client-Advanced]]
307 * [[Interface Builder>>Programming__WebObjects-Java Client-Interface Builder]]
308 * [[svn>>Programming__WebObjects-Java Client-svn]]
309 * [[Examples>>Programming__WebObjects-Java Client-Examples]]
310
311 = Complementary Frameworks =
312
313 == Project WONDER ==
314
315 * [[Overview>>Project WONDER-Overview]]
316 * Required Reading
317 ** [[Installing>>Project WONDER-Installing]]
318 ** [[Quickstart>>Project WONDER-Quickstart]]
319 ** [[History>>Project WONDER-History]]
320 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
321 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
322 *** [[DynaReporting>>Programming__WebObjects-Project WONDER-Frameworks-DynaReporting]]
323 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
324 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
325 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
326 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
327 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
328 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
329 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
330 *** [[ERXMigration>>Project WONDER-Frameworks-ERXMigration]]
331 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
332 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
333 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
334 *** [[ExcelGeneration>>Project WONDER-Frameworks-ExcelGeneration]]
335 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
336 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
337 *** [[SVGObjects>>Programming__WebObjects-Project WONDER-Frameworks-SVGObjects]]
338 *** [[Validity>>Project WONDER-Frameworks-Validity]]
339 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
340 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
341 ** [[Adaptors>>Programming__WebObjects-Project WONDER-Adaptors]]
342 ** [[PlugIns>>Programming__WebObjects-Project WONDER-PlugIns]]
343 * Advanced
344 * [[Examples>>Programming__WebObjects-Project WONDER-Examples]]
345 * [[Troubleshooting>>Wonder:Troubleshooting]]
346
347 == WireHose ==
348
349 * [[Overview>>Wirehose-Overview]]
350 * Basic Concepts
351 ** [[Content Management>>Programming__WebObjects-Wirehose-Content Management]]
352 ** [[Personalization>>Wirehose-Personalization]]
353 ** [[Access Control>>Wirehose-Access Control]]
354 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
355 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
356 * Reference
357 ** [[Installation>>Wirehose-Installation]]
358 ** Online Reference Library
359 *** [[Developer Overview>>http://www.wirehose.com/developer/DeveloperOverview.html]]
360 *** [[Java API Reference>>http://www.wirehose.com/developer/javadoc/]]
361 *** [[Properties Reference>>http://www.wirehose.com/developer/Properties.html]]
362 *** [[Database setup>>http://www.wirehose.com/developer/DatabaseSetup.html]]
363 *** [[Regular Expressions>>http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference]]
364 * Recently Deployed Sites
365 ** [[Paizo.com>>http://www.paizo.com]]
366 ** [[Eurovision Song Contest Store>>http://www.eurovisiondownloadshop.tv/cgi-bin/WebObjects/Eurovision]]
367 ** [[Bilka Music Download Store>>http://bilka.phonofile.dk/cgi-bin/WebObjects/Bilka]]
368 ** [[Jubii Music Download Store>>http://musikdownload.jubii.dk/cgi-bin/WebObjects/Jubii]]
369 ** [[Uziing (Scandanavian "Toys-R-Us") Music Store>>http://www.uziing.com/]] (UI is all in Flash)
370
371 == LEWOStuff ==
372
373 * [[Overview>>LEWOStuff-Overview]]
374
375 == GVC Frameworks and GVC.SiteMaker ==
376
377 * [[Overview>>GVC Frameworks-Overview]]
378
379 == Houdah WebObjects Frameworks ==
380
381 * [[Overview>>Houdah WebObjects Frameworks-Overview]]
382 * [[HoudahFoundation>>HoudahFoundation]]: Extensions and additions to the Foundation framework
383 * [[HoudahEOControl>>HoudahEOControl]]: Extensions and additions to the EOControl framework
384 * [[HoudahEOAccess>>HoudahEOAccess]]: Extensions and additions to the EOAccess framework
385 * [[HoudahRuleEngine>>HoudahRuleEngine]]: Rule engine used by several of the below frameworks
386 * [[HoudahEOValidation>>HoudahEOValidation]]: Rule based validation
387 * [[HoudahMessages>>HoudahMessages]]: Rule based localizable error messages
388 * [[HoudahAuditTrail>>HoudahAuditTrail]]: Tracks user and timestamp of last change
389 * [[HoudahViewComponents>>HoudahViewComponents]]: High level, large grain view components using stateless cells
390 * [[HoudahControlComponents>>HoudahControlComponents]]: Control layer for EOF based CRUD applications
391 * [[HoudahAgileComponents>>HoudahAgileComponents]]: Rule based control layer for CRUD application (D2W replacement)
392
393 = Development Tools =
394
395 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
396 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
397 * [[Xcode>>Development Tools-Xcode]]
398 * [[EOModeler>>EOF-Modeling-EOModeler]]
399 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
400 * [[Running Though Apache>>Development Tools-Running Through Apache]]
401 * [[WebObjects and Subversion>>Web Applications-Development-WebObjects and Subversion]]
402
403 = Direct-To =
404
405 * [[Overview>>Programming__WebObjects-Direct-To-Overview]]
406 * Required Reading
407 ** [[Web>>Direct-To-Web]]
408 ** [[Java Client>>Programming__WebObjects-Direct-To-Java Client]]
409 ** [[Common Pitfalls and Troubleshooting>>Programming__WebObjects-Direct-To-Common Pitfalls and Troubleshooting]]
410 * Advanced
411 ** [[ERD2W - part of the WONDER frameworks>>Programming__WebObjects-Direct-To-ERD2W]]
412 * [[Examples>>Programming__WebObjects-Direct-To-Examples]]
413
414 = Case Studies =
415
416 * [[iTunes Music Store>>Programming__WebObjects-Case Studies-iTunes Music Store]]
417 * [[.Mac>>Programming__WebObjects-Case Studies-.Mac]]
418 * [[Apple Store>>Programming__WebObjects-Case Studies-Apple Store]]
419 * [[Original Dell Store>>Programming__WebObjects-Case Studies-Original Dell Store]]
420 * [[Radar>>Programming__WebObjects-Case Studies-Radar]]
421 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
422 * [[EverLearn>>Case Studies-EverLearn]]
423 * [[WebObjects Showcase>>WebObjects Showcase]]
424 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
425
426 = Integration with other clients =
427
428 * [[Flex]]
429 * [[Open Laszlo]]
430 * [[Mozilla XUL]]
431 * [[Cocoa]]
432
433 = Testing =
434
435 * [[ProgrammingWebObjects-Testing-Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
436
437 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
438 * [[WOUnitTest>>Testing-WOUnitTest]]
439
440 = Database Compatibility / Comparisons =
441
442 * [[FrontBase>>Database Compatibility and Comparisons-FrontBase]]
443 * [[OpenBase>>Database Compatibility and Comparisons-OpenBase]]
444 * [[MySQL>>Database Compatibility and Comparisons-MySQL]]
445 * [[PostgreSQL>>Database Compatibility and Comparisons-PostgreSQL]]
446 * [[Oracle>>Database Compatibility and Comparisons-Oracle]]
447 * [[Sybase>>Database Compatibility and Comparisons-Sybase]]
448 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
449 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
450 * [[Informix>>Database Compatibility and Comparisons-Informix]]
451
452 = Alternative Technologies Pros / Cons =
453
454 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
455 * [[ASP.NET + Monorail>>Programming__WebObjects-Alternative Technologies-ASP.NET+Monorail]]
456 * [[JSP and Taglibs>>Programming__WebObjects-Alternative Technologies-JSP and Taglibs]]
457 * [[EJB>>Programming__WebObjects-Alternative Technologies-EJB]]
458 * [[Hibernate>>Programming__WebObjects-Alternative Technologies-Hibernate]]
459 * [[Core Data>>Programming__WebObjects-Alternative Technologies-Core Data]]
460 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
461 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
462 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
463 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
464 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
465 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
466
467 = Additional Resources =
468
469 * [[Websites>>Additional Resources-Websites]]
470 * [[Mailing Lists>>Mailing Lists]]
471 * [[Tutorials>>Tutorials]]
472 * [[Books>>Additional Resources-Books]]
473 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
474 * [[Authors>>Additional Resources-Authors]]
475 * [[Training>>Additional Resources-WebObjects Training]]
476 * [[User groups]]
477 * [[Known Bugs]]