From willscheidegger at mac.com Wed Jun 4 14:17:09 2008 From: willscheidegger at mac.com (Will Scheidegger) Date: Wed Jun 4 14:17:19 2008 Subject: WOLips: .strings file is not copied to build folder Message-ID: <98C34CBF-8BEA-4D6B-B852-16420A8DE905@mac.com> I'm pretty new to WO development with WOLips so please be patient ;-) I've converted a WO app from Xcode to WOLips and it runs pretty well. Now I've made a few changes in a localized .strings file, but these changes do not show up when I launch the app from within Eclipse. So I had a closer look at what WOLips is producing: - When I trigger an ant build the .strings file in my "dist" folder is getting updated - When I simply change stuff and launch the project in Eclipse (= incremental build?) I would assume that the app looks for the .strings file in the "build" folder because there the files somehow are not updated - When I manually replace the .strings file in the "build" folder the app then reflects the changes I've made to these files I'm sure I'm doing something wrong. I've had a quick look at the ant file hoping to find where the stuff is getting copied to the "build" folder but did not find anything. So I guess the incremental builds don't use this ant file? Where and how can I change the way the "build" folder is set up? Thanks! Regards, Will From chill at global-village.net Wed Jun 4 15:53:47 2008 From: chill at global-village.net (Chuck Hill) Date: Wed Jun 4 15:53:51 2008 Subject: WOLips: .strings file is not copied to build folder In-Reply-To: <98C34CBF-8BEA-4D6B-B852-16420A8DE905@mac.com> References: <98C34CBF-8BEA-4D6B-B852-16420A8DE905@mac.com> Message-ID: <1A81A987-3EF9-455F-B0E7-8BC611A59FE9@global-village.net> On Jun 4, 2008, at 2:17 PM, Will Scheidegger wrote: > I'm pretty new to WO development with WOLips so please be patient ;-) > > I've converted a WO app from Xcode to WOLips and it runs pretty > well. Now I've made a few changes in a localized .strings file, but > these changes do not show up when I launch the app from within > Eclipse. So I had a closer look at what WOLips is producing: > > - When I trigger an ant build the .strings file in my "dist" folder > is getting updated > - When I simply change stuff and launch the project in Eclipse (= > incremental build?) I would assume that the app looks for > the .strings file in the "build" folder because there the files > somehow are not updated > - When I manually replace the .strings file in the "build" folder > the app then reflects the changes I've made to these files > > I'm sure I'm doing something wrong. I've had a quick look at the ant > file hoping to find where the stuff is getting copied to the "build" > folder but did not find anything. So I guess the incremental builds > don't use this ant file? Where and how can I change the way the > "build" folder is set up? Look under the Project menu, is Build Automatically checked? It should be. Chuck -- Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific problems. http://www.global-village.net/products/practical_webobjects From willscheidegger at mac.com Thu Jun 12 11:16:20 2008 From: willscheidegger at mac.com (Will Scheidegger) Date: Thu Jun 12 11:16:54 2008 Subject: An other Eclips/WOLips newbie question: Target VM settings? Message-ID: <9AAB3C05-76BA-47C5-9C70-5FCCC341636B@mac.com> I _think_ I solved the build problem I was facing last week... and have a new one: I built the project I've imported from Xcode with the ant script that is created in the WOLips project and tried to deploy it on or servers. Now I'm getting the "Unsupported major.minor version" error. In Xcode I had to set the "Target VM version" to and "Source Version" to 1.4 to get rid of this problem. I would expect something similar has to be done in Eclipse. Would someone be kind enough to show a newbie where this is done? Thanks a bunch! -Will From chill at global-village.net Thu Jun 12 14:22:28 2008 From: chill at global-village.net (Chuck Hill) Date: Thu Jun 12 14:22:28 2008 Subject: An other Eclips/WOLips newbie question: Target VM settings? In-Reply-To: <9AAB3C05-76BA-47C5-9C70-5FCCC341636B@mac.com> References: <9AAB3C05-76BA-47C5-9C70-5FCCC341636B@mac.com> Message-ID: Globally: Eclipse - Preferences - Java - Compiler then select "Generated .class files compatability" For one project: Project - Properties - Java Compiler the "Enable project specific properties" then select "Generated .class files compatability" chuck On Jun 12, 2008, at 11:16 AM, Will Scheidegger wrote: > I _think_ I solved the build problem I was facing last week... and > have a new one: > > I built the project I've imported from Xcode with the ant script > that is created in the WOLips project and tried to deploy it on or > servers. Now I'm getting the "Unsupported major.minor version" > error. In Xcode I had to set the "Target VM version" to and "Source > Version" to 1.4 to get rid of this problem. I would expect > something similar has to be done in Eclipse. Would someone be kind > enough to show a newbie where this is done? > > Thanks a bunch! > > -Will > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev > -- Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific problems. http://www.global-village.net/products/practical_webobjects From willscheidegger at mac.com Fri Jun 13 00:41:06 2008 From: willscheidegger at mac.com (Will Scheidegger) Date: Fri Jun 13 00:41:42 2008 Subject: An other Eclips/WOLips newbie question: Target VM settings? In-Reply-To: References: <9AAB3C05-76BA-47C5-9C70-5FCCC341636B@mac.com> Message-ID: Thanks Chuck, for your continued support! I did change everything to "1.4" in the project's settings, had the project cleaned and freshly built. Unfortunately I'm still getting the same error when I try to deploy it. So here's a followup question: The project settings influence the Eclipse incremental build (i.e. whatever ends up in the "build" folder). Do they also have an influence on the ant build I'm using to build/install the project? (1h of googling later): I did find this interesting page: http://wiki.objectstyle.org/confluence/display/WOL/WOApplication The following parameters could be of interest to me I would guess: - jvm - jvmOptions - javaVersion So I tried this: Still: Same "unsupported major.minor" error message. What else could I try? -Will On 12.06.2008, at 23:22, Chuck Hill wrote: > Globally: > Eclipse - Preferences - Java - Compiler then select > "Generated .class files compatability" > > For one project: > Project - Properties - Java Compiler the "Enable project specific > properties" then select "Generated .class files compatability" > > chuck > > > On Jun 12, 2008, at 11:16 AM, Will Scheidegger wrote: > >> I _think_ I solved the build problem I was facing last week... and >> have a new one: >> >> I built the project I've imported from Xcode with the ant script >> that is created in the WOLips project and tried to deploy it on or >> servers. Now I'm getting the "Unsupported major.minor version" >> error. In Xcode I had to set the "Target VM version" to and "Source >> Version" to 1.4 to get rid of this problem. I would expect >> something similar has to be done in Eclipse. Would someone be kind >> enough to show a newbie where this is done? >> >> Thanks a bunch! >> >> -Will >> _______________________________________________ >> WebObjects-dev mailing list >> WebObjects-dev@omnigroup.com >> http://www.omnigroup.com/mailman/listinfo/webobjects-dev >> > > -- > > Practical WebObjects - for developers who want to increase their > overall knowledge of WebObjects or who are trying to solve specific > problems. > http://www.global-village.net/products/practical_webobjects > > > > > > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev From lachlan.deck at gmail.com Sat Jun 14 04:37:24 2008 From: lachlan.deck at gmail.com (Lachlan Deck) Date: Sat Jun 14 04:37:32 2008 Subject: An other Eclips/WOLips newbie question: Target VM settings? In-Reply-To: References: <9AAB3C05-76BA-47C5-9C70-5FCCC341636B@mac.com> Message-ID: <92434A90-112B-4FA4-A173-E18BB365F639@gmail.com> On 13/06/2008, at 5:41 PM, Will Scheidegger wrote: > Thanks Chuck, for your continued support! I did change everything to > "1.4" in the project's settings, had the project cleaned and freshly > built. Unfortunately I'm still getting the same error when I try to > deploy it. So here's a followup question: > > The project settings influence the Eclipse incremental build (i.e. > whatever ends up in the "build" folder). Do they also have an > influence on the ant build I'm using to build/install the project? > > (1h of googling later): > > I did find this interesting page: http://wiki.objectstyle.org/confluence/display/WOL/WOApplication > The following parameters could be of interest to me I would guess: > - jvm > - jvmOptions > - javaVersion > > So I tried this: > destDir="${dest.dir}" name="${project.name}" principalClass="$ > {principalClass}" stdFrameworks="false" webXML="${webXML}" > webXML_CustomContent="${webXML_CustomContent}" javaVersion="1.4" > jvm="/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/ > Home/"> > > Still: Same "unsupported major.minor" error message. > > What else could I try? with regards, -- Lachlan Deck From jalhashal at ubermind.com Sun Jun 15 19:49:09 2008 From: jalhashal at ubermind.com (Jay Al Hashal) Date: Sun Jun 15 20:08:21 2008 Subject: WebObjects Training, Registration Now Open (Seattle September 8-12, 2008) Message-ID: <64730792-7570-4EA6-8E90-48C7DF1D650B@ubermind.com> ?bermind will be holding it?s fall WebObjects Development course from September 8th through 12th. This five-day course offers an intensive look into designing, building, and deploying Web applications using Apple?s WebObjects technology. Based on over a decade of professional consulting on WebObjects projects?for clients as diverse as Apple, Disney, and the U.S. Postal Service?we have developed a curriculum that reflects a hands-on, real- world perspective to WebObjects development. The course, which will be offered in Seattle, Washington, will run from September 8th - 12th. For specific course details and to register, refer to our training page (http://www.ubermind.com/ training). As the class is limited to 10 students, early enrollment is highly recommended. There is some flexibility in the syllabus to tailor it more towards the needs of the class. Class is open to all levels. Bring your laptop and be prepared to buckle down and write some code. -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20080615/3a3a05bf/attachment.html From y8 at kevinpan.com Sun Jun 15 20:40:56 2008 From: y8 at kevinpan.com (ikevin88) Date: Sun Jun 15 20:40:59 2008 Subject: WebObjects 5.4 on Linux (Red Hat Enterprise) Message-ID: <17792535.post@talk.nabble.com> Dear WebObjects Community, I am a seasoned WebObjects developer for many years, until version 5.3. I have not done done any development on the latest version, 5.4, yet. I now have a client who urgently requires a new SaaS application to be developed within 4 to 6 months. I have evaluated different technologies and it seems that WebObjects is one which can promise delivery on time. BUT there are issues which I need some answers: * Linux (Red Hat Enterprise) Development work must be done on Linux (Red Hat Enterprise). I have read something on WOCommunity.org that the initial installation needs are Mac, and after that the packages could be moved to Linux. Is the installation process difficult? Has anyone done DEVELOPMENT work on Linux using WebObjects 5.4? -- I need to be very sure about this. Thanks! * WebObjects Builder Apple has deprecated most of the WebObjects development tools, including WebObjects Builder. So, what is the equivalent or replacement for WebObjects Builder, to build applications on LINUX? I appreciate your answers to the questions. Kind regards, Kevin Pan. -- View this message in context: http://www.nabble.com/WebObjects-5.4-on-Linux-%28Red-Hat-Enterprise%29-tp17792535p17792535.html Sent from the WebObjects-Dev mailing list archive at Nabble.com. From cheonghee at datasonic.com.my Mon Jun 16 02:18:25 2008 From: cheonghee at datasonic.com.my (Cheong Hee (Datasonic)) Date: Mon Jun 16 02:18:56 2008 Subject: WebObjects 5.4 on Linux (Red Hat Enterprise) References: <17792535.post@talk.nabble.com> Message-ID: <00e901c8cf91$f1edcc00$1800a8c0@CHNGXP> Hi Recently (last one~two weeks ago), someone did posted the development installer for Linux. You may want to give a try from webobjects-dev-request@lists.apple.com. I have RH though and yet to try it out. WebObjects Builder has been replaced by Component Builder. All applications now will have to build using Eclipse/WOLips, so there are more thing e.g. Velocity EOGenerator, Entity Modeller etc. HTH. Cheers Cheong Hee ----- Original Message ----- From: "ikevin88" To: Sent: Monday, June 16, 2008 11:40 AM Subject: WebObjects 5.4 on Linux (Red Hat Enterprise) > > Dear WebObjects Community, > > I am a seasoned WebObjects developer for many years, until version 5.3. I > have not done done any development on the latest version, 5.4, yet. > > I now have a client who urgently requires a new SaaS application to be > developed within 4 to 6 months. I have evaluated different technologies > and > it seems that WebObjects is one which can promise delivery on time. BUT > there are issues which I need some answers: > > * Linux (Red Hat Enterprise) > Development work must be done on Linux (Red Hat Enterprise). I have read > something on WOCommunity.org that the initial installation needs are Mac, > and after that the packages could be moved to Linux. Is the installation > process difficult? Has anyone done DEVELOPMENT work on Linux using > WebObjects 5.4? -- I need to be very sure about this. Thanks! > > * WebObjects Builder > Apple has deprecated most of the WebObjects development tools, including > WebObjects Builder. So, what is the equivalent or replacement for > WebObjects > Builder, to build applications on LINUX? > > I appreciate your answers to the questions. > > Kind regards, > > Kevin Pan. > -- > View this message in context: > http://www.nabble.com/WebObjects-5.4-on-Linux-%28Red-Hat-Enterprise%29-tp17792535p17792535.html > Sent from the WebObjects-Dev mailing list archive at Nabble.com. > > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev > From willscheidegger at mac.com Thu Jun 19 06:12:12 2008 From: willscheidegger at mac.com (Will Scheidegger) Date: Thu Jun 19 06:12:47 2008 Subject: More WOLips questions: HTML formatting, memory leaks? Message-ID: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> As you can see, I'm getting more and more into it. So thanks for all the help you have provided so far. I do try to consult the wiki first, but some things still remain unanswered... so here my next two questions if I may: HTML formatting in WOLips produces "strange" to "invalid" code. Is there something strange with my setup or is this generally the case? When I format a components HTML file (following this: http://wiki.objectstyle.org/confluence/display/WOL/Refactor+-+Format+HTML+Feature) my HTML-Code is pretty crippled afterwards with - spaces before and after the "=" symbol in attributes (i.e. instead of ) - empty tags being shortened (i.e. instead of ) - and some funny effects where I'm not 100% sure that it was Eclipse messing things up (e.g.

) Does WOLips use it's own HTML formatter? Is there any way I can exchange the HTML formatter being used? Then I strongly thing that my setup has a serious memory leak. When I run a wo app out of Eclipse which works fine in production with only 32MB RAM, I always get out of memory exceptions after a very short time (e.g. 20 requests) even when I double the amount of ram for the app. Does anyone else experience similar behavior? Cheers, Will From mschrag at mdimension.com Thu Jun 19 06:34:38 2008 From: mschrag at mdimension.com (Mike Schrag) Date: Thu Jun 19 07:05:02 2008 Subject: More WOLips questions: HTML formatting, memory leaks? In-Reply-To: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> References: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> Message-ID: <73823321-F13B-4E0A-816B-BF21771E7302@mdimension.com> > When I format a components HTML file (following this: http://wiki.objectstyle.org/confluence/display/WOL/Refactor+-+Format+HTML+Feature) > my HTML-Code is pretty crippled afterwards with > - spaces before and after the "=" symbol in attributes (i.e. > instead of name="TextField9" />) > - empty tags being shortened (i.e. instead of ) > - and some funny effects where I'm not 100% sure that it was > Eclipse messing things up (e.g.

) You didn't include what version of WOLips you're running but you're definitely not on the latest stable. I don't know what you mean about your HTML being "crippled." None of these actually sound like a problem (just style preferences). The only one that's a little weird (but not wrong) is

