Wiki source code of Programming__WebObjects

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

Show last authors
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
11 * [[What is WebObjects?>>Overview-What is WebObjects]]
12 * [[History>>Overview-History]]
13 * Naming Conventions
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.
16 * [[Foundation>>Overview-Foundation]]
17 * [[Objective-C to Java Transition>>Overview-Objective-C to Java Transition]]
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
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:
25
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.
27
28 = Foundation =
29
30 * [[Foundation>>Overview-Foundation]]
31 * [[Key Value Coding>>Overview-Key Value Coding]]
32
33 = Enterprise Object Framework (EOF) =
34
35 == Introduction ==
36
37 * [[Overview>>EOF-Overview]]
38
39 == Modeling ==
40
41 * [[Overview>>EOF-Modeling-Overview]]
42 * Required Reading
43 ** [[Entities>>EOF-Modeling-Entities]]
44 ** [[GlobalIDs>>EOF-Modeling-GlobalIDs]]
45 ** [[Attributes>>EOF-Modeling-Attributes]]
46 ** [[Relationships>>Programming__WebObjects-EOF-Modeling-Relationships]]
47 ** [[Entity Inheritance>>EOF-Modeling-Inheritance]]
48 ** [[Fetch Specifications>>EOF-Modeling-Fetch Specifications]]
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]]
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]]
56 * Advanced
57 ** [[JDBC>>EOF-Modeling-JDBC]]
58 ** [[JNDI>>Programming__WebObjects-EOF-Modeling-JNDI]]
59 ** [[Stored Procedures>>Programming__WebObjects-EOF-Modeling-Stored Procedures]]
60 ** [[Prototypes>>EOF-Modeling-Prototypes]]
61 ** [[Multiple Models>>Programming__WebObjects-EOF-Modeling-Multiple Models]]
62 ** [[Custom Attributes>>EOF-Modeling-Custom Attributes]]
63 * [[Examples>>EOF-Modeling-Examples]]
64
65 == Using EOF ==
66
67 * [[Overview>>EOF-Using EOF-Overview]]
68 * Required Reading
69 ** [[The EOF Commandments>>EOF-Using EOF-The EOF Commandments]]
70 ** [[EO Enterprise Object>>Programming__WebObjects-EOF-Using EOF-EO Enterprise Object]]
71 ** [[EO Editing Context>>EOF-Using EOF-EO Editing Context]]
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]]
75 ** [[Context and Database Locking>>EOF-Using EOF-Context and Database Locking]]
76 ** [[Faulting>>EOF-Using EOF-Faulting]]
77 ** [[Fetching>>EOF-Using EOF-Fetching]]
78 ** [[Updating>>Programming__WebObjects-EOF-Using EOF-Updating]]
79 ** [[Deleting>>EOF-Using EOF-Deleting]]
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]]
86 * Advanced
87 ** [[EOGenerator>>EOF-Using EOF-EOGenerator]]
88 ** [[Logging>>EOF-Using EOF-Logging]]
89 ** [[EOF Performance Tuning>>EOF-Using EOF-EOF Performance Tuning]]
90 ** [[Primary Keys>>EOF-Using EOF-Primary Keys]]
91 ** [[Compound Primary Keys>>EOF-Using EOF-Compound Primary Keys]]
92 ** [[Concurrency>>EOF-Using EOF-Concurrency]]
93 ** [[Validation>>EOF-Using EOF-Validation]]
94 ** [[Database Adaptors and Plugins>>EOF-Using EOF-Database Adaptors and Plugins]]
95 ** [[Undo and Redo>>EOF-Using EOF-Undo and Redo]]
96 ** [[EO's and Multiple Editing Contexts>>Programming__WebObjects-EOF-Using EOF-EO's and Multiple Editing Contexts]]
97 ** [[EOSharedEditingContext>>EOF-Using EOF-EOSharedEditingContext]]
98 ** [[Raw Rows>>EOF-Using EOF-Raw Rows]]
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]]
112 * [[Examples>>Programming__WebObjects-EOF-Using EOF-Examples]]
113 * [[Help~[~[image:_EOF_is_Doing_Strange_Things~]~]>>EOF-Using EOF-Breaking EOF]]
114
115 = Web Applications =
116
117 == Introduction ==
118
119 * [[Overview>>Web Applications-Overview]]
120
121 == Development ==
122
123 * [[Overview>>Programming__WebObjects-Web Applications-Development-Overview]]
124 * Required Reading
125 ** [[Apache>>Development-Apache]]
126 ** [[WO Adaptor>>Development-WO Adaptor]]
127 ** [[WO Application>>Programming__WebObjects-Web Applications-Development-WO Application]]
128 ** [[WO Session>>Development-WO Session]]
129 ** [[WO Component>>Programming__WebObjects-Web Applications-Development-WO Component]]
130 *** [[Binding Synchronization>>Development-WO Component-Binding Synchronization]]
131 *** [[Code, Templates, and WODs>>Development-WO Component-Code Template and WODs]]
132 *** [[Built-in Components>>Development-WO Component-Built-in Components]]
133 ** [[Component Actions>>Development-Component Actions]]
134 ** [[Direct Actions>>Development-Direct Actions]]
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]]
137 ** [[Authentication and Security>>Development-Authentication and Security]]
138 ** [[General Best Practices>>Development-General Best Practices]]
139 ** [[WOForm Best Practices>>Development-WOForm Best Practices]]
140 ** [[WODisplayGroup>>Programming__WebObjects-Web Applications-Development-WODisplayGroup]]
141 ** [[Debugging Techniques>>Development-Debugging Techniques]]
142 ** [[Direct Connect>>Development-Direct Connect]]
143 ** [[Frameworks>>Development-Frameworks]]
144 ** [[Ajax>>Development-Ajax]]
145 ** [[CSS>>Development-CSS]]
146 ** [[Sending Emails>>Development-Sending Emails]]
147 ** [[The Build Products>>Programming__WebObjects-Web Applications-Development-Build Products]]
148 ** [[Errors and Explanations>>Programming__WebObjects-Web Applications-Development-Errors and Explanations]]
149 ** [[Common Pitfalls and Troubleshooting>>Development-Common Pitfalls and Troubleshooting]]
150 * Advanced
151 ** [[Audit Trails>>Development-Audit Trails]]
152 ** [[Backtracking>>Programming__WebObjects-Web Applications-Development-Backtracking]]
153 ** [[Concurrency>>Programming__WebObjects-Web Applications-Development-Concurrency]]
154 ** [[Image Thumbnailing>>Development-Thumbnailing]]
155 ** [[Database vs Filesystem (aka Images in the Database?)>>Development-Database vs Filesystem]]
156 ** [[WOLongResponsePage>>Programming__WebObjects-Web Applications-Development-WOLongResponsePage]]
157 ** [[Stateless Components>>Development-Stateless Components]]
158 ** [[Non-HTML WO's>>Programming__WebObjects-Web Applications-Development-Non-HTML WO's]]
159 ** [[WOEvents and Logging>>Development-WOEvents and Logging]]
160 ** [[PDF Generation>>Development-PDF Generation]]
161 ** [[Excel Generation>>Development-Excel Generation]]
162 ** [[SSL>>Development-SSL requests via https protocol]]
163 ** [[Localization and Internationalization>>Development-Localization and Internationalization]]
164 ** [[Testing and JUnit>>Development-Testing and JUnit]]
165 ** [[Custom Error Handling>>Development-Custom Error Handling]]
166 ** [[Custom Request Handlers>>Programming__WebObjects-Web Applications-Development-Custom Request Handlers]]
167 ** [[Custom Templates>>Development-Custom Templates]]
168 ** [[Calling Commandline Applications>>Calling Commandline Applications]]
169 ** [[High Performance WOA's and WO's>>Programming__WebObjects-Web Applications-Development-High-Performance WOA's and WO's]]
170 ** [[Profiling WO Apps>>Development-Profiling WO Apps]]
171 ** [[J2EE Integration>>Development-J2EE Integration]]
172 ** [[WebObjects and Subversion>>Development-WebObjects and Subversion]]
173 ** [[Third Party Jars>>Development-Third Party Jars]]
174 ** [[Generating Static Pages>>Development-Generating Static Pages]]
175 ** [[Cocoa EO Applications>>Web Applications-Development-Cocoa EO Applications]]
176 ** [[Custom Resource Manager>>Development-Custom Resource Manager]]
177 ** [[Persistent Sessions>>Development-Persistent Sessions]]
178 ** [[How Forms Work>>Development-How Forms Work]]
179 * [[Development on Windows>>Development-Development on Windows]]
180 * [[Tips and Tricks>>Development-Tips and Tricks]]
181 * Examples
182 ** [[-Hands On__ Hello World - Your First WebObjects Application-]]
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]]
192
193 == Deployment ==
194
195 * [[Overview>>Deployment-Overview]]
196 * Required Reading
197 ** [[Apache>>Configuring Apache for WebObjects]]
198 ** [[Memory Settings>>Deployment-Memory Settings]]
199 ** [[Standard Deployment>>Deployment-Standard Deployment]]
200 ** [[wotaskd>>wotaskd]]
201 ** [[Java Monitor>>JavaMonitor]]
202 ** [[Logging>>Log Rotation]]
203 ** [[Split Install>>Split Deployments]]
204 ** [[Common Pitfalls and Troubleshooting>>Troubleshooting Deployment]]
205 * Advanced
206 ** [[WOStats>>Troubleshooting WOStats]]
207 ** [[Additional Monitoring>>Monitoring your deployed Applications]]
208 ** [[Scheduled Restart>>Troubleshooting Scheduled Restarts]]
209 ** [[Clustering and Load Balancing>>Programming__WebObjects-Web Applications-Deployment-Clustering and Load Balancing]]
210 ** [[J2EE and Servlet Deployment>>Deploying on J2EE and Servlet Containers]]
211 ** [[Tomcat Deployment>>Deploying with Tomcat]]
212 ** [[High-Performance Configuration>>Programming__WebObjects-Web Applications-Deployment-High-Performance Configuration]]
213 ** [[Killing WOA Processes>>Killing WOA Processes]]
214 ** [[Debugging Frozen Deployed Instances>>Troubleshooting Frozen Deployed Instances]]
215 * Platform Specifics
216 ** [[Mac OS X Server>>Deploying on Mac OS X Server]]
217 ** [[Linux>>Web Applications-Deployment-Linux]]
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)]]
223 ** [[Windows>>Deploying on Windows (WO 5.1)]]
224 * Helpful Tools & Shellscripts
225
226 = Web Services =
227
228 * [[Overview>>Programming__WebObjects-Web Services-Overview]]
229 * Required Reading
230 ** [[WO as a Web Service Provider>>Web Services-Web Service Provider]]
231 ** [[WO as a Web Service Consumer>>Web Services-Web Service Consumer]]
232 ** [[Interoperability>>Programming__WebObjects-Web Services-Interoperability]]
233 ** [[Common Pitfalls and Troubleshooting>>Web Services-Common Pitfalls and Troubleshooting]]
234 * General Info
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]]
237 * Advanced
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]]
245
246 * [[Examples>>Programming__WebObjects-Web Services-Examples]]
247
248 = Complementary Frameworks =
249
250 == Project WONDER ==
251
252 * [[Overview>>Project WONDER-Overview]]
253 * Required Reading
254 ** [[Installing>>WONDER:Download Wonder Source, Build, Install and Upgrade]]
255 ** [[Quickstart>>Project WONDER-Quickstart]]
256 ** [[History>>Project WONDER-History]]
257 ** [[Frameworks>>Programming__WebObjects-Project WONDER-Frameworks]]
258 *** [[Ajax>>Project WONDER-Frameworks-Ajax]]
259 *** [[DynaReporting>>Programming__WebObjects-Project WONDER-Frameworks-DynaReporting]]
260 *** [[ERCalendar>>Project WONDER-Frameworks-ERCalendar]]
261 *** [[ERChangeNotificationJMS>>Project WONDER-Frameworks-ERChangeNotificationJMS]]
262 *** [[ERCoreBusinessLogic>>Programming__WebObjects-Project WONDER-Frameworks-ERCoreBusinessLogic]]
263 *** [[ERDirectToWeb>>Programming__WebObjects-Project WONDER-Frameworks-ERDirectToWeb]]
264 *** [[ERExtensions>>Project WONDER-Frameworks-ERExtensions]]
265 *** [[ERIMAdaptor>>Programming__WebObjects-Project WONDER-Frameworks-ERIMAdaptor]]
266 *** [[ERJavaMail>>Project WONDER-Frameworks-ERJavaMail]]
267 *** [[ERPlot>>Project WONDER-Frameworks-ERPlot]]
268 *** [[ERPrototypes>>Programming__WebObjects-Project WONDER-Frameworks-ERPrototypes]]
269 *** [[ERSelenium>>Project WONDER-Frameworks-ERSelenium]]
270 *** [[ExcelGeneration>>Project WONDER-Frameworks-ExcelGeneration]]
271 *** [[JavaWOExtensions>>Programming__WebObjects-Project WONDER-Frameworks-JavaWOExtensions]]
272 *** [[PostgresqlPlugin>>Project WONDER-Frameworks-PostgresqlPlugin]]
273 *** [[SVGObjects>>Programming__WebObjects-Project WONDER-Frameworks-SVGObjects]]
274 *** [[Validity>>Project WONDER-Frameworks-Validity]]
275 *** [[WOOgnl>>Project WONDER-Frameworks-WOOgnl]]
276 *** [[WOPaypal>>Project WONDER-Frameworks-WOPaypal]]
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
284 * [[Overview>>Wirehose]]
285 * Basic Concepts
286 ** [[Content Management>>Wirehose-Content Management]]
287 ** [[Personalization>>Programming__WebObjects-Wirehose-Personalization]]
288 ** [[Access Control>>Wirehose-Access Control]]
289 ** [[Dynamic Layouts>>Wirehose-Dynamic Layouts]]
290 ** [[Rapid Development>>Wirehose-Rapid Revelopment]]
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
308 * [[Overview>>LEWOStuff-Overview]]
309
310 == GVC Frameworks and GVC.SiteMaker ==
311
312 * [[Overview>>GVC Frameworks-Overview]]
313
314 = Development Tools =
315
316 * [[Overview>>Programming__WebObjects-Development Tools-Overview]]
317 * [[Eclipse and WOlips>>Development Tools-Eclipse and WOlips]]
318 * [[Xcode>>Development Tools-Xcode]]
319 * [[EOModeler>>EOF-Modeling-EOModeler]]
320 * [[WOBuilder>>Programming__WebObjects-Development Tools-WOBuilder]]
321 * [[Running Though Apache>>Development Tools-Running Through Apache]]
322
323 = Direct-To =
324
325 * [[Overview>>Programming__WebObjects-Direct-To-Overview]]
326 * Required Reading
327 ** [[Web>>Direct-To-Web]]
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]]
341 * [[ShopToIt.ca>>Case Studies-ShopToIt.ca]]
342 * [[EverLearn>>Case Studies-EverLearn]]
343 * [[WebObjects Showcase>>WebObjects Showcase]]
344 * [[WebObjects Sites>>Case Studies-WebObjects Sites]]
345
346 = Java Client =
347
348 * [[Overview>>Java Client-Overview]]
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
357 * [[Load Testing WO Apps with JMeter>>Testing-Load Testing WO Apps with JMeter]]
358 * [[WOUnitTest>>Testing-WOUnitTest]]
359
360 = Database Compatibility / Comparisons =
361
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]]
368 * [[SQLServer>>Programming__WebObjects-Database Compatibility and Comparisons-SQLServer]]
369 * [[Data Migration>>Database Compatibility and Comparisons-DataMigration]]
370 * [[Informix>>Database Compatibility and Comparisons-Informix]]
371
372 = Alternative Technologies Pros / Cons =
373
374 * [[ASP.NET>>Alternative Technologies-ASP.NET]]
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]]
380 * [[Cayenne>>Programming__WebObjects-Alternative Technologies-Cayenne]]
381 * [[Tapestry>>Programming__WebObjects-Alternative Technologies-Tapestry]]
382 * [[Ruby on Rails>>Alternative Technologies-Ruby on Rails]]
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
389 * [[Websites>>Additional Resources-Websites]]
390 * [[-Mailing Lists-]]
391 * [[-Tutorials-]]
392 * [[Books>>Additional Resources-Books]]
393 * [[Periodicals>>Programming__WebObjects-Additional Resources-Periodicals]]
394 * [[Authors>>Additional Resources-Authors]]
395 * [[Training>>Additional Resources-WebObjects Training]]
396
397 Category:Programming
398 Category:WebObjects