Wiki source code of Programming__WebObjects

Version 775.1 by Pascal Robert on 2010/09/11 23:53

Hide last authors
Pascal Robert 213.1 1 WebObjects is a an integrated suite of freely available Java frameworks and tools that helps a developer to develop scalable, sophisticated applications for the Internet on most computers with Java support.
2
3 It is the most mature platform available for enterprise level web server development, providing object oriented framework support for relational database object persistence (in any JDBC compliant database), Ajax, Web Services, streaming media, Java Client, Rapid Application Development, file upload/download and many other popular web technologies.
4
5 Originally developed by and for NeXT computers in the mid 1990's, it was ported by Apple to Mac OS X and Mac OS X Server under Objective C and then completely translated to Java. It is the technology on which Apple's own iTunes Music Store was developed.
6
7 It has a very active and helpful developer community with mailing list support at the [[WO Developer Mailing List>>http://lists.apple.com/archives/Webobjects-dev]].
8
9 = Introduction =
10
Pascal Robert 627.1 11 * [[What is WebObjects?>>Overview-What is WebObjects]]
Pascal Robert 635.1 12 * [[History>>Overview-History]]
Pascal Robert 213.1 13 * Naming Conventions
Pascal Robert 775.1 14 <blockquote>
15 The naming convention for objects in WebObjects is that names are written in what is now called "camel case".
16
17 The various prefixes are not hard to explain. The "NS" stands for "NextStep", the "EO" for "EnterpriseObject", the "WO" for WebObjects.
18 </blockquote>
19
David Avendasora 681.1 20 * [[Foundation>>Overview-Foundation]]
Pascal Robert 635.1 21 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
Pascal Robert 213.1 22 * [[-Hands On__ Hello World - Your First WebObjects Application-]]
23 * [[Recent Changes>>http://en.wikibooks.org/w/index.php?title=Special:Recentchangeslinked&target=Programming%3AWebObjects]]
24 * [[WebObjects for Database Developers]]
25
26 = License =
27
Pascal Robert 775.1 28 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 213.1 29
Pascal Robert 775.1 30 <blockquote>
31 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.
32 </blockquote>
Pascal Robert 213.1 33
Pascal Robert 775.1 34 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]].
35
Pascal Robert 213.1 36 = Foundation =
37
David Avendasora 681.1 38 * [[Foundation>>Overview-Foundation]]
Pascal Robert 635.1 39 * [[Key Value Coding>>Overview-Key Value Coding]]
Pascal Robert 213.1 40
41 = Enterprise Object Framework (EOF) =
42
43 == Introduction ==
44
Pascal Robert 635.1 45 * [[Overview>>EOF-Overview]]
Pascal Robert 213.1 46
47 == Modeling ==
48
David Avendasora 681.1 49 * [[Overview>>EOF-Modeling-Overview]]
Pascal Robert 213.1 50 * Required Reading
Pascal Robert 645.1 51 ** [[Entities>>EOF-Modeling-Entities]]
52 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
53 ** [[Attributes>>EOF-Modeling-Attributes]]
Pascal Robert 213.1 54 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
Pascal Robert 645.1 55 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
David Avendasora 681.1 56 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
Pascal Robert 213.1 57 ** [[SQL Generation>>Programming__WebObjects-EOF-Modeling-SQL Generation]]
58 ** [[Code Generation>>Programming__WebObjects-EOF-Modeling-Code Generation]]
59 ** [[Reverse Engineering>>Programming__WebObjects-EOF-Modeling-Reverse Engineering]]
Pascal Robert 645.1 60 ** [[Common Pitfalls and Troubleshooting>>EOF-Modeling-Common Pitfalls and Troubleshooting]]
61 ** [[EOModeler>>EOF-Modeling-EOModeler]]
62 ** [[EOModeler on Windows>>EOF-Modeling-EOModeler on Windows]]
63 ** [[Booleans>>EOF-Modeling-Booleans]]
Pascal Robert 213.1 64 * Advanced
David Avendasora 681.1 65 ** [[JDBC>>EOF-Modeling-JDBC]]
Pascal Robert 213.1 66 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
67 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
Pascal Robert 645.1 68 ** [[Prototypes>>EOF-Modeling-Prototypes]]
Pascal Robert 213.1 69 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
Pascal Robert 645.1 70 ** [[Custom Attributes>>EOF-Modeling-Custom Attributes]]
71 * [[Examples>>EOF-Modeling-Examples]]
Pascal Robert 213.1 72
73 == Using EOF ==
74
Pascal Robert 645.1 75 * [[Overview>>EOF-Using EOF-Overview]]
Pascal Robert 213.1 76 * Required Reading
Pascal Robert 645.1 77 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
Pascal Robert 213.1 78 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
Pascal Robert 645.1 79 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
Pascal Robert 213.1 80 ** [[EO Object Store>>Programming__WebObjects-EOF-Using EOF-EO Object Store]]
81 ** [[EO Database>>Programming__WebObjects-EOF-Using EOF-EO Database]]
82 ** [[EO Adaptor>>Programming__WebObjects-EOF-Using EOF-EO Adapter]]
Pascal Robert 645.1 83 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
David Avendasora 681.1 84 ** [[Faulting>>EOF-Using EOF-Faulting]]
85 ** [[Fetching>>EOF-Using EOF-Fetching]]
Pascal Robert 213.1 86 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
David Avendasora 681.1 87 ** [[Deleting>>EOF-Using EOF-Deleting]]
Pascal Robert 645.1 88 ** [[Caching and Freshness>>EOF-Using EOF-Caching and Freshness]]
89 ** [[Optimistic Locking>>EOF-Using EOF-Optimistic Locking]]
90 ** [[Memory Management>>EOF-Using EOF-Memory Management]]
91 ** [[EOF Best Practices>>EOF-Using EOF-EOF Best Practices]]
92 ** [[Configuration Settings>>EOF-Using EOF-Configuration Settings]]
93 ** [[Common Pitfalls and Troubleshooting>>EOF-Using EOF-Common Pitfalls and Troubleshooting]]
Pascal Robert 213.1 94 * Advanced
Pascal Robert 651.1 95 ** [[EOGenerator>>EOF-Using EOF-EOGenerator]]
96 ** [[Logging>>EOF-Using EOF-Logging]]
97 ** [[EOF Performance Tuning>>EOF-Using EOF-EOF Performance Tuning]]
Pascal Robert 655.1 98 ** [[Primary Keys>>EOF-Using EOF-Primary Keys]]
99 ** [[Compound Primary Keys>>EOF-Using EOF-Compound Primary Keys]]
Pascal Robert 659.1 100 ** [[Concurrency>>EOF-Using EOF-Concurrency]]
Pascal Robert 661.1 101 ** [[Validation>>EOF-Using EOF-Validation]]
102 ** [[Database Adaptors and Plugins>>EOF-Using EOF-Database Adaptors and Plugins]]
Pascal Robert 665.1 103 ** [[Undo and Redo>>EOF-Using EOF-Undo and Redo]]
Pascal Robert 213.1 104 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
Pascal Robert 665.1 105 ** [[EOSharedEditingContext>>EOF-Using EOF-EOSharedEditingContext]]
106 ** [[Raw Rows>>EOF-Using EOF-Raw Rows]]
David Avendasora 667.1 107 ** [[Batch Fetching>>EOF-Using EOF-Batch Fetching]]
108 ** [[Fetch Limits>>EOF-Using EOF-Fetch Limits]]
109 ** [[Bulk Operations>>EOF-Using EOF-Bulk Operations]]
110 ** [[Schema Changes>>EOF-Using EOF-Schema Changes]]
111 ** [[Delegates and Notifications>>EOF-Using EOF-Delegates and Notifications]]
112 ** [[Multiple Stacks or Instances>>EOF-Using EOF-Multiple Stacks or Instances]]
113 ** [[Custom Qualifiers>>EOF-Using EOF-Custom Qualifiers]]
114 ** [[Localization and Internationalization>>EOF-Using EOF-Localization and Internationalization]]
115 ** [[Default Values>>EOF-Using EOF-Default Values]]
116 ** [[Custom EOAdaptor>>EOF-Using EOF-Custom EOAdaptor]]
117 ** [[EOF Traces>>EOF-Using EOF-EOF Traces]]
118 ** [[Problems>>EOF-Using EOF-Problems]]
119 * [[Tips and Tricks>>EOF-Using EOF-Tips and Tricks]]
Pascal Robert 213.1 120 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
David Avendasora 667.1 121 * [[Help~[~[image:_EOF_is_Doing_Strange_Things~]~]>>EOF-Using EOF-Breaking EOF]]
Pascal Robert 213.1 122
123 = Web Applications =
124
125 == Introduction ==
126
Pascal Robert 775.1 127 * [[Overview>>Programming__WebObjects-Web Applications-Overview]]
Pascal Robert 213.1 128
129 == Development ==
130
131 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
132 * Required Reading
Pascal Robert 775.1 133 ** [[Apache>>Programming__WebObjects-Web Applications-Development-Apache]]
134 ** [[WO Adaptor>>Web Applications-Development-WO Adaptor]]
Pascal Robert 213.1 135 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
Pascal Robert 775.1 136 ** [[WO Session>>Web Applications-Development-WO Session]]
Pascal Robert 213.1 137 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
Pascal Robert 775.1 138 *** [[Binding Synchronization>>Web Applications-Development-WO Component-Binding Synchronization]]
139 *** [[Code, Templates, and WODs>>Web Applications-Development-WO Component-Code Template and WODs]]
140 *** [[Built-in Components>>Programming__WebObjects-Web Applications-Development-WO Component-Built-in Components]]
141 ** [[Component Actions>>Web Applications-Development-Component Actions]]
142 ** [[Direct Actions>>Web Applications-Development-Direct Actions]]
Pascal Robert 213.1 143 ** [[Request-Response Loop>>Programming__WebObjects-Web Applications-Development-Request-Response Loop]]
144 ** [[Using EOF in a WOA>>Programming__WebObjects-Web Applications-Development-Using EOF in a WOA]]
Pascal Robert 775.1 145 ** [[Authentication and Security>>Web Applications-Development-Authentication and Security]]
146 ** [[General Best Practices>>Web Applications-Development-General Best Practices]]
147 ** [[WOForm Best Practices>>Web Applications-Development-WOForm Best Practices]]
Pascal Robert 213.1 148 ** [[WODisplayGroup>>Programming__WebObjects-Web Applications-Development-WODisplayGroup]]
Pascal Robert 775.1 149 ** [[Debugging Techniques>>Programming__WebObjects-Web Applications-Development-Debugging Techniques]]
150 ** [[Direct Connect>>Web Applications-Development-Direct Connect]]
151 ** [[Frameworks>>Web Applications-Development-Frameworks]]
152 ** [[Ajax>>Web Applications-Development-Ajax]]
153 ** [[CSS>>Web Applications-Development-CSS]]
154 ** [[Sending Emails>>Web Applications-Development-Sending Emails]]
Pascal Robert 213.1 155 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
156 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
Pascal Robert 775.1 157 ** [[Common Pitfalls and Troubleshooting>>Web Applications-Development-Common Pitfalls and Troubleshooting]]
Pascal Robert 213.1 158 * Advanced
Pascal Robert 775.1 159 ** [[Audit Trails>>Web Applications-Development-Audit Trails]]
Pascal Robert 213.1 160 ** [[Backtracking>>Programming__WebObjects-Web Applications-Development-Backtracking]]
161 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
Pascal Robert 775.1 162 ** [[Image Thumbnailing>>Web Applications-Development-Thumbnailing]]
163 ** [[Database vs Filesystem (aka Images in the Database?)>>Web Applications-Development-Database vs Filesystem]]
Pascal Robert 213.1 164 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
Pascal Robert 775.1 165 ** [[Stateless Components>>Web Applications-Development-Stateless Components]]
Pascal Robert 213.1 166 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
Pascal Robert 775.1 167 ** [[WOEvents and Logging>>Web Applications-Development-WOEvents and Logging]]
168 ** [[PDF Generation>>Web Applications-Development-PDF Generation]]
169 ** [[Excel Generation>>Web Applications-Development-Excel Generation]]
170 ** [[SSL>>Web Applications-Development-SSL requests via https protocol]]
171 ** [[Localization and Internationalization>>Web Applications-Development-Localization and Internationalization]]
172 ** [[Testing and JUnit>>Web Applications-Development-Testing and JUnit]]
173 ** [[Custom Error Handling>>Web Applications-Development-Custom Error Handling]]
Pascal Robert 213.1 174 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
Pascal Robert 775.1 175 ** [[Custom Templates>>Web Applications-Development-Custom Templates]]
176 ** [[Calling Commandline Applications>>Web Applications-Development-Calling Commandline Applications]]
Pascal Robert 213.1 177 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
Pascal Robert 775.1 178 ** [[Profiling WO Apps>>Web Applications-Development-Profiling WO Apps]]
179 ** [[J2EE Integration>>Web Applications-Development-J2EE Integration]]
180 ** [[WebObjects and Subversion>>Web Applications-Development-WebObjects and Subversion]]
181 ** [[Third Party Jars>>Web Applications-Development-Third Party Jars]]
182 ** [[Generating Static Pages>>Web Applications-Development-Generating Static Pages]]
David Avendasora 667.1 183 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
Pascal Robert 775.1 184 ** [[Custom Resource Manager>>Web Applications-Development-Custom Resource Manager]]
185 ** [[Persistent Sessions>>Web Applications-Development-Persistent Sessions]]
186 ** [[How Forms Work>>Web Applications-Development-How Forms Work]]
187 * [[Development on Windows>>Web Applications-Development-Development on Windows]]
188 * [[Tips and Tricks>>Web Applications-Development-Tips and Tricks]]
Pascal Robert 213.1 189 * Examples
190 ** [[-Hands On__ Hello World - Your First WebObjects Application-]]
Pascal Robert 775.1 191 ** [[Page Layout>>Web Applications-Development-Examples-Page Layout]]
192 ** [[List Components>>Web Applications-Development-Examples-List Components]]
193 ** [[Calendar Component>>Web Applications-Development-Examples-Calendar Component]]
194 ** [[Path Inspector>>Web Applications-Development-Examples-Path Inspector]]
195 ** [[Alphabetic List>>Web Applications-Development-Examples-Alphabetic List]]
196 ** [[Login>>Web Applications-Development-Examples-Login]]
197 ** [[Anchors>>Web Applications-Development-Examples-Anchors]]
198 ** [[Open Link in New Window>>Web Applications-Development-Examples-Open Link in New Window]]
199 ** [[Return a File>>Web Applications-Development-Examples-Return a File]]
Pascal Robert 213.1 200
201 == Deployment ==
202
Pascal Robert 775.1 203 * [[Overview>>Web Applications-Deployment-Overview]]
Pascal Robert 213.1 204 * Required Reading
Pascal Robert 775.1 205 ** [[Apache>>Web Applications-Deployment-Apache]]
206 ** [[Memory Settings>>Web Applications-Deployment-Memory Settings]]
207 ** [[Standard Deployment>>Web Applications-Deployment-Standard Deployment]]
208 ** [[wotaskd>>Web Applications-Deployment-wotaskd]]
209 ** [[Java Monitor>>Web Applications-Deployment-Java Monitor]]
210 ** [[Logging>>Web Applications-Deployment-Logging]]
211 ** [[Split Install>>Programming__WebObjects-Web Applications-Deployment-Split Install]]
212 ** [[Common Pitfalls and Troubleshooting>>Web Applications-Deployment-Common Pitfalls and Troubleshooting]]
Pascal Robert 213.1 213 * Advanced
Pascal Robert 775.1 214 ** [[WOStats>>Web Applications-Deployment-WOStats]]
215 ** [[Additional Monitoring>>Web Applications-Deployment-Additional Monitoring]]
216 ** [[Scheduled Restart>>Web Applications-Deployment-Scheduled Restart]]
Pascal Robert 213.1 217 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
Pascal Robert 775.1 218 ** [[J2EE and Servlet Deployment>>Web Applications-Deployment-J2EE and Servlet Deployment]]
219 ** [[Tomcat Deployment>>Web Applications-Deployment-Tomcat Deployment]]
Pascal Robert 213.1 220 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
Pascal Robert 775.1 221 ** [[Killing WOA Processes>>Web Applications-Deployment-Killing WOA Processes]]
222 ** [[Debugging Frozen Deployed Instances>>Web Applications-Deployment-Debugging Frozen Deployed Instances]]
Pascal Robert 213.1 223 * Platform Specifics
Pascal Robert 775.1 224 ** [[Mac OS X Server>>Programming__WebObjects-Web Applications-Deployment-Mac OS X Server]]
225 ** [[Linux>>Programming__WebObjects-Web Applications-Deployment-Linux]]
226 ** [[Solaris>>Programming__WebObjects-Web Applications-Deployment-Solaris WO5.3.3]]
227 ** [[FreeBSD WO5.2>>Web Applications-Deployment-FreeBSD WO5.2]]
228 ** [[FreeBSD WO5.3>>Web Applications-Deployment-FreeBSD WO5.3]]
229 ** [[FreeBSD 6.2 WO 5.3.3>>Web Applications-Deployment-FreeBSD 6.2 WO5.3.3]]
230 ** [[FreeBSD 6.x WO 5.3.3 using port system with many options>>Web Applications-Deployment-FreeBSD 6.x WO 5.3.3 port]]
231 ** [[Windows>>Web Applications-Deployment-Windows]]
Pascal Robert 213.1 232 * Helpful Tools & Shellscripts
233
234 = Web Services =
235
236 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
237 * Required Reading
David Avendasora 667.1 238 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
239 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
Pascal Robert 213.1 240 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
David Avendasora 667.1 241 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
Pascal Robert 213.1 242 * General Info
David Avendasora 667.1 243 ** [[Instructions for .NET consuming Direct to WebServices>>Web Services-Instructions for .NET consuming Direct to WebServices]]
244 ** [[Testing Services with Terminal>>Web Services-Testing Services with Terminal]]
Pascal Robert 213.1 245 * Advanced
David Avendasora 667.1 246 ** [[Sending Large Data>>Web Services-Sending Large Data]]
247 ** [[How to Trust Any SSL Certificate>>Web Services-How to Trust Any SSL Certificate]]
248 ** [[Problems>>Web Services-Problems]]
249 ** [[Controlling Enterprise Object Serialisation>>Web Services-Controlling Enterprise Object Serialisation]]
250 ** [[Controlling WSDL Service Location>>Web Services-Controlling WSDL Service Location]]
251 ** [[Integration with WebServicesCore on MacOS-X>>Web Services-Integration with WebServicesCore on MacOS-X]]
252 ** [[Working With Temporary GlobalIDs>>Web Services-Working With Temporary GlobalIDs]]
Pascal Robert 213.1 253
254 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
255
256 = Complementary Frameworks =
257
258 == Project WONDER ==
259
David Avendasora 667.1 260 * [[Overview>>Project WONDER-Overview]]
Pascal Robert 213.1 261 * Required Reading
Pascal Robert 775.1 262 ** [[Installing>>Project WONDER-Installing]]
David Avendasora 667.1 263 ** [[Quickstart>>Project WONDER-Quickstart]]
264 ** [[History>>Project WONDER-History]]
Pascal Robert 213.1 265 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
David Avendasora 667.1 266 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
Pascal Robert 213.1 267 *** [[DynaReporting>>Programming__WebObjects-Project WONDER-Frameworks-DynaReporting]]
David Avendasora 667.1 268 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
269 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
Pascal Robert 213.1 270 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
271 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
David Avendasora 667.1 272 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
Pascal Robert 213.1 273 *** [[ERIMAdaptor>>Programming__WebObjects-Project WONDER-Frameworks-ERIMAdaptor]]
David Avendasora 667.1 274 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
275 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
Pascal Robert 213.1 276 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
David Avendasora 667.1 277 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
278 *** [[ExcelGeneration>>Project WONDER-Frameworks-ExcelGeneration]]
Pascal Robert 213.1 279 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
David Avendasora 667.1 280 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
Pascal Robert 213.1 281 *** [[SVGObjects>>Programming__WebObjects-Project WONDER-Frameworks-SVGObjects]]
David Avendasora 667.1 282 *** [[Validity>>Project WONDER-Frameworks-Validity]]
283 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
284 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
Pascal Robert 213.1 285 ** [[Adaptors>>Programming__WebObjects-Project WONDER-Adaptors]]
286 ** [[PlugIns>>Programming__WebObjects-Project WONDER-PlugIns]]
287 * Advanced
288 * [[Examples>>Programming__WebObjects-Project WONDER-Examples]]
289
290 == WireHose ==
291
Pascal Robert 775.1 292 * [[Overview>>Wirehose-Overview]]
Pascal Robert 213.1 293 * Basic Concepts
Pascal Robert 775.1 294 ** [[Content Management>>Programming__WebObjects-Wirehose-Content Management]]
Pascal Robert 213.1 295 ** [[Personalization>>Programming__WebObjects-Wirehose-Personalization]]
David Avendasora 667.1 296 ** [[Access Control>>Wirehose-Access Control]]
297 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
298 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
Pascal Robert 213.1 299 * Reference
300 ** [[Installation>>Programming__WebObjects-Wirehose-Installation]]
301 ** Online Reference Library
302 *** [[Developer Overview>>http://www.wirehose.com/developer/DeveloperOverview.html]]
303 *** [[Java API Reference>>http://www.wirehose.com/developer/javadoc/]]
304 *** [[Properties Reference>>http://www.wirehose.com/developer/Properties.html]]
305 *** [[Database setup>>http://www.wirehose.com/developer/DatabaseSetup.html]]
306 *** [[Regular Expressions>>http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference]]
307 * Recently Deployed Sites
308 ** [[Paizo.com>>http://www.paizo.com]]
309 ** [[Eurovision Song Contest Store>>http://www.eurovisiondownloadshop.tv/cgi-bin/WebObjects/Eurovision]]
310 ** [[Bilka Music Download Store>>http://bilka.phonofile.dk/cgi-bin/WebObjects/Bilka]]
311 ** [[Jubii Music Download Store>>http://musikdownload.jubii.dk/cgi-bin/WebObjects/Jubii]]
312 ** [[Uziing (Scandanavian "Toys-R-Us") Music Store>>http://www.uziing.com/]] (UI is all in Flash)
313
314 == LEWOStuff ==
315
David Avendasora 667.1 316 * [[Overview>>LEWOStuff-Overview]]
Pascal Robert 213.1 317
318 == GVC Frameworks and GVC.SiteMaker ==
319
David Avendasora 667.1 320 * [[Overview>>GVC Frameworks-Overview]]
Pascal Robert 213.1 321
322 = Development Tools =
323
324 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
David Avendasora 667.1 325 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
Johann Werner 679.1 326 * [[Xcode>>Development Tools-Xcode]]
Pascal Robert 645.1 327 * [[EOModeler>>EOF-Modeling-EOModeler]]
Pascal Robert 213.1 328 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
David Avendasora 667.1 329 * [[Running Though Apache>>Development Tools-Running Through Apache]]
Pascal Robert 213.1 330
331 = Direct-To =
332
333 * [[Overview>>Programming__WebObjects-Direct-To-Overview]]
334 * Required Reading
David Avendasora 667.1 335 ** [[Web>>Direct-To-Web]]
Pascal Robert 213.1 336 ** [[Java Client>>Programming__WebObjects-Direct-To-Java Client]]
337 ** [[Common Pitfalls and Troubleshooting>>Programming__WebObjects-Direct-To-Common Pitfalls and Troubleshooting]]
338 * Advanced
339 ** [[ERD2W - part of the WONDER frameworks>>Programming__WebObjects-Direct-To-ERD2W]]
340 * [[Examples>>Programming__WebObjects-Direct-To-Examples]]
341
342 = Case Studies =
343
344 * [[iTunes Music Store>>Programming__WebObjects-Case Studies-iTunes Music Store]]
345 * [[.Mac>>Programming__WebObjects-Case Studies-.Mac]]
346 * [[Apple Store>>Programming__WebObjects-Case Studies-Apple Store]]
347 * [[Original Dell Store>>Programming__WebObjects-Case Studies-Original Dell Store]]
348 * [[Radar>>Programming__WebObjects-Case Studies-Radar]]
David Avendasora 667.1 349 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
350 * [[EverLearn>>Case Studies-EverLearn]]
Pascal Robert 603.1 351 * [[WebObjects Showcase>>WebObjects Showcase]]
David Avendasora 667.1 352 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
Pascal Robert 213.1 353
354 = Java Client =
355
David Avendasora 667.1 356 * [[Overview>>Java Client-Overview]]
Pascal Robert 213.1 357 * [[Required Reading>>Programming__WebObjects-Java Client-Required Reading]]
358 * [[Advanced>>Programming__WebObjects-Java Client-Advanced]]
359 * [[Interface Builder>>Programming__WebObjects-Java Client-Interface Builder]]
360 * [[svn>>Programming__WebObjects-Java Client-svn]]
361 * [[Examples>>Programming__WebObjects-Java Client-Examples]]
362
363 = Testing =
364
David Avendasora 667.1 365 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
366 * [[WOUnitTest>>Testing-WOUnitTest]]
Pascal Robert 213.1 367
368 = Database Compatibility / Comparisons =
369
David Avendasora 667.1 370 * [[FrontBase>>Database Compatibility and Comparisons-FrontBase]]
371 * [[OpenBase>>Database Compatibility and Comparisons-OpenBase]]
372 * [[MySQL>>Database Compatibility and Comparisons-MySQL]]
373 * [[Postgresql>>Database Compatibility and Comparisons-PostgreSQL]]
374 * [[Oracle>>Database Compatibility and Comparisons-Oracle]]
375 * [[Sybase>>Database Compatibility and Comparisons-Sybase]]
Pascal Robert 213.1 376 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
David Avendasora 667.1 377 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
378 * [[Informix>>Database Compatibility and Comparisons-Informix]]
Pascal Robert 213.1 379
380 = Alternative Technologies Pros / Cons =
381
David Avendasora 667.1 382 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
Pascal Robert 213.1 383 * [[ASP.NET + Monorail>>Programming__WebObjects-Alternative Technologies-ASP.NET+Monorail]]
384 * [[JSP and Taglibs>>Programming__WebObjects-Alternative Technologies-JSP and Taglibs]]
385 * [[EJB>>Programming__WebObjects-Alternative Technologies-EJB]]
386 * [[Hibernate>>Programming__WebObjects-Alternative Technologies-Hibernate]]
387 * [[Core Data>>Programming__WebObjects-Alternative Technologies-Core Data]]
David Avendasora 319.1 388 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
Pascal Robert 213.1 389 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
David Avendasora 667.1 390 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
Pascal Robert 213.1 391 * [[Struts>>Programming__WebObjects-Alternative Technologies-Struts]]
392 * [[WebWork>>Programming__WebObjects-Alternative Technologies-WebWork]]
393 * [[SOPE>>Programming__WebObjects-Alternative Technologies-SOPE]]
394
395 = Additional Resources =
396
David Avendasora 667.1 397 * [[Websites>>Additional Resources-Websites]]
Pascal Robert 213.1 398 * [[-Mailing Lists-]]
399 * [[-Tutorials-]]
David Avendasora 667.1 400 * [[Books>>Additional Resources-Books]]
Pascal Robert 213.1 401 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
David Avendasora 667.1 402 * [[Authors>>Additional Resources-Authors]]
403 * [[Training>>Additional Resources-WebObjects Training]]
Pascal Robert 213.1 404
405 Category:Programming
406 Category:WebObjects