, which I just tested, and it become
in the new build. The spaces around the equals is a preference -- Prefs=>WOLips=>HTML Editor=>XML > Does WOLips use it's own HTML formatter? Is there any way I can > exchange the HTML formatter being used? It uses its own, and you cannot exchange it for another. > Then I strongly thing that my setup has a serious memory leak. When > I run a wo app out of Eclipse which works fine in production with > only 32MB RAM, I always get out of memory exceptions after a very > short time (e.g. 20 requests) even when I double the amount of ram > for the app. Does anyone else experience similar behavior? Eclipse isn't really involved in the memory management of your application -- it runs in a completely separate VM. If you're running in debug mode (which you should be), that will definitely take up more ram. When you say you are doubling the amount of ram for the app, where and how are you exactly specifying that? ms From qdolan at gmail.com Thu Jun 19 07:13:22 2008 From: qdolan at gmail.com (Q) Date: Thu Jun 19 07:13:34 2008 Subject: More WOLips questions: HTML formatting, memory leaks? In-Reply-To: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> References: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> Message-ID: <7CAA3916-5B63-4624-88E6-D9C1FBA02B22@gmail.com> On 19/06/2008, at 11:12 PM, Will Scheidegger wrote: > As you can see, I'm getting more and more into it. So thanks for all > the help you have provided so far. I do try to consult the wiki > first, but some things still remain unanswered... so here my next > two questions if I may: > > HTML formatting in WOLips produces "strange" to "invalid" code. Is > there something strange with my setup or is this generally the case? > When I format a components HTML file (following this: http://wiki.objectstyle.org/confluence/display/WOL/Refactor+-+Format+HTML+Feature) > my HTML-Code is pretty crippled afterwards with > - spaces before and after the "=" symbol in attributes (i.e. > instead of name="TextField9" />) This settable in Preferences->WOLips->HTML Editor->XML->Spaces Around Equals > - empty tags being shortened (i.e. instead of ) These two are both equivalent to a browser or xml parser. > > - and some funny effects where I'm not 100% sure that it was > Eclipse messing things up (e.g.

) There used to be a case where
becomes

