Wiki source code of Programming__WebObjects

Version 910.1 by Pascal Robert on 2012/07/19 21:13

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