Wiki source code of Home

Version 1090.1 by David Avendasora on 2010/11/30 05:42

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>>Deployment-wotaskd]]
217 ** [[Java Monitor>>Deployment-Java Monitor]]
218 ** [[Logging>>Deployment-Logging]]
219 ** [[Split Install>>Deployment-Split Install]]
220 ** [[Common Pitfalls and Troubleshooting>>Deployment-Common Pitfalls and Troubleshooting]]
221
222 * Advanced
223 ** [[WOStats>>Deployment-WOStats]]
224 ** [[Additional Monitoring>>Monitoring your deployed Applications]]
225 ** [[Debugging wotaskd and JavaMonitor on OS X]]
226 ** [[Scheduled Restart>>Deployment-Scheduled Restart]]
227 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
228 ** [[J2EE and Servlet Deployment>>Deploying on J2EE and Servlet Containers]]
229 ** [[Tomcat Deployment>>Deployment-Tomcat Deployment]]
230 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
231 ** [[Killing WOA Processes>>Deployment-Killing WOA Processes]]
232 ** [[Debugging Frozen Deployed Instances>>Deployment-Debugging Frozen Deployed Instances]]
233 ** [[WOAdaptorInfo>>Deployment-WOAdaptorInfo]]
234
235 * Platform Specifics
236 ** [[Mac OS X Server>>Deploying on Mac OS X Server]]
237 ** [[Linux>>Web Applications-Deployment-Linux]]
238 ** [[Solaris WO5.3.3>>Deploying on Solaris (WO 5.3.3)]]
239 ** [[FreeBSD WO5.2>>Deploying on FreeBSD (WO 5.2)]]
240 ** [[FreeBSD WO5.3>>Deploying on FreeBSD (WO 5.3)]]
241 ** [[FreeBSD 6.2 WO 5.3.3>>Deploying on FreeBSD 6.2 (WO5.3.3)]]
242 ** [[FreeBSD 6.x WO 5.3.3 using port system with many options>>Deploying on FreeBSD 6.x (WO 5.3.3 port)]]
243 ** [[Legacy Windows (WO 5.1/5.2 on WinNT/2000)>>Deployment-Windows]]
244 ** [[Current Windows (WO 5.4 on Win2003)>>Deployment-Windows WO 5.3 - WO 5.4]]
245
246 * Helpful Tools & Shellscripts
247 ** [[Capistrano (Overview)>>Deployment-Capistrano (Overview)]]
248
249 = Web Services =
250
251 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
252 * Required Reading
253 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
254 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
255 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
256 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
257 * General Info
258 ** [[Instructions for .NET consuming Direct to WebServices>>Web Services-Instructions for .NET consuming Direct to WebServices]]
259 ** [[Testing Services with Terminal>>Web Services-Testing Services with Terminal]]
260 * Advanced
261 ** [[Sending Large Data>>Web Services-Sending Large Data]]
262 ** [[How to Trust Any SSL Certificate>>Web Services-How to Trust Any SSL Certificate]]
263 ** [[Problems>>Web Services-Problems]]
264 ** [[Controlling Enterprise Object Serialisation>>Web Services-Controlling Enterprise Object Serialisation]]
265 ** [[Controlling WSDL Service Location>>Web Services-Controlling WSDL Service Location]]
266 ** [[Integration with WebServicesCore on MacOS-X>>Web Services-Integration with WebServicesCore on MacOS-X]]
267 ** [[Working With Temporary GlobalIDs>>Web Services-Working With Temporary GlobalIDs]]
268
269 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
270
271 = Direct To Web (D2W) =
272
273 {{include value="Direct To Web (D2W and ERD2W)"}}{{/include}}
274
275 = Java Client, Direct to Java Client (D2JC) =
276
277 * [[Overview>>Java Client-Overview]]
278 * Direct to Java Client
279 ** [[Getting Started with Direct to Java Client (D2JC)>>Getting Started with Direct to Java Client (D2JC)]]
280 * [[Required Reading>>Java Client-Required Reading]]
281 * Building
282 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
283 ** [[WebStart WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
284 ** [[Additional Java Client files and settings>>Java Client-Additional Files and Settings]]
285 * [[Trouble-Shooting>>Java Client-Trouble Shooting]]
286 * [[Complimentary Frameworks>>Java Client-Complimentary Frameworks]]
287 * [[Advanced>>Programming__WebObjects-Java Client-Advanced]]
288 * [[Interface Builder>>Programming__WebObjects-Java Client-Interface Builder]]
289 * [[svn>>Programming__WebObjects-Java Client-svn]]
290 * [[Examples>>Programming__WebObjects-Java Client-Examples]]
291
292 = Complementary Frameworks =
293
294 == Project WONDER ==
295
296 * [[Overview>>Project WONDER-Overview]]
297 * Required Reading
298 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
299 ** [[Quickstart>>Project WONDER-Quickstart]]
300 ** [[History>>Project WONDER-History]]
301 ** [[Properties File Settings>>Project Wonder Properties Files]]
302 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
303 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
304 *** [[AjaxLook>>Project WONDER-Frameworks-AjaxLook]]
305 *** [[BTBusinessLogic>>Project WONDER-Frameworks-BTBusinessLogic]]
306 *** [[DRGrouping>>Project WONDER-Frameworks-DRGrouping]]
307 *** [[DerbyPlugIn>>Project WONDER-Frameworks-DerbyPlugIn]]
308 *** [[ERAttachment>>Project WONDER-Frameworks-ERAttachment]]
309 *** [[ERCaching>>Project WONDER-Frameworks-ERCaching]]
310 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
311 *** [[ERCaptcha>>Project WONDER-Frameworks-ERCaptcha]]
312 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
313 *** [[ERChronic>>Project WONDER-Frameworks-ERChronic]]
314 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
315 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
316 *** [[ERDivaLook>>ERDivaLook]]
317 *** [[ERDivaliteLook>>ERDivaliteLook]]
318 *** [[ERExcelLook>>Project WONDER-Frameworks-ERExcelLook]]
319 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
320 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
321 *** [[ERIUI>>Project WONDER-Frameworks-ERIUI]]
322 *** [[ERIndexing>>Project WONDER-Frameworks-ERIndexing]]
323 *** [[ERJGroupsSynchronizer>>Project WONDER-Frameworks-ERJGroupsSynchronizer]]
324 *** [[ERJQuery>>ERJQuery]]
325 *** [[ERJars>>Project WONDER-Frameworks-ERJars]]
326 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
327 *** [[ERXNavigation>>Project WONDER-Frameworks-ERXNavigation]]
328 *** [[ERMoviesLogic>>Project WONDER-Frameworks-ERMoviesLogic]]
329 *** [[ERNeutralLook>>Project WONDER-Frameworks-ERNeutralLook]]
330 *** [[EROpenID>>Project WONDER-Frameworks-EROpenID]]
331 *** [[EROraclePlugIn>>Project WONDER-Frameworks-EROraclePlugIn]]
332 *** [[ERPDFGeneration>>Project WONDER-Frameworks-ERPDFGeneration]]
333 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
334 *** [[ERPrototaculous>>ERPrototaculous]]
335 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
336 *** [[ERRest>>Project WONDER-Frameworks-ERRest]]
337 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
338 *** [[ERTaggable>>Project WONDER-Frameworks-ERTaggable]]
339 *** [[ERWorkerChannel>>Project WONDER-Frameworks-ERWorkerChannel]]
340 *** [[ExcelGenerator>>Project WONDER-Frameworks-ExcelGeneration]]
341 *** [[FrontBasePlugIn>>Project WONDER-Frameworks-FrontBasePlugIn]]
342 *** [[GoogleChart>>Project WONDER-Frameworks-GoogleChart]]
343 *** [[JavaFSAdaptor>>Project WONDER-Frameworks-JavaFSAdaptor]]
344 *** [[JavaMemoryAdaptor>>Project WONDER-Frameworks-JavaMemoryAdaptor]]
345 *** [[JavaMonitorFramework>>Project WONDER-Frameworks-JavaMonitorFramework]]
346 *** [[JavaRESTAdaptor>>Project WONDER-Frameworks-JavaRESTAdaptor]]
347 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
348 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
349 *** [[SproutCore>>Project WONDER-Frameworks-SproutCore]]
350 *** [[Validity>>Project WONDER-Frameworks-Validity]]
351 *** [[WOJavaRebel>>Project WONDER-Frameworks-WOJavaRebel]]
352 *** [[WOLips>>Project WONDER-Frameworks-WOLips]]
353 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
354 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
355 *** [[WRReporting>>Project WONDER-Frameworks-WRReporting]]
356 *** [[YUI>>Project WONDER-Frameworks-YUI]]
357 ** [[Adaptors>>Programming__WebObjects-Project WONDER-Adaptors]]
358 ** [[PlugIns>>Programming__WebObjects-Project WONDER-PlugIns]]
359 * Advanced
360 * [[Examples>>Programming__WebObjects-Project WONDER-Examples]]
361 * [[Troubleshooting>>Wonder:Troubleshooting]]
362
363 == WireHose ==
364
365 * [[Overview>>Wirehose]]
366 * Basic Concepts
367 ** [[Content Management>>Wirehose-Content Management]]
368 ** [[Personalization>>Wirehose-Personalization]]
369 ** [[Access Control>>Wirehose-Access Control]]
370 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
371 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
372 * Reference
373 ** [[Installation>>Wirehose-Installation]]
374 ** Online Reference Library
375 *** [[Developer Overview>>http://www.wirehose.com/developer/DeveloperOverview.html]]
376 *** [[Java API Reference>>http://www.wirehose.com/developer/javadoc/]]
377 *** [[Properties Reference>>http://www.wirehose.com/developer/Properties.html]]
378 *** [[Database setup>>http://www.wirehose.com/developer/DatabaseSetup.html]]
379 *** [[Regular Expressions>>http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference]]
380 * Recently Deployed Sites
381 ** [[Paizo.com>>http://www.paizo.com]]
382 ** [[Eurovision Song Contest Store>>http://www.eurovisiondownloadshop.tv/cgi-bin/WebObjects/Eurovision]]
383 ** [[Bilka Music Download Store>>http://bilka.phonofile.dk/cgi-bin/WebObjects/Bilka]]
384 ** [[Jubii Music Download Store>>http://musikdownload.jubii.dk/cgi-bin/WebObjects/Jubii]]
385 ** [[Uziing (Scandanavian "Toys-R-Us") Music Store>>http://www.uziing.com/]] (UI is all in Flash)
386
387 == LEWOStuff ==
388
389 * [[Overview>>LEWOStuff-Overview]]
390
391 == GVC Frameworks and GVC.SiteMaker ==
392
393 * [[Overview>>GVC Frameworks-Overview]]
394
395 == Houdah WebObjects Frameworks ==
396
397 * [[Overview>>Houdah WebObjects Frameworks]]
398 * [[HoudahFoundation>>HoudahFoundation]]: Extensions and additions to the Foundation framework
399 * [[HoudahEOControl>>HoudahEOControl]]: Extensions and additions to the EOControl framework
400 * [[HoudahEOAccess>>HoudahEOAccess]]: Extensions and additions to the EOAccess framework
401 * [[HoudahRuleEngine>>HoudahRuleEngine]]: Rule engine used by several of the below frameworks
402 * [[HoudahEOValidation>>HoudahEOValidation]]: Rule based validation
403 * [[HoudahMessages>>HoudahMessages]]: Rule based localizable error messages
404 * [[HoudahAuditTrail>>HoudahAuditTrail]]: Tracks user and timestamp of last change
405 * [[HoudahViewComponents>>HoudahViewComponents]]: High level, large grain view components using stateless cells
406 * [[HoudahControlComponents>>HoudahControlComponents]]: Control layer for EOF based CRUD applications
407 * [[HoudahAgileComponents>>HoudahAgileComponents]]: Rule based control layer for CRUD application (D2W replacement)
408
409 == WOGWT (Google Web Toolkit Integration) ==
410
411 * [[WOGWT Website>>http://code.google.com/p/wogwt]]
412
413 == JBND Data binding ==
414
415 * [[JBND Website>>http://web.mac.com/flor385/JBND]]
416 * [[JBND Wikipedia>>http://en.wikipedia.org/wiki/JBND]]
417
418 == Validation Next Generation (enhanced validation) ==
419
420 [[Validation Next Generation]]
421
422 = Development Tools =
423
424 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
425 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
426 * [[Browser as a Development Tool]]
427 * [[Xcode>>Development Tools-Xcode]]
428 * [[EOModeler>>EOF-Modeling-EOModeler]]
429 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
430 * [[Running Though Apache>>Development Tools-Running Through Apache]]
431 * [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
432 * [[Hudson>>Installing and Using the Hudson build server]]
433 * [[JRebel>>Using JRebel (previously called JavaRebel) with WOLips]]
434
435 = Case Studies =
436
437 * [[iTunes Music Store>>Programming__WebObjects-Case Studies-iTunes Music Store]]
438 * [[.Mac>>Programming__WebObjects-Case Studies-.Mac]]
439 * [[Apple Store>>Programming__WebObjects-Case Studies-Apple Store]]
440 * [[Original Dell Store>>Programming__WebObjects-Case Studies-Original Dell Store]]
441 * [[Radar>>Programming__WebObjects-Case Studies-Radar]]
442 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
443 * [[EverLearn>>Case Studies-EverLearn]]
444 * [[WebObjects Showcase>>WebObjects Showcase]]
445 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
446
447 = Integration with other clients =
448
449 * [[Flex]]
450 * [[Open Laszlo]]
451 * [[Mozilla XUL]]
452 * [[Cocoa]]
453 * [[Eclipse Rich Client Platform (RCP)>>WO:Eclipse Rich Client Platform (RCP)]]
454
455 = Testing =
456
457 * [[JUnit and TestNG>>Testing-JUnit and TestNG]]
458 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
459 * [[WOUnitTest>>Testing-WOUnitTest]]
460
461 = Database Compatibility / Comparisons =
462
463 * [[FrontBase>>Database Compatibility and Comparisons-FrontBase]]
464 * [[OpenBase>>Database Compatibility and Comparisons-OpenBase]]
465 * [[MySQL>>Database Compatibility and Comparisons-MySQL]]
466 * [[PostgreSQL>>Database Compatibility and Comparisons-PostgreSQL]]
467 * [[Oracle>>Database Compatibility and Comparisons-Oracle]]
468 * [[Sybase>>Database Compatibility and Comparisons-Sybase]]
469 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
470 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
471 * [[Informix>>Database Compatibility and Comparisons-Informix]]
472
473 = Alternative Technologies Pros / Cons =
474
475 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
476 * [[ASP.NET + Monorail>>Programming__WebObjects-Alternative Technologies-ASP.NET+Monorail]]
477 * [[JSP and Taglibs>>Programming__WebObjects-Alternative Technologies-JSP and Taglibs]]
478 * [[EJB>>Programming__WebObjects-Alternative Technologies-EJB]]
479 * [[Hibernate>>Programming__WebObjects-Alternative Technologies-Hibernate]]
480 * [[Core Data>>Programming__WebObjects-Alternative Technologies-Core Data]]
481 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
482 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
483 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
484 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
485 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
486 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
487
488 = Additional Resources =
489
490 * [[Websites>>Additional Resources-Websites]]
491 * [[Mailing Lists>>Mailing Lists]]
492 * [[Tutorials>>Tutorials]]
493 * [[Books>>Additional Resources-Books]]
494 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
495 * [[Authors>>Additional Resources-Authors]]
496 * [[Training>>Additional Resources-WebObjects Training]]
497 * [[User groups]]
498 * [[Known Bugs]]