(so that is it valid XML), then if you reformat again it finally becomes
, but that was fixed some time ago. > Does WOLips use it's own HTML formatter? Is there any way I can > exchange the HTML formatter being used? Yes, WOLips uses a customised formatter that knows how to deal with wo tags and intelligently preserves surrounding non breaking space. The only way to use a different formatter is to open your component's HTML file in a different editor (like Aptana for example) and reformat it that way, however I would recommend being very careful doing this. Mike and I spent quite a bit of time trying to come up with a formatter that hopefully doesn't screw up your component template nearly as badly as the alternatives do. > Then I strongly thing that my setup has a serious memory leak. When > I run a wo app out of Eclipse which works fine in production with > only 32MB RAM, I always get out of memory exceptions after a very > short time (e.g. 20 requests) even when I double the amount of ram > for the app. Does anyone else experience similar behavior? Profile your app and find out where the memory is being held. Without knowing where the memory is going you can't even begin to speculate whether it's a leak, or normal behaviour. This has nothing to do with eclipse btw. -- Seeya...Q Quinton Dolan - qdolan@gmail.com Gold Coast, QLD, Australia (GMT+10) Ph: +61 419 729 806 From willscheidegger at mac.com Thu Jun 19 07:22:02 2008 From: willscheidegger at mac.com (Will Scheidegger) Date: Thu Jun 19 07:22:39 2008 Subject: More WOLips questions: HTML formatting, memory leaks? In-Reply-To: <73823321-F13B-4E0A-816B-BF21771E7302@mdimension.com> References: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> <73823321-F13B-4E0A-816B-BF21771E7302@mdimension.com> Message-ID: <0BA8FF50-72DE-42DF-B78B-F9AD44F2EF82@mac.com> Once again, the help was _fast_ and _really helpful_! On 19.06.2008, at 15:34, Mike Schrag wrote: >> When I format a components HTML file (following this: http://wiki.objectstyle.org/confluence/display/WOL/Refactor+-+Format+HTML+Feature) >> my HTML-Code is pretty crippled afterwards with >> - spaces before and after the "=" symbol in attributes (i.e. >> instead of > name="TextField9" />) >> - empty tags being shortened (i.e. instead of ) >> - and some funny effects where I'm not 100% sure that it was >> Eclipse messing things up (e.g.

) > You didn't include what version of WOLips you're running but you're > definitely not on the latest stable. I don't know what you mean > about your HTML being "crippled." None of these actually sound like > a problem (just style preferences). The only one that's a little > weird (but not wrong) is

