Wiki source code of Programming__WebObjects

Version 774.1 by David Avendasora on 2010/11/30 06:46

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