Wiki source code of Home

Version 1217.1 by David Avendasora on 2010/11/30 06:44

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 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/mailman/listinfo/webobjects-dev]] and [[WebObjects Deployment>>http://lists.apple.com/mailman/listinfo/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 \ \
20 \ \
21 \
22 {{/section}}
23
24 = Introduction =
25
26 * [[What is WebObjects?>>Overview-What is WebObjects]]
27 * [[History>>Overview-History]]
28 * [[Foundation>>Overview-Foundation]]
29 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
30 * [[Scratch Setup of WebObjects Development on a Mac>>Scratch Setup of WebObjects Development on a Mac]]
31 * [[Hands On Hello World - Your First WebObjects Application>>Hello World - Your First WebObjects Application]]
32 * [[Recent Changes>>http://wiki.objectstyle.org/confluence/pages/recentlyupdated.action?key=WO]]
33 * [[WebObjects for Database Developers]]
34 * [[Naming Conventions]]
35
36 = License =
37
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:
39
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.
41
42 = Foundation =
43
44 * [[Foundation>>Overview-Foundation]]
45 * [[Key-Value Coding>>Overview-Key Value Coding]]
46
47 = Enterprise Object Framework (EOF) =
48
49 == Introduction ==
50
51 * [[Overview>>EOF-Overview]]
52
53 == Modeling ==
54
55 * [[Overview>>EOF-Modeling-Overview]]
56 * Required Reading
57 ** [[Entities>>EOF-Modeling-Entities]]
58 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
59 ** [[Attributes>>EOF-Modeling-Attributes]]
60 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
61 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
62 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
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]]
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]]
70 * Advanced
71 ** [[JDBC>>EOF-Modeling-JDBC]]
72 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
73 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
74 ** [[Prototypes>>EOF-Modeling-Prototypes]]
75 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
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]]
79
80 == Using EOF ==
81
82 * [[Overview>>EOF-Using EOF-Overview]]
83 * Required Reading
84 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
85 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
86 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
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]]
90 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
91 ** [[Faulting>>EOF-Using EOF-Faulting]]
92 ** [[Fetching>>EOF-Using EOF-Fetching]]
93 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
94 ** [[Deleting>>EOF-Using EOF-Deleting]]
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]]
101 * Advanced
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]]
111 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
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]]
127 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
128 * [[Help//EOF//is//Doing//Strange//Things//>>EOF-Using EOF-Breaking EOF]]
129
130 = Web Applications =
131
132 == Introduction ==
133
134 * [[Overview>>Web Applications-Overview]]
135
136 == Development ==
137
138 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
139 * [[Beginner's Guide>>Development-Beginner's Guide]]
140 * Required Reading
141 ** [[Apache>>Development Tools-Running Through Apache]]
142 ** [[WO Adaptor>>Development-WO Adaptor]]
143 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
144 ** [[WO Session>>Development-WO Session]]
145 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
146 *** [[Binding Synchronization>>Development-WO Component-Binding Synchronization]]
147 *** [[Code, Templates, and WODs>>Development-WO Component-Code Template and WODs]]
148 *** [[Built-in Components>>Development-WO Component-Built-in Components]]
149 ** [[Component Actions>>Development-Component Actions]]
150 ** [[Direct Actions>>Development-Direct Actions]]
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]]
153 ** [[Authentication and Security>>Development-Authentication and Security]]
154 ** [[General Best Practices>>Development-General Best Practices]]
155 ** [[WOForm Best Practices>>Development-WOForm Best Practices]]
156 ** [[WODisplayGroup>>Development-WODisplayGroup]]
157 ** [[Debugging Techniques>>Development-Debugging Techniques]]
158 ** [[Direct Connect>>Development-Direct Connect]]
159 ** [[Frameworks>>Development-Frameworks]]
160 ** [[Ajax>>Development-Ajax]]
161 ** [[CSS>>Development-CSS]]
162 ** [[Sending Emails>>Development-Sending Emails]]
163 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
164 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
165 ** [[Common Pitfalls and Troubleshooting>>Development-Common Pitfalls and Troubleshooting]]
166 * Advanced
167 ** [[Application Server URL Creation>>Development-UrlCreation]]
168 ** [[Audit Trails>>Development-Audit Trails]]
169 ** [[Backtracking>>Development-Backtracking]]
170 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
171 ** [[Image Thumbnailing>>Development-Thumbnailing]]
172 ** [[Database vs Filesystem (aka Images in the Database?)>>Development-Database vs Filesystem]]
173 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
174 ** [[Stateless Components>>Development-Stateless Components]]
175 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
176 ** [[WOEvents and Logging>>Development-WOEvents and Logging]]
177 ** [[PDF Generation>>Development-PDF Generation]]
178 ** [[Excel Generation>>Development-Excel Generation]]
179 ** [[SSL>>Development-SSL requests via https protocol]]
180 ** [[Localization and Internationalization>>Development-Localization and Internationalization]]
181 ** [[Testing and JUnit>>Development-Testing and JUnit]]
182 ** [[Custom Error Handling>>Development-Custom Error Handling]]
183 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
184 ** [[Custom Templates>>Development-Custom Templates]]
185 ** [[Calling Commandline Applications>>Calling Commandline Applications]]
186 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
187 ** [[Profiling WO Apps>>Development-Profiling WO Apps]]
188 ** [[J2EE Integration>>Development-J2EE Integration]]
189 ** [[Third Party Jars>>Development-Third Party Jars]]
190 ** [[Generating Static Pages>>Development-Generating Static Pages]]
191 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
192 ** [[Custom Resource Manager>>Development-Custom Resource Manager]]
193 ** [[Persistent Sessions>>Development-Persistent Sessions]]
194 ** [[How Forms Work>>Development-How Forms Work]]
195 * [[Development on Windows>>Development-Development on Windows]]
196 * [[Tips and Tricks>>Development-Tips and Tricks]]
197 * Examples
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]]
208
209 == Deployment ==
210
211 * [[Overview>>Deployment-Overview]]
212 * Required Reading
213 ** [[Apache>>Configuring Apache for WebObjects]]
214 ** [[Memory Settings>>Deployment-Memory Settings]]
215 ** [[Standard Deployment>>Deployment-Standard Deployment]]
216 ** [[wotaskd>>wotaskd]]
217 ** [[Java Monitor>>JavaMonitor]]
218 ** [[Logging>>Deployment-Logging]]
219 ** [[Split Install>>Split Deployments]]
220 ** [[Common Pitfalls and Troubleshooting>>Troubleshooting Deployment]]
221
222 * Advanced
223 ** [[WOStats>>Troubleshooting WOStats]]
224 ** [[Additional Monitoring>>Monitoring your deployed Applications]]
225 ** [[Troubleshooting wotaskd and JavaMonitor on OS X]]
226 ** [[Scheduled Restart>>Troubleshooting Scheduled Restarts]]
227 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
228 ** [[Tomcat Deployment>>Deploying with Tomcat]]
229 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
230 ** [[Killing WOA Processes>>Killing WOA Processes]]
231 ** [[Debugging Frozen Deployed Instances>>Troubleshooting Frozen Deployed Instances]]
232 ** [[WOAdaptorInfo>>WOAdaptorInfo]]
233
234 * Platform Specifics
235 ** [[Mac OS X Server>>Deploying on Mac OS X Server]]
236 ** [[Linux>>Web Applications-Deployment-Linux]]
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]]
244
245 * Helpful Tools & Shellscripts
246 ** [[Capistrano (Overview)>>Automating Application Deployment with 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 {{include value="Direct To Web (D2W and ERD2W)"}}{{/include}}
273
274 = Java Client, Direct to Java Client (D2JC) =
275
276 * [[Overview>>Java Client-Overview]]
277 * Direct to Java Client
278 ** [[Getting Started with Direct to Java Client (D2JC)>>Getting Started with Direct to Java Client (D2JC)]]
279 * [[Required Reading>>Java Client-Required Reading]]
280 * Building
281 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
282 ** [[WebStart WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
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]]
290
291 = Complementary Frameworks =
292
293 == Project WONDER ==
294
295 * [[Overview>>Project WONDER-Overview]]
296 * Required Reading
297 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
298 ** [[Quickstart>>Project WONDER-Quickstart]]
299 ** [[History>>Project WONDER-History]]
300 ** [[Properties File Settings>>Project Wonder Properties Files]]
301 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
302 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
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]]
309 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
310 *** [[ERCaptcha>>Project WONDER-Frameworks-ERCaptcha]]
311 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
312 *** [[ERChronic>>Project WONDER-Frameworks-ERChronic]]
313 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
314 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
315 *** [[ERDivaLook>>ERDivaLook]]
316 *** [[ERDivaliteLook>>ERDivaliteLook]]
317 *** [[ERExcelLook>>Project WONDER-Frameworks-ERExcelLook]]
318 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
319 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
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]]
325 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
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]]
332 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
333 *** [[ERPrototaculous>>ERPrototaculous]]
334 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
335 *** [[ERRest>>Project WONDER-Frameworks-ERRest]]
336 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
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]]
346 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
347 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
348 *** [[SproutCore>>Project WONDER-Frameworks-SproutCore]]
349 *** [[Validity>>Project WONDER-Frameworks-Validity]]
350 *** [[WOJavaRebel>>Project WONDER-Frameworks-WOJavaRebel]]
351 *** [[WOLips>>Project WONDER-Frameworks-WOLips]]
352 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
353 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
354 *** [[WRReporting>>Project WONDER-Frameworks-WRReporting]]
355 *** [[YUI>>Project WONDER-Frameworks-YUI]]
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
362 == WireHose ==
363
364 * [[Overview>>Wirehose]]
365 * Basic Concepts
366 ** [[Content Management>>Wirehose-Content Management]]
367 ** [[Personalization>>Wirehose-Personalization]]
368 ** [[Access Control>>Wirehose-Access Control]]
369 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
370 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
371 * Reference
372 ** [[Installation>>Wirehose-Installation]]
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
386 == LEWOStuff ==
387
388 * [[Overview>>LEWOStuff-Overview]]
389
390 == GVC Frameworks and GVC.SiteMaker ==
391
392 * [[Overview>>GVC Frameworks-Overview]]
393
394 == Houdah WebObjects Frameworks ==
395
396 * [[Overview>>Houdah WebObjects Frameworks]]
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
417 == Validation Next Generation (enhanced validation) ==
418
419 [[Validation Next Generation]]
420
421 = Development Tools =
422
423 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
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]]
428 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
429 * [[Running Though Apache>>Development Tools-Running Through Apache]]
430 * [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
431 * [[Hudson>>Installing and Using the Hudson build server]]
432 * [[JRebel>>Using JRebel (previously called JavaRebel) with WOLips]]
433
434 = Case Studies =
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]]
441 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
442 * [[EverLearn>>Case Studies-EverLearn]]
443 * [[WebObjects Showcase>>WebObjects Showcase]]
444 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
445
446 = Integration with other clients =
447
448 * [[Flex]]
449 * [[Open Laszlo]]
450 * [[Mozilla XUL]]
451 * [[Cocoa]]
452 * [[Eclipse Rich Client Platform (RCP)>>WO:Eclipse Rich Client Platform (RCP)]]
453
454 = Testing =
455
456 * [[JUnit and TestNG>>Testing-JUnit and TestNG]]
457 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
458 * [[WOUnitTest>>Testing-WOUnitTest]]
459
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]]
468 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
469 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
470 * [[Informix>>Database Compatibility and Comparisons-Informix]]
471
472 = Alternative Technologies Pros / Cons =
473
474 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
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]]
482 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
483 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
484 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
485 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
486
487 = Additional Resources =
488
489 * [[Websites>>Additional Resources-Websites]]
490 * [[Mailing Lists>>Mailing Lists]]
491 * [[Tutorials>>Tutorials]]
492 * [[Books>>Additional Resources-Books]]
493 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
494 * [[Authors>>Additional Resources-Authors]]
495 * [[Training>>Additional Resources-WebObjects Training]]
496 * [[User groups]]
497 * [[Known Bugs]]