, which I just tested, and it > become
in the new build. The spaces around the equals is a > preference -- Prefs=>WOLips=>HTML Editor=>XML Yes, you're right, the code is not crippled - it's just needs getting used to because I've never seen a tool which formats its code like this. But the preference settings you've pointed me to of course did solve the problem. Thanks! >> Then I strongly thing that my setup has a serious memory leak. When >> I run a wo app out of Eclipse which works fine in production with >> only 32MB RAM, I always get out of memory exceptions after a very >> short time (e.g. 20 requests) even when I double the amount of ram >> for the app. Does anyone else experience similar behavior? > Eclipse isn't really involved in the memory management of your > application -- it runs in a completely separate VM. If you're > running in debug mode (which you should be), that will definitely > take up more ram. When you say you are doubling the amount of ram > for the app, where and how are you exactly specifying that? "Debug mode" = Launching the app with the "Debug" button in Eclipse? No, so far I always lunched it with the "Run" button. I set the RAM in the "Run" dialog under the WOApplication's VM arguments. Thanks for the help! Will From edgarhatesspam at gmx.de Tue Jun 24 10:54:12 2008 From: edgarhatesspam at gmx.de (Edgar Klein) Date: Tue Jun 24 10:54:22 2008 Subject: More WOLips questions: HTML formatting, memory leaks? In-Reply-To: <0BA8FF50-72DE-42DF-B78B-F9AD44F2EF82@mac.com> References: <7E839759-20C9-4DB6-8C14-BDC1FC4EE147@mac.com> <73823321-F13B-4E0A-816B-BF21771E7302@mdimension.com> <0BA8FF50-72DE-42DF-B78B-F9AD44F2EF82@mac.com> Message-ID: On 19-Jun-08, at 8:22 AM, Will Scheidegger wrote: > Once again, the help was _fast_ and _really helpful_! > > On 19.06.2008, at 15:34, Mike Schrag wrote: > >>> When I format a components HTML file (following this: http://wiki.objectstyle.org/confluence/display/WOL/Refactor+-+Format+HTML+Feature) >>> my HTML-Code is pretty crippled afterwards with >>> - spaces before and after the "=" symbol in attributes (i.e. >>> instead of >> name="TextField9" />) >>> - empty tags being shortened (i.e. instead of ) >>> - and some funny effects where I'm not 100% sure that it was >>> Eclipse messing things up (e.g.

) >> You didn't include what version of WOLips you're running but you're >> definitely not on the latest stable. I don't know what you mean >> about your HTML being "crippled." None of these actually sound >> like a problem (just style preferences). The only one that's a >> little weird (but not wrong) is

