Wiki source code of Programming__WebObjects
Last modified by Pascal Robert on 2012/12/05 12:01
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{warning}} | ||
2 | This is deprecated information! | ||
3 | {{/warning}} | ||
4 | |||
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>>url:http://lists.apple.com/archives/Webobjects-dev||shape="rect"]]. | ||
12 | |||
13 | = Introduction = | ||
14 | |||
15 | * [[What is WebObjects?>>doc:documentation.Home.Development Architecture.Overview-What is WebObjects.WebHome]] | ||
16 | * Naming Conventions | ||
17 | ** The naming convention for objects in WebObjects is that names are written in what is called "camel case". | ||
18 | ** The various prefixes are not hard to explain. "NS" stands for "NextStep", "EO" for "EnterpriseObject", "WO" for WebObjects. | ||
19 | * [[Foundation>>doc:documentation.Home.Development Architecture.Overview-Foundation.WebHome]] | ||
20 | * [[Objective-C to Java Transition>>doc:WO.Home.Deprecated.Overview-Objective-C to Java Transition.WebHome]] | ||
21 | * [[Recent Changes>>url:http://en.wikibooks.org/w/index.php?title=Special:Recentchangeslinked&target=Programming%3AWebObjects||shape="rect"]] | ||
22 | |||
23 | = License = | ||
24 | |||
25 | 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: | ||
26 | |||
27 | >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. | ||
28 | |||
29 | = Foundation = | ||
30 | |||
31 | * [[Foundation>>doc:documentation.Home.Development Architecture.Overview-Foundation.WebHome]] | ||
32 | * [[Key Value Coding>>doc:documentation.Home.Development Architecture.Overview-Key Value Coding.WebHome]] | ||
33 | |||
34 | = Enterprise Object Framework (EOF) = | ||
35 | |||
36 | == Introduction == | ||
37 | |||
38 | * [[Overview>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Overview.WebHome]] | ||
39 | |||
40 | == Modeling == | ||
41 | |||
42 | * [[Overview>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Overview.WebHome]] | ||
43 | * Required Reading | ||
44 | ** [[Entities>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Entities.WebHome]] | ||
45 | ** [[GlobalIDs>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-GlobalIDs.WebHome]] | ||
46 | ** [[Attributes>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Attributes.WebHome]] | ||
47 | ** [[Entity Inheritance>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Inheritance.WebHome]] | ||
48 | ** [[Fetch Specifications>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Fetch Specifications.WebHome]] | ||
49 | ** [[Common Pitfalls and Troubleshooting>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Common Pitfalls and Troubleshooting.WebHome]] | ||
50 | ** [[EOModeler>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-EOModeler.WebHome]] | ||
51 | ** [[EOModeler on Windows>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-EOModeler on Windows.WebHome]] | ||
52 | ** [[Booleans>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Booleans.WebHome]] | ||
53 | * Advanced | ||
54 | ** [[JDBC>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-JDBC.WebHome]] | ||
55 | ** [[Prototypes>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Prototypes.WebHome]] | ||
56 | ** [[Custom Attributes>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Custom Attributes.WebHome]] | ||
57 | * [[Examples>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-Examples.WebHome]] | ||
58 | |||
59 | == Using EOF == | ||
60 | |||
61 | * [[Overview>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Overview.WebHome]] | ||
62 | * Required Reading | ||
63 | ** [[The EOF Commandments>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-The EOF Commandments.WebHome]] | ||
64 | ** [[EO Editing Context>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-EO Editing Context.WebHome]] | ||
65 | ** [[Context and Database Locking>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Context and Database Locking.WebHome]] | ||
66 | ** [[Faulting>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Faulting.WebHome]] | ||
67 | ** [[Fetching>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Fetching.WebHome]] | ||
68 | ** [[Deleting>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Deleting.WebHome]] | ||
69 | ** [[Caching and Freshness>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Caching and Freshness.WebHome]] | ||
70 | ** [[Optimistic Locking>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Optimistic Locking.WebHome]] | ||
71 | ** [[Memory Management>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Memory Management.WebHome]] | ||
72 | ** [[EOF Best Practices>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-EOF Best Practices.WebHome]] | ||
73 | ** [[Configuration Settings>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Configuration Settings.WebHome]] | ||
74 | ** [[Common Pitfalls and Troubleshooting>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Common Pitfalls and Troubleshooting.WebHome]] | ||
75 | * Advanced | ||
76 | ** [[EOGenerator>>doc:WO.Home.Deprecated.EOF-Using EOF-EOGenerator.WebHome]] | ||
77 | ** [[Logging>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Logging.WebHome]] | ||
78 | ** [[EOF Performance Tuning>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-EOF Performance Tuning.WebHome]] | ||
79 | ** [[Primary Keys>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Primary Keys.WebHome]] | ||
80 | ** [[Compound Primary Keys>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Compound Primary Keys.WebHome]] | ||
81 | ** [[Concurrency>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Concurrency.WebHome]] | ||
82 | ** [[Validation>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Validation.WebHome]] | ||
83 | ** [[Database Adaptors and Plugins>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Database Adaptors and Plugins.WebHome]] | ||
84 | ** [[Undo and Redo>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Undo and Redo.WebHome]] | ||
85 | ** [[EOSharedEditingContext>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-EOSharedEditingContext.WebHome]] | ||
86 | ** [[Raw Rows>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Raw Rows.WebHome]] | ||
87 | ** [[Batch Fetching>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Batch Fetching.WebHome]] | ||
88 | ** [[Fetch Limits>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Fetch Limits.WebHome]] | ||
89 | ** [[Bulk Operations>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Bulk Operations.WebHome]] | ||
90 | ** [[Schema Changes>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Schema Changes.WebHome]] | ||
91 | ** [[Delegates and Notifications>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Delegates and Notifications.WebHome]] | ||
92 | ** [[Multiple Stacks or Instances>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Multiple Stacks or Instances.WebHome]] | ||
93 | ** [[Custom Qualifiers>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Custom Qualifiers.WebHome]] | ||
94 | ** [[Localization and Internationalization>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Localization and Internationalization.WebHome]] | ||
95 | ** [[Default Values>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Default Values.WebHome]] | ||
96 | ** [[Custom EOAdaptor>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Custom EOAdaptor.WebHome]] | ||
97 | ** [[EOF Traces>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-EOF Traces.WebHome]] | ||
98 | ** [[Problems>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Problems.WebHome]] | ||
99 | * [[Tips and Tricks>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Tips and Tricks.WebHome]] | ||
100 | * [[Help!_EOF_is_Doing_Strange_Things!>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Using EOF-Breaking EOF.WebHome]] | ||
101 | |||
102 | = Web Applications = | ||
103 | |||
104 | == Introduction == | ||
105 | |||
106 | * [[Overview>>doc:WO.Web Applications-Overview]]((( | ||
107 | == Development == | ||
108 | ))) | ||
109 | * [[Overview>>doc:WO.Programming__WebObjects-Web Applications-Development-Overview]] | ||
110 | * Required Reading | ||
111 | ** [[WO Adaptor>>doc:documentation.Home.Development Architecture.Development-WO Adaptor.WebHome]] | ||
112 | ** [[WO Session>>doc:documentation.Home.Development Architecture.Development-WO Session.WebHome]] | ||
113 | ** [[WO Component>>doc:WO.Programming__WebObjects-Web Applications-Development-WO Component]] | ||
114 | *** [[Binding Synchronization>>doc:documentation.Home.How-tos.Development-WO Component-Binding Synchronization.WebHome]] | ||
115 | *** [[Code, Templates, and WODs>>doc:documentation.Home.Development Architecture.Application Architecture.Development-WO Component-Code Template and WODs.WebHome]] | ||
116 | ** [[Component Actions>>doc:documentation.Home.How-tos.Development-Component Actions.WebHome]] | ||
117 | ** [[Direct Actions>>doc:documentation.Home.Development Architecture.DirectActions Architecture.Development-Direct Actions.WebHome]] | ||
118 | ** [[Authentication and Security>>doc:documentation.Home.How-tos.Development-Authentication and Security.WebHome]] | ||
119 | ** [[General Best Practices>>doc:documentation.Home.Best Practices.Development-General Best Practices.WebHome]] | ||
120 | ** [[WOForm Best Practices>>doc:documentation.Home.Best Practices.Development-WOForm Best Practices.WebHome]] | ||
121 | ** [[Direct Connect>>doc:WO.Home.To classify.Development-Direct Connect.WebHome]] | ||
122 | ** [[Frameworks>>doc:documentation.Home.How-tos.Development-Frameworks.WebHome]] | ||
123 | ** [[Ajax>>doc:documentation.Home.Frameworks.Development-Ajax.WebHome]] | ||
124 | ** [[CSS>>doc:documentation.Home.How-tos.Development-CSS.WebHome]] | ||
125 | ** [[Sending Emails>>doc:documentation.Home.How-tos.Sending Emails.WebHome]] | ||
126 | ** [[Common Pitfalls and Troubleshooting>>doc:documentation.Home.How-tos.Development-Common Pitfalls and Troubleshooting.WebHome]] | ||
127 | * Advanced | ||
128 | ** [[Audit Trails>>doc:documentation.Home.How-tos.Development-Audit Trails.WebHome]] | ||
129 | ** [[Image Thumbnailing>>doc:documentation.Home.How-tos.Development-Thumbnailing.WebHome]] | ||
130 | ** [[Database vs Filesystem (aka Images in the Database?)>>doc:documentation.Home.Best Practices.Development-Database vs Filesystem.WebHome]] | ||
131 | ** [[Stateless Components>>doc:documentation.Home.How-tos.Development-Stateless Components.WebHome]] | ||
132 | ** [[WOEvents and Logging>>doc:documentation.Home.How-tos.Development-WOEvents and Logging.WebHome]] | ||
133 | ** [[PDF Generation>>doc:documentation.Home.How-tos.Development-PDF Generation.WebHome]] | ||
134 | ** [[Excel Generation>>doc:documentation.Home.How-tos.Development-Excel Generation.WebHome]] | ||
135 | ** [[SSL>>doc:documentation.Home.How-tos.Development-SSL requests via https protocol.WebHome]] | ||
136 | ** [[Localization and Internationalization>>doc:documentation.Home.Development Architecture.Localization.Development-Localization and Internationalization.WebHome]] | ||
137 | ** [[Testing and JUnit>>doc:documentation.Home.Frameworks.Development-Testing and JUnit.WebHome]] | ||
138 | ** [[Custom Error Handling>>doc:documentation.Home.How-tos.Development-Custom Error Handling.WebHome]] | ||
139 | ** [[Custom Templates>>doc:documentation.Home.How-tos.Development-Custom Templates.WebHome]] | ||
140 | ** [[Calling Commandline Applications>>doc:documentation.Home.How-tos.Calling Commandline Applications.WebHome]] | ||
141 | ** [[Profiling WO Apps>>doc:documentation.Home.How-tos.Development-Profiling WO Apps.WebHome]] | ||
142 | ** [[J2EE Integration>>doc:documentation.Development-J2EE Integration]] | ||
143 | ** [[WebObjects and Subversion>>doc:WO.Home.Deprecated.Development-WebObjects and Subversion.WebHome]] | ||
144 | ** [[Third Party Jars>>doc:documentation.Home.How-tos.Development-Third Party Jars.WebHome]] | ||
145 | ** [[Generating Static Pages>>doc:documentation.Home.How-tos.Development-Generating Static Pages.WebHome]] | ||
146 | ** [[Cocoa EO Applications>>doc:WO.Home.Deprecated.Web Applications-Development-Cocoa EO Applications.WebHome]] | ||
147 | ** [[Custom Resource Manager>>doc:documentation.Home.How-tos.Development-Custom Resource Manager.WebHome]] | ||
148 | ** [[Persistent Sessions>>doc:documentation.Home.How-tos.Development-Persistent Sessions.WebHome]] | ||
149 | ** [[How Forms Work>>doc:documentation.Home.Development Architecture.Development-How Forms Work.WebHome]] | ||
150 | * [[Development on Windows>>doc:WO.Home.Deprecated.Development on Windows.WebHome]] | ||
151 | * [[Tips and Tricks>>doc:documentation.Home.How-tos.Development-Tips and Tricks.WebHome]] | ||
152 | * Examples | ||
153 | ** [[Page Layout>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Page Layout.WebHome]] | ||
154 | ** [[List Components>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-List Components.WebHome]] | ||
155 | ** [[Calendar Component>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Calendar Component.WebHome]] | ||
156 | ** [[Path Inspector>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Path Inspector.WebHome]] | ||
157 | ** [[Alphabetic List>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Alphabetic List.WebHome]] | ||
158 | ** [[Login>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Login.WebHome]] | ||
159 | ** [[Anchors>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Anchors.WebHome]] | ||
160 | ** [[Open Link in New Window>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Open Link in New Window.WebHome]] | ||
161 | ** [[Return a File>>doc:documentation.Home.How-tos.Development-Examples.Development-Examples-Return a File.WebHome]] | ||
162 | |||
163 | == Deployment == | ||
164 | |||
165 | * [[Overview>>doc:WO.Home.Deprecated.Overview.WebHome]] | ||
166 | * Required Reading | ||
167 | ** [[Apache>>doc:documentation.Home.Deployment.Configuring Apache for WebObjects.WebHome]] | ||
168 | ** [[Standard Deployment>>doc:WO.Home.Deprecated.Deployment-Standard Deployment.WebHome]] | ||
169 | ** [[Logging>>doc:documentation.Home.Deployment.Log Rotation.WebHome]] | ||
170 | ** [[Split Install>>doc:documentation.Home.Deployment.Split Deployments.WebHome]] | ||
171 | ** [[Common Pitfalls and Troubleshooting>>doc:documentation.Home.Deployment.Troubleshooting.Troubleshooting Deployment.WebHome]] | ||
172 | * Advanced | ||
173 | ** [[WOStats>>doc:documentation.Home.Deployment.Troubleshooting.Troubleshooting WOStats.WebHome]] | ||
174 | ** [[Additional Monitoring>>doc:documentation.Home.Deployment.Monitoring your deployed Applications.WebHome]] | ||
175 | ** [[Scheduled Restart>>doc:documentation.Home.Deployment.Troubleshooting.Troubleshooting Scheduled Restarts.WebHome]] | ||
176 | ** [[Tomcat Deployment>>doc:documentation.Home.Deployment.Platforms.Deploying with Tomcat.WebHome]] | ||
177 | ** [[Killing WOA Processes>>doc:documentation.Home.Deployment.Troubleshooting.Killing WOA Processes.WebHome]] | ||
178 | ** [[Debugging Frozen Deployed Instances>>doc:documentation.Home.Deployment.Troubleshooting.Troubleshooting Frozen Deployed Instances.WebHome]] | ||
179 | * Platform Specifics | ||
180 | ** [[Mac OS X Server>>doc:documentation.Home.Deployment.Platforms.Deploying on Mac OS X 10\.6 (Snow Leopard).WebHome]] | ||
181 | ** [[Solaris>>doc:documentation.Home.Deployment.Platforms.Deploying on Solaris (WO 5\.3\.3) (DELETABLE).WebHome]] | ||
182 | * Helpful Tools & Shellscripts | ||
183 | |||
184 | = Web Services = | ||
185 | |||
186 | * [[Overview>>doc:WO.Programming__WebObjects-Web Services-Overview]] | ||
187 | * Required Reading | ||
188 | ** [[WO as a Web Service Provider>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Web Service Provider.WebHome]] | ||
189 | ** [[WO as a Web Service Consumer>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Web Service Consumer.WebHome]] | ||
190 | ** [[Common Pitfalls and Troubleshooting>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Common Pitfalls and Troubleshooting.WebHome]] | ||
191 | * General Info | ||
192 | ** [[Instructions for .NET consuming Direct to WebServices>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Instructions for \.NET consuming Direct to WebServices.WebHome]] | ||
193 | ** [[Testing Services with Terminal>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Testing Services with Terminal.WebHome]] | ||
194 | * Advanced | ||
195 | ** [[Sending Large Data>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Sending Large Data.WebHome]] | ||
196 | ** [[How to Trust Any SSL Certificate>>doc:documentation.Home.Development Architecture.Web Services.Web Services-How to Trust Any SSL Certificate.WebHome]] | ||
197 | ** [[Problems>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Problems.WebHome]] | ||
198 | ** [[Controlling Enterprise Object Serialisation>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Controlling Enterprise Object Serialisation.WebHome]] | ||
199 | ** [[Controlling WSDL Service Location>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Controlling WSDL Service Location.WebHome]] | ||
200 | ** [[Integration with WebServicesCore on MacOS-X>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Integration with WebServicesCore on MacOS-X.WebHome]] | ||
201 | ** [[Working With Temporary GlobalIDs>>doc:documentation.Home.Development Architecture.Web Services.Web Services-Working With Temporary GlobalIDs.WebHome]] | ||
202 | |||
203 | = Complementary Frameworks = | ||
204 | |||
205 | == Project WONDER == | ||
206 | |||
207 | * [[Overview>>doc:documentation.Home.Frameworks.Project Wonder.Project WONDER-Overview.WebHome]] | ||
208 | * Required Reading | ||
209 | ** [[Installing>>doc:WEB.Home.Getting Started.Getting the Wonder Source Code.WebHome]] | ||
210 | ** [[Quickstart>>doc:documentation.Home.Frameworks.Project Wonder.Project WONDER-Quickstart.WebHome]] | ||
211 | ** [[History>>doc:documentation.Home.Frameworks.Project Wonder.Project WONDER-History.WebHome]] | ||
212 | ** [[Frameworks>>doc:WO.Programming__WebObjects-Project WONDER-Frameworks]] | ||
213 | *** [[Ajax>>doc:documentation.Home.Frameworks.Ajax Framework.WebHome]] | ||
214 | *** [[ERCalendar>>doc:documentation.Home.Frameworks.ERCalendar Framework.WebHome]] | ||
215 | *** [[ERChangeNotificationJMS>>doc:documentation.Home.Frameworks.ERChangeNotificationJMS Framework.WebHome]] | ||
216 | *** [[ERExtensions>>doc:documentation.Home.Frameworks.ERExtensions Framework.WebHome]] | ||
217 | *** [[ERJavaMail>>doc:documentation.Home.Frameworks.ERJavaMail Framework.WebHome]] | ||
218 | *** [[ERPlot>>doc:documentation.Home.Frameworks.ERPlot Framework.WebHome]] | ||
219 | *** [[ERSelenium>>doc:documentation.Home.Frameworks.ERSelenium Framework.WebHome]] | ||
220 | *** [[ExcelGeneration>>doc:documentation.Home.Frameworks.Project Wonder.Project WONDER-Frameworks-ExcelGeneration.WebHome]] | ||
221 | *** [[PostgresqlPlugin>>doc:documentation.Home.Frameworks.PostgresqlPlugin Framework.WebHome]] | ||
222 | *** [[Validity>>doc:documentation.Home.Frameworks.Validity Framework.WebHome]] | ||
223 | *** [[WOOgnl>>doc:documentation.Home.Frameworks.WOOgnl Framework.WebHome]] | ||
224 | *** [[WOPaypal>>doc:documentation.Home.Frameworks.WOPaypal Framework.WebHome]] | ||
225 | * Advanced | ||
226 | |||
227 | == WireHose == | ||
228 | |||
229 | * [[Overview>>doc:documentation.Home.Frameworks.Wirehose.WebHome]] | ||
230 | * Basic Concepts | ||
231 | ** [[Content Management>>doc:documentation.Home.Frameworks.Wirehose.Wirehose-Content Management.WebHome]] | ||
232 | ** [[Access Control>>doc:documentation.Home.Frameworks.Wirehose.Wirehose-Access Control.WebHome]] | ||
233 | ** [[Dynamic Layouts>>doc:documentation.Home.Frameworks.Wirehose.Wirehose-Dynamic Layouts.WebHome]] | ||
234 | ** [[Rapid Development>>doc:documentation.Home.Frameworks.Wirehose.Wirehose-Rapid Revelopment.WebHome]] | ||
235 | * Reference | ||
236 | ** Online Reference Library | ||
237 | *** [[Developer Overview>>url:http://www.wirehose.com/developer/DeveloperOverview.html||shape="rect"]] | ||
238 | *** [[Java API Reference>>url:http://www.wirehose.com/developer/javadoc/||shape="rect"]] | ||
239 | *** [[Properties Reference>>url:http://www.wirehose.com/developer/Properties.html||shape="rect"]] | ||
240 | *** [[Database setup>>url:http://www.wirehose.com/developer/DatabaseSetup.html||shape="rect"]] | ||
241 | *** [[Regular Expressions>>url:http://www.wirehose.com/developer/javadoc/com/stevesoft/pat/package-summary.html#reference||shape="rect"]] | ||
242 | * | ||
243 | |||
244 | == LEWOStuff == | ||
245 | |||
246 | * [[Overview>>doc:WO.Home.Deprecated.LEWOStuff-Overview.WebHome]] | ||
247 | |||
248 | == GVC Frameworks and GVC.SiteMaker == | ||
249 | |||
250 | * [[Overview>>doc:documentation.Home.Frameworks.GVC Frameworks-Overview.WebHome]] | ||
251 | |||
252 | = Development Tools = | ||
253 | |||
254 | * [[Eclipse and WOlips>>doc:WOL.Home.Development Tools-Eclipse and WOlips.WebHome]] | ||
255 | * [[EOModeler>>doc:documentation.Home.Development Architecture.EOF Architecture.EOF.EOF-Modeling-EOModeler.WebHome]] | ||
256 | * [[Running Though Apache>>doc:documentation.Home.How-tos.Development Tools-Running Through Apache.WebHome]] | ||
257 | |||
258 | = Direct-To = | ||
259 | |||
260 | * Required Reading | ||
261 | ** [[Web>>doc:documentation.Home.Development Architecture.DirectToWeb Architecture.Direct To Web (D2W and ERD2W).Direct-To-Web.WebHome]] | ||
262 | * Advanced | ||
263 | |||
264 | * | ||
265 | |||
266 | = Java Client = | ||
267 | |||
268 | * [[Overview>>doc:documentation.Home.Development Architecture.Java Client.Java Client-Overview.WebHome]] | ||
269 | |||
270 | = Testing = | ||
271 | |||
272 | * [[Load Testing WO Apps with JMeter>>doc:documentation.Home.How-tos.Testing-Load Testing WO Apps with JMeter.WebHome]] | ||
273 | * [[WOUnitTest>>doc:WO.Home.Deprecated.Testing-WOUnitTest.WebHome]] | ||
274 | |||
275 | = Database Compatibility / Comparisons = | ||
276 | |||
277 | * [[FrontBase>>doc:WO.Home.To classify.Database Compatibility and Comparisons-FrontBase.WebHome]] | ||
278 | * [[OpenBase>>doc:WO.Home.To classify.Database Compatibility and Comparisons-OpenBase.WebHome]] | ||
279 | * [[MySQL>>doc:WO.Home.To classify.Database Compatibility and Comparisons-MySQL.WebHome]] | ||
280 | * [[Postgresql>>doc:WO.Home.To classify.Database Compatibility and Comparisons-PostgreSQL.WebHome]] | ||
281 | * [[Oracle>>doc:WO.Home.To classify.Database Compatibility and Comparisons-Oracle.WebHome]] | ||
282 | * [[Data Migration>>doc:documentation.Home.How-tos.Database Compatibility and Comparisons-DataMigration.WebHome]] | ||
283 | * [[Informix>>doc:WO.Home.To classify.Database Compatibility and Comparisons-Informix.WebHome]] | ||
284 | |||
285 | = Alternative Technologies Pros / Cons = | ||
286 | |||
287 | * [[Cayenne>>doc:WO.Home.Alternative Technologies-Cayenne.WebHome]] | ||
288 | * [[Ruby on Rails>>doc:WO.Home.To classify.Alternative Technologies-Ruby on Rails.WebHome]] | ||
289 | |||
290 | = Additional Resources = | ||
291 | |||
292 | * [[Websites>>doc:WEB.Home.Getting Help.Websites.WebHome]] | ||
293 | * [[Books>>doc:WEB.Home.Getting Help.Books.WebHome]] | ||
294 | * [[Training>>doc:WEB.Home.Getting Help.Training.WebHome]] |