Wiki source code of Home

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

Hide last authors
David Avendasora 1080.1 1 This site replaces the [[wikibook>>http://en.wikibooks.org/wiki/Programming:WebObjects]], which has been deprecated.
2 [[image:hero_webobjects.jpg||align="right" vspace="4" hspace="4"]]
fisherja 1057.1 3
Kieran Kelleher 1130.1 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.
fisherja 1057.1 5
David Avendasora 1080.1 6 It provides a powerful and mature set of Object-Oriented frameworks for managing Object-Relational Mapping ([[ORM>>http://en.wikipedia.org/wiki/Object-relational_mapping]]) to any JDBC-compliant database, Session Management, Undo/Redo/Revert, Ajax, Web Services, full Java Client applications, Rapid Application Development, Streaming Media, file upload/download and many other popular internet and enterprise application technologies.
fisherja 1057.1 7
David Avendasora 1080.1 8 Originally developed by NeXT Computer Inc., in the mid 1990s, it was ported by Apple to Mac OS X and Mac OS X Server in Objective-C and then completely translated to Java for version 5.0.
Pascal Robert 602.1 9
David Avendasora 1080.1 10 It is an incredibly flexible set of frameworks exemplified by Apple's own use of it for such varied applications as the [[iTunes Music Store>>http://phobos.apple.com/WebObjects/MZStore.woa/wa/storeFront]], the on-line [[Apple Store>>http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore/]], the [[.Mac>>http://www.mac.com/WebObjects/Welcome]] group of services including Web-Mail and Calendaring and their [[website>>http://www.apple.com]]. as well as many applications developed and deployed by [[others>>http://www.dyned.com/cgi-bin/WebObjects/WOShowcase]].
Pascal Robert 602.1 11
Pascal Robert 1125.1 12 It has a very active [[developer community>>http://www.wocommunity.org/]] and offers excellent support through the very popular [[WebObjects Development>>http://lists.apple.com/archives/webobjects-dev]] and [[WO Deployment>>http://lists.apple.com/archives/webobjects-deploy]] email lists.
Quinton Dolan 1078.1 13
David Avendasora 1080.1 14 In addition Apple, Inc. also provides [[free>>http://www.apple.com/support/webobjects/]] and [[paid-for>>http://www.apple.com/services/technicalsupport/]] support options.
15
16 |= Contents
Kieran Kelleher 1174.1 17 | {{section}}\ {toc:style=disc|indent=20px}\ \
David Holt 1088.1 18 \
19 {{/section}}
David Avendasora 1080.1 20
21 = Introduction =
22
23 * [[What is WebObjects?>>Overview-What is WebObjects]]
24 * [[History>>Overview-History]]
Ravi Mendis 1126.1 25 * [[Foundation>>Overview-Foundation]]
David Avendasora 1080.1 26 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
David Holt 1168.1 27 * [[Scratch Setup of WebObjects Development on a Mac>>Scratch Setup of WebObjects Development on a Mac]]
Ravi Mendis 1126.1 28 * [[Hands On Hello World - Your First WebObjects Application>>Hello World - Your First WebObjects Application]]
Pascal Robert 602.1 29 * [[Recent Changes>>http://wiki.objectstyle.org/confluence/pages/recentlyupdated.action?key=WO]]
30 * [[WebObjects for Database Developers]]
31 * [[Naming Conventions]]
32
David Avendasora 1080.1 33 = License =
Pascal Robert 602.1 34
Pascal Robert 1125.1 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:
Pascal Robert 602.1 36
Pascal Robert 1125.1 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.
Pascal Robert 602.1 38
Pascal Robert 1125.1 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
David Avendasora 1080.1 41 = Foundation =
Pascal Robert 602.1 42
Ravi Mendis 1126.1 43 * [[Foundation>>Overview-Foundation]]
David Avendasora 1080.1 44 * [[Key-Value Coding>>Overview-Key Value Coding]]
Pascal Robert 602.1 45
David Avendasora 1080.1 46 = Enterprise Object Framework (EOF) =
Pascal Robert 602.1 47
David Avendasora 1080.1 48 == Introduction ==
Pascal Robert 602.1 49
David Avendasora 1080.1 50 * [[Overview>>EOF-Overview]]
Pascal Robert 602.1 51
David Avendasora 1080.1 52 == Modeling ==
Pascal Robert 602.1 53
Ravi Mendis 1126.1 54 * [[Overview>>EOF-Modeling-Overview]]
Pascal Robert 602.1 55 * Required Reading
David Avendasora 1080.1 56 ** [[Entities>>EOF-Modeling-Entities]]
57 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
58 ** [[Attributes>>EOF-Modeling-Attributes]]
Pascal Robert 602.1 59 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
David Avendasora 1080.1 60 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
Ravi Mendis 1126.1 61 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
Pascal Robert 602.1 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]]
David Avendasora 1080.1 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]]
Pascal Robert 602.1 69 * Advanced
Ravi Mendis 1126.1 70 ** [[JDBC>>EOF-Modeling-JDBC]]
Pascal Robert 602.1 71 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
72 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
David Avendasora 1080.1 73 ** [[Prototypes>>EOF-Modeling-Prototypes]]
Pascal Robert 602.1 74 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
David Avendasora 1080.1 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]]
Pascal Robert 602.1 78
David Avendasora 1080.1 79 == Using EOF ==
Pascal Robert 602.1 80
David Avendasora 1080.1 81 * [[Overview>>EOF-Using EOF-Overview]]
Pascal Robert 602.1 82 * Required Reading
David Avendasora 1080.1 83 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
Pascal Robert 602.1 84 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
David Avendasora 1080.1 85 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
Pascal Robert 602.1 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]]
David Avendasora 1080.1 89 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
Ravi Mendis 1126.1 90 ** [[Faulting>>EOF-Using EOF-Faulting]]
91 ** [[Fetching>>EOF-Using EOF-Fetching]]
Pascal Robert 602.1 92 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
Ravi Mendis 1126.1 93 ** [[Deleting>>EOF-Using EOF-Deleting]]
David Avendasora 1080.1 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]]
Pascal Robert 602.1 100 * Advanced
David Avendasora 1080.1 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]]
Pascal Robert 602.1 110 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
David Avendasora 1080.1 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]]
Pascal Robert 602.1 126 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
David Avendasora 1080.1 127 * [[Help//EOF//is//Doing//Strange//Things//>>EOF-Using EOF-Breaking EOF]]
Pascal Robert 602.1 128
David Avendasora 1080.1 129 = Web Applications =
Pascal Robert 602.1 130
David Avendasora 1080.1 131 == Introduction ==
Pascal Robert 602.1 132
Ravi Mendis 1126.1 133 * [[Overview>>Web Applications-Overview]]
Pascal Robert 602.1 134
David Avendasora 1080.1 135 == Development ==
Pascal Robert 602.1 136
137 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
Ravi Mendis 1126.1 138 * [[Beginner's Guide>>Development-Beginner's Guide]]
Pascal Robert 602.1 139 * Required Reading
David Avendasora 1080.1 140 ** [[Apache>>Development Tools-Running Through Apache]]
Pascal Robert 1154.1 141 ** [[WO Adaptor>>Development-WO Adaptor]]
Pascal Robert 602.1 142 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
Pascal Robert 1166.1 143 ** [[WO Session>>Development-WO Session]]
Pascal Robert 602.1 144 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
Pascal Robert 1160.1 145 *** [[Binding Synchronization>>Development-WO Component-Binding Synchronization]]
Pascal Robert 1162.1 146 *** [[Code, Templates, and WODs>>Development-WO Component-Code Template and WODs]]
Ravi Mendis 1126.1 147 *** [[Built-in Components>>Development-WO Component-Built-in Components]]
148 ** [[Component Actions>>Development-Component Actions]]
149 ** [[Direct Actions>>Development-Direct Actions]]
Pascal Robert 602.1 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]]
Ravi Mendis 1126.1 152 ** [[Authentication and Security>>Development-Authentication and Security]]
153 ** [[General Best Practices>>Development-General Best Practices]]
David Holt 1168.1 154 ** [[WOForm Best Practices>>Development-WOForm Best Practices]]
Pascal Robert 1162.1 155 ** [[WODisplayGroup>>Development-WODisplayGroup]]
Ravi Mendis 1126.1 156 ** [[Debugging Techniques>>Development-Debugging Techniques]]
157 ** [[Direct Connect>>Development-Direct Connect]]
158 ** [[Frameworks>>Development-Frameworks]]
159 ** [[Ajax>>Development-Ajax]]
160 ** [[CSS>>Development-CSS]]
Pascal Robert 1146.1 161 ** [[Sending Emails>>Development-Sending Emails]]
Pascal Robert 602.1 162 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
163 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
Ravi Mendis 1126.1 164 ** [[Common Pitfalls and Troubleshooting>>Development-Common Pitfalls and Troubleshooting]]
Pascal Robert 602.1 165 * Advanced
Ravi Mendis 1126.1 166 ** [[Application Server URL Creation>>Development-UrlCreation]]
167 ** [[Audit Trails>>Development-Audit Trails]]
168 ** [[Backtracking>>Development-Backtracking]]
Pascal Robert 602.1 169 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
Pascal Robert 1154.1 170 ** [[Image Thumbnailing>>Development-Thumbnailing]]
Ravi Mendis 1126.1 171 ** [[Database vs Filesystem (aka Images in the Database?)>>Development-Database vs Filesystem]]
Pascal Robert 602.1 172 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
Pascal Robert 1146.1 173 ** [[Stateless Components>>Development-Stateless Components]]
Pascal Robert 602.1 174 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
Pascal Robert 1162.1 175 ** [[WOEvents and Logging>>Development-WOEvents and Logging]]
Pascal Robert 1134.1 176 ** [[PDF Generation>>Development-PDF Generation]]
Ravi Mendis 1126.1 177 ** [[Excel Generation>>Development-Excel Generation]]
Pascal Robert 1146.1 178 ** [[SSL>>Development-SSL requests via https protocol]]
David Holt 1168.1 179 ** [[Localization and Internationalization>>Development-Localization and Internationalization]]
Pascal Robert 1146.1 180 ** [[Testing and JUnit>>Development-Testing and JUnit]]
Ravi Mendis 1126.1 181 ** [[Custom Error Handling>>Development-Custom Error Handling]]
Pascal Robert 602.1 182 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
Ravi Mendis 1126.1 183 ** [[Custom Templates>>Development-Custom Templates]]
184 ** [[Calling Commandline Applications>>Calling Commandline Applications]]
Pascal Robert 602.1 185 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
Pascal Robert 1144.1 186 ** [[Profiling WO Apps>>Development-Profiling WO Apps]]
Ravi Mendis 1126.1 187 ** [[J2EE Integration>>Development-J2EE Integration]]
Pascal Robert 1154.1 188 ** [[Third Party Jars>>Development-Third Party Jars]]
Ravi Mendis 1126.1 189 ** [[Generating Static Pages>>Development-Generating Static Pages]]
David Avendasora 1080.1 190 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
Ravi Mendis 1126.1 191 ** [[Custom Resource Manager>>Development-Custom Resource Manager]]
Pascal Robert 1134.1 192 ** [[Persistent Sessions>>Development-Persistent Sessions]]
Ravi Mendis 1126.1 193 ** [[How Forms Work>>Development-How Forms Work]]
194 * [[Development on Windows>>Development-Development on Windows]]
Pascal Robert 1154.1 195 * [[Tips and Tricks>>Development-Tips and Tricks]]
Pascal Robert 602.1 196 * Examples
Ravi Mendis 1126.1 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]]
Pascal Robert 602.1 207
David Avendasora 1080.1 208 == Deployment ==
Pascal Robert 602.1 209
Ravi Mendis 1126.1 210 * [[Overview>>Deployment-Overview]]
Pascal Robert 602.1 211 * Required Reading
Ravi Mendis 1126.1 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]]
David Avendasora 1080.1 220
Pascal Robert 602.1 221 * Advanced
Ravi Mendis 1126.1 222 ** [[WOStats>>Deployment-WOStats]]
223 ** [[Additional Monitoring>>Deployment-Additional Monitoring]]
Pascal Robert 1125.1 224 ** [[Debugging wotaskd and JavaMonitor]]
Ravi Mendis 1126.1 225 ** [[Scheduled Restart>>Deployment-Scheduled Restart]]
Pascal Robert 602.1 226 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
Ravi Mendis 1126.1 227 ** [[J2EE and Servlet Deployment>>Deployment-J2EE and Servlet Deployment]]
228 ** [[Tomcat Deployment>>Deployment-Tomcat Deployment]]
Pascal Robert 602.1 229 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
Ravi Mendis 1126.1 230 ** [[Killing WOA Processes>>Deployment-Killing WOA Processes]]
231 ** [[Debugging Frozen Deployed Instances>>Deployment-Debugging Frozen Deployed Instances]]
232 ** [[WOAdaptorInfo>>Deployment-WOAdaptorInfo]]
David Avendasora 1080.1 233
Pascal Robert 602.1 234 * Platform Specifics
Ravi Mendis 1126.1 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]]
David Holt 1168.1 243 ** [[Current Windows (WO 5.4 on Win2003)>>Deployment-Windows WO 5.3 - WO 5.4]]
David Avendasora 1080.1 244
Pascal Robert 602.1 245 * Helpful Tools & Shellscripts
Ravi Mendis 1126.1 246 ** [[Capistrano (Overview)>>Deployment-Capistrano (Overview)]]
Pascal Robert 602.1 247
David Avendasora 1080.1 248 = Web Services =
Pascal Robert 602.1 249
250 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
251 * Required Reading
David Avendasora 1080.1 252 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
253 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
Pascal Robert 602.1 254 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
David Avendasora 1080.1 255 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
Pascal Robert 602.1 256 * General Info
David Avendasora 1080.1 257 ** [[Instructions for .NET consuming Direct to WebServices>>Web Services-Instructions for .NET consuming Direct to WebServices]]
258 ** [[Testing Services with Terminal>>Web Services-Testing Services with Terminal]]
Pascal Robert 602.1 259 * Advanced
David Avendasora 1080.1 260 ** [[Sending Large Data>>Web Services-Sending Large Data]]
261 ** [[How to Trust Any SSL Certificate>>Web Services-How to Trust Any SSL Certificate]]
262 ** [[Problems>>Web Services-Problems]]
263 ** [[Controlling Enterprise Object Serialisation>>Web Services-Controlling Enterprise Object Serialisation]]
264 ** [[Controlling WSDL Service Location>>Web Services-Controlling WSDL Service Location]]
265 ** [[Integration with WebServicesCore on MacOS-X>>Web Services-Integration with WebServicesCore on MacOS-X]]
266 ** [[Working With Temporary GlobalIDs>>Web Services-Working With Temporary GlobalIDs]]
Pascal Robert 602.1 267
268 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
269
Kieran Kelleher 1174.1 270 = Direct To Web (D2W) =
fisherja 1057.1 271
Kieran Kelleher 1174.1 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
David Holt 1088.1 292 = Java Client, Direct to Java Client (D2JC) =
293
David Avendasora 1080.1 294 * [[Overview>>Java Client-Overview]]
David Holt 1088.1 295 * Direct to Java Client
296 ** [[Getting Started with Direct to Java Client (D2JC)>>Getting Started with Direct to Java Client (D2JC)]]
David Avendasora 1080.1 297 * [[Required Reading>>Java Client-Required Reading]]
298 * Building
299 ** [[Client-Side Classes JAR>>Java Client-WebStart Distribution Building]]
David Holt 1088.1 300 ** [[WebStart WOLips Incremental Builder>>Java Client-WebStart Incremental Build]]
David Avendasora 1080.1 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]]
fisherja 1057.1 308
David Avendasora 1080.1 309 = Complementary Frameworks =
310
311 == Project WONDER ==
312
313 * [[Overview>>Project WONDER-Overview]]
Pascal Robert 602.1 314 * Required Reading
David Holt 1168.1 315 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
David Avendasora 1080.1 316 ** [[Quickstart>>Project WONDER-Quickstart]]
317 ** [[History>>Project WONDER-History]]
David Holt 1088.1 318 ** [[Properties File Settings>>Project Wonder Properties Files]]
Pascal Robert 602.1 319 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
David Avendasora 1080.1 320 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
David Holt 1088.1 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]]
David Avendasora 1080.1 327 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
David Holt 1088.1 328 *** [[ERCaptcha>>Project WONDER-Frameworks-ERCaptcha]]
David Avendasora 1080.1 329 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
David Holt 1088.1 330 *** [[ERChronic>>Project WONDER-Frameworks-ERChronic]]
Pascal Robert 602.1 331 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
332 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
David Holt 1088.1 333 *** [[ERDivaLook>>ERDivaLook]]
Kieran Kelleher 1130.1 334 *** [[ERDivaliteLook>>Wonder:ERDivaliteLook Framework]]
David Holt 1088.1 335 *** [[ERExcelLook>>Project WONDER-Frameworks-ERExcelLook]]
David Avendasora 1080.1 336 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
337 *** [[ERIMAdaptor>>Project WONDER-Frameworks-ERIMAdaptor]]
David Holt 1088.1 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]]
David Avendasora 1080.1 343 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
David Holt 1088.1 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]]
David Avendasora 1080.1 350 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
David Holt 1088.1 351 *** [[ERPrototaculous>>ERPrototaculous]]
Pascal Robert 602.1 352 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
David Holt 1088.1 353 *** [[ERRest>>Project WONDER-Frameworks-ERRest]]
David Avendasora 1080.1 354 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
David Holt 1088.1 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]]
Pascal Robert 602.1 364 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
David Avendasora 1080.1 365 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
David Holt 1088.1 366 *** [[SproutCore>>Project WONDER-Frameworks-SproutCore]]
David Avendasora 1080.1 367 *** [[Validity>>Project WONDER-Frameworks-Validity]]
David Holt 1088.1 368 *** [[WOJavaRebel>>Project WONDER-Frameworks-WOJavaRebel]]
369 *** [[WOLips>>Project WONDER-Frameworks-WOLips]]
David Avendasora 1080.1 370 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
371 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
David Holt 1088.1 372 *** [[WRReporting>>Project WONDER-Frameworks-WRReporting]]
373 *** [[YUI>>Project WONDER-Frameworks-YUI]]
Pascal Robert 602.1 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
David Avendasora 1080.1 380 == WireHose ==
Pascal Robert 602.1 381
Ravi Mendis 1126.1 382 * [[Overview>>Wirehose]]
Pascal Robert 602.1 383 * Basic Concepts
Ravi Mendis 1126.1 384 ** [[Content Management>>Wirehose-Content Management]]
David Avendasora 1080.1 385 ** [[Personalization>>Wirehose-Personalization]]
386 ** [[Access Control>>Wirehose-Access Control]]
387 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
388 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
Pascal Robert 602.1 389 * Reference
David Avendasora 1080.1 390 ** [[Installation>>Wirehose-Installation]]
Pascal Robert 602.1 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
David Avendasora 1080.1 404 == LEWOStuff ==
Pascal Robert 602.1 405
David Avendasora 1080.1 406 * [[Overview>>LEWOStuff-Overview]]
Pascal Robert 602.1 407
David Avendasora 1080.1 408 == GVC Frameworks and GVC.SiteMaker ==
Pascal Robert 602.1 409
David Avendasora 1080.1 410 * [[Overview>>GVC Frameworks-Overview]]
Pascal Robert 602.1 411
David Avendasora 1080.1 412 == Houdah WebObjects Frameworks ==
fisherja 1057.1 413
Ravi Mendis 1126.1 414 * [[Overview>>Houdah WebObjects Frameworks]]
David Avendasora 1080.1 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
David Holt 1088.1 435 == Validation Next Generation (enhanced validation) ==
436
437 [[Validation Next Generation]]
438
David Avendasora 1080.1 439 = Development Tools =
440
Pascal Robert 602.1 441 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
David Avendasora 1080.1 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]]
Pascal Robert 602.1 446 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
David Avendasora 1080.1 447 * [[Running Though Apache>>Development Tools-Running Through Apache]]
Pascal Robert 1154.1 448 * [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
David Holt 1088.1 449 * [[Hudson>>Installing and Using the Hudson build server]]
450 * [[JRebel>>Using JRebel (previously called JavaRebel) with WOLips]]
Pascal Robert 602.1 451
David Avendasora 1080.1 452 = Case Studies =
Pascal Robert 602.1 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]]
David Avendasora 1080.1 459 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
460 * [[EverLearn>>Case Studies-EverLearn]]
461 * [[WebObjects Showcase>>WebObjects Showcase]]
462 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
Pascal Robert 602.1 463
David Avendasora 1080.1 464 = Integration with other clients =
Pascal Robert 602.1 465
David Avendasora 1080.1 466 * [[Flex]]
467 * [[Open Laszlo]]
468 * [[Mozilla XUL]]
469 * [[Cocoa]]
Kieran Kelleher 1174.1 470 * [[WO:Eclipse Rich Client Platform (RCP)]]
Pascal Robert 602.1 471
David Avendasora 1080.1 472 = Testing =
Pascal Robert 602.1 473
David Holt 1088.1 474 * [[JUnit and TestNG>>Testing-JUnit and TestNG]]
David Avendasora 1080.1 475 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
476 * [[WOUnitTest>>Testing-WOUnitTest]]
Pascal Robert 602.1 477
David Avendasora 1080.1 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]]
Pascal Robert 602.1 486 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
David Avendasora 1080.1 487 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
488 * [[Informix>>Database Compatibility and Comparisons-Informix]]
Pascal Robert 602.1 489
David Avendasora 1080.1 490 = Alternative Technologies Pros / Cons =
Pascal Robert 602.1 491
David Avendasora 1080.1 492 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
Pascal Robert 602.1 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]]
David Avendasora 1080.1 500 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
Pascal Robert 602.1 501 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
502 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
503 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
504
David Avendasora 1080.1 505 = Additional Resources =
Pascal Robert 602.1 506
David Avendasora 1080.1 507 * [[Websites>>Additional Resources-Websites]]
508 * [[Mailing Lists>>Mailing Lists]]
509 * [[Tutorials>>Tutorials]]
510 * [[Books>>Additional Resources-Books]]
Pascal Robert 602.1 511 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
David Avendasora 1080.1 512 * [[Authors>>Additional Resources-Authors]]
513 * [[Training>>Additional Resources-WebObjects Training]]
514 * [[User groups]]
515 * [[Known Bugs]]