, which I just tested, and >> it become
in the new build. The spaces around the equals is >> a preference -- Prefs=>WOLips=>HTML Editor=>XML > > Yes, you're right, the code is not crippled - it's just needs > getting used to because I've never seen a tool which formats its > code like this. But the preference settings you've pointed me to of > course did solve the problem. Thanks! > > >>> Then I strongly thing that my setup has a serious memory leak. >>> When I run a wo app out of Eclipse which works fine in production >>> with only 32MB RAM, I always get out of memory exceptions after a >>> very short time (e.g. 20 requests) even when I double the amount >>> of ram for the app. Does anyone else experience similar behavior? >> Eclipse isn't really involved in the memory management of your >> application -- it runs in a completely separate VM. If you're >> running in debug mode (which you should be), that will definitely >> take up more ram. When you say you are doubling the amount of ram >> for the app, where and how are you exactly specifying that? > > "Debug mode" = Launching the app with the "Debug" button in Eclipse? > No, so far I always lunched it with the "Run" button. I set the RAM > in the "Run" dialog under the WOApplication's VM arguments. WOWODC: "Always run your apps in debug mode". You could also change the eclipse.ini file (.../eclipse/Eclipse.app/ Contents/MacOS/eclipse.ini) and set the parameter -Xmx to let say 512m. This saves me when I clean my workspace so that Eclipse doesn't run out of memory. Edgar From jdunnett at math.uwaterloo.ca Wed Jun 25 06:40:29 2008 From: jdunnett at math.uwaterloo.ca (Jeff Dunnett) Date: Wed Jun 25 07:15:40 2008 Subject: WO Components and Dreamweaver Templates Message-ID: <2DC69E6F-71AE-46E1-841A-7C37C3B20752@math.uwaterloo.ca> Hello Everyone, I work for a small IT team at a University. We have a large number of WebObjects applications that aid our operations. Management decided to revamp our web site to take into account a common look and feel. They want all of our WebObjects applications to comply with that common look at feel. In order to create and manage that common look at feel they are using Dreamweaver CS3 and Dreamweaver templates (.dwt files). When a modification is made to the template they us Dreamweaver to propagate the changes to all HTML files. I was wonder if anyone has done with with the .html part of WebObjects components. Does anyone have any idea of how to accomplish something like this for components? Any help would be appreciated. Regards, Jeff