Last modified by Kieran Kelleher on 2012/07/19 22:32

From version 28.1
edited by Kieran Kelleher
on 2009/12/06 11:57
Change comment: There is no comment for this version
To version 32.1
edited by Pascal Robert
on 2012/07/19 22:27
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.kieran
1 +XWiki.probert
Content
... ... @@ -1,7 +1,5 @@
1 -{{warning title="Incomplete Page"}}
2 -
3 -This is a Work in Progress page and is incomplete. Come back at a later date. (kieran)
4 -
1 +{{warning}}
2 +This is deprecated information\!
5 5  {{/warning}}
6 6  
7 7  == Who is this Guide for? ==
... ... @@ -21,16 +21,63 @@
21 21  
22 22  == First Install XCode ==
23 23  
24 -XCode is **not** used the develop WebObjects applications, but XCode installation includes software for development in general, such as command line tools, that are useful
22 +XCode is **not** used to develop WebObjects applications, but XCode installation includes software for development in general, such as command line tools, that are useful.
25 25  
26 -== Next Install WebObjects ==
24 +== Next Install and Configure WebObjects ==
27 27  
28 -== Configure WebObjects ==
26 +Install WebObjects using the [[Apple WebObjects 5.4.3 Installer dmg>>http://support.apple.com/kb/DL688]] if you want "standard" OS X install paths.
29 29  
28 +Then open terminal and perform the "extra" stuff you need to do to get things complete. you will need to do all this as 'root', hence the sudo s at the start.
29 +
30 +{{code title="Replace the apache adaptor with the Snow Leopard one"}}
31 +
32 +sudo -s
33 +
34 +cd /System/Library/WebObjects/Adaptors/Apache2.2
35 +mv mod_WebObjects.so mod_WebObjects.so.obsolete
36 +curl -C - -O http://wocommunity.org/documents/tools/mod_WebObjects/Apache2.2/macosx/10.6/mod_WebObjects.so
37 +
38 +{{/code}}
39 +
40 +{{code title="Configure Apache to use the WebObjects Adaptor"}}
41 +
42 +cd /etc/apache2
43 +cp httpd.conf httpd.conf.backup
44 +echo "Include /System/Library/WebObjects/Adaptors/Apache2.2/apache.conf" >> httpd.conf
45 +apachectl restart
46 +
47 +{{/code}}
48 +
49 +{{code title="Install launchd tasks to keep WebObjects running always"}}
50 +
51 +cd /Library/LaunchDaemons
52 +curl -C - -O http://www.greenislandconsulting.com/webobjects/com.apple.webobjects.wotaskd.plist
53 +curl -C - -O http://www.greenislandconsulting.com/webobjects/com.apple.webobjects.womonitor.plist
54 +
55 +launchctl load com.apple.webobjects.wotaskd.plist
56 +
57 +{{/code}}
58 +
30 30  == Install and Configure WebObjects Development Tools ==
31 31  
61 +Instructions for that step are right here:
62 +[[WOL:Install WOLips with Eclipse Update Manager]]
63 +
32 32  == Hello World ==
33 33  
66 +Tutorial for that is here:
67 +[[WOL:Create a new WO Application]]
68 +
34 34  == Where to go from here ==
35 35  
36 -* Install a database
71 +=== Wonder ===
72 +
73 +Absolutely **essential** to add [[Wonder now>>documentation:Wonder Tutorials]]. WIthout it, you will have "barebones and some bugs WebObjects". Wonder is a set of frameworks that fix the core WebObjects bugs and extend WebObjects functionality. it is where all active development of WebObjects is taking place. Even APple contribute to Wonder and use it themselves in the iTunes store, etc. You are really wasting you time if you try to develop in WebObjects without the addition of the Project Wonder frameworks. You only need the [[minimum integration>>documentation:Integrate Wonder Into an Existing Application]] to get the core essential functionality and all the bug fixes to WebObjects.
74 +
75 +=== General Tutorials ===
76 +
77 +[[Development Tutorials>>WOL:Tutorials]]
78 +
79 +=== The Community Mailing Lists ===
80 +
81 +[[Mailing Lists>>documentation:Mailing Lists]]