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