<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: WebObjects 5.3 Licensing</title>
	<atom:link href="http://davidleber.net/?feed=rss2&#038;p=170" rel="self" type="application/rss+xml" />
	<link>http://davidleber.net/?p=170</link>
	<description>I&#039;m David LeBer. I&#039;m Canadian, I&#039;m pessimistic, I code. This is my blog reBeLog. WO, Cocoa, thoughts, you know, it&#039;s a blog.</description>
	<lastBuildDate>Tue, 31 Aug 2010 22:09:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kefka&#8217;s Tower  &#187; Blog Archive   &#187; WebObjects 5.3 Deployment</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-1308</link>
		<dc:creator>Kefka&#8217;s Tower  &#187; Blog Archive   &#187; WebObjects 5.3 Deployment</dc:creator>
		<pubDate>Thu, 24 Nov 2005 08:15:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-1308</guid>
		<description>[...]  to be as straight forward as it should be. Best links I&#8217;ve found so far are this and this. 	That reminds me - it seems really hard to find good info on WebObjects. I&#8217;m trying to start a WO Links [...]</description>
		<content:encoded><![CDATA[<p>[...]  to be as straight forward as it should be. Best links I&#8217;ve found so far are this and this. 	That reminds me &#8211; it seems really hard to find good info on WebObjects. I&#8217;m trying to start a WO Links [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-1284</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Mon, 22 Aug 2005 18:35:59 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-1284</guid>
		<description>try 
http://localhost:8080/yourapp/WebObjects</description>
		<content:encoded><![CDATA[<p>try<br />
<a href="http://localhost:8080/yourapp/WebObjects" rel="nofollow">http://localhost:8080/yourapp/WebObjects</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kad</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-1281</link>
		<dc:creator>Kad</dc:creator>
		<pubDate>Mon, 15 Aug 2005 17:12:30 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-1281</guid>
		<description>Jim
According to your indications I succeeded building a webapp (Tomcat 5.5.9 - WO 5.3 - XCode 2.1) got a complete WEB-INF in my &quot;HelloWord&quot; webapp folder...  there is a HelloWorld.woa in it....(with lib, Library, tlds folders too) 
I can deploy HelloWorld in Tomcat Manager, but it just show the folder ... not starting any app at all ... where am I wrong ?
do you have a small webapp I could test ?

kad</description>
		<content:encoded><![CDATA[<p>Jim<br />
According to your indications I succeeded building a webapp (Tomcat 5.5.9 &#8211; WO 5.3 &#8211; XCode 2.1) got a complete WEB-INF in my &#8220;HelloWord&#8221; webapp folder&#8230;  there is a HelloWorld.woa in it&#8230;.(with lib, Library, tlds folders too)<br />
I can deploy HelloWorld in Tomcat Manager, but it just show the folder &#8230; not starting any app at all &#8230; where am I wrong ?<br />
do you have a small webapp I could test ?</p>
<p>kad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-638</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Mon, 11 Jul 2005 17:59:08 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-638</guid>
		<description>You can deploy to platforms other than OSX in WebObjects 5.3, the process wasn&#039;t exactly straight forward to me since I am new to WebObjects, this is what I figured out how to create a standalong web application that works under tomcat.

1. When you create your project, make sure you tick the Deploy in a servlet container option, select &quot;Deploy as a Servlet Single Directory Deployment option&quot;, also tick the &quot;Copy all JAR files...&quot; option.

2. At the XCode project window, change the active build configuration to deployment, for all three targets, your app, application server and web server, change the following build settings to

DEPLOYMENT_LOCATION = &quot;NO&quot;
DEPLOYMENT_POSTPROCESSING = &quot;NO&quot;

(if you don&#039;t do this, the deployment build process will fail due to the script trying to cd into a symbolic link pointing back to itself.)

3. In deployment build configuration for your app, change INSTALL_PATH_FOR_STYLE to,

INSTALL_PATH_FOR_STYLE = &quot;$(TARGET_BUILD_DIR)&quot;

4. Finally, add the following build settings to the deployment build configuration of your app.

SERVLET_COPY_JARS = YES
SERVLET_DEPLOY_LICENSE = [Your deployment licence]
SERVLET_SINGLE_DIR_DEPLOY = YES
SERVLET_SINGLE_DIR_DEPLOY_LICENSE = [Your deployment licence]
SERVLET_TRUE_WAR = YES
SERVLET_WEBAPPS_DIR = /opt/tomcat/webapps

After completing these steps, build using the deployment configuration, you will find that the build process will create your webapp directory in /opt/tomcat/webapps.

I am currently running my DirectToWeb application on my linux box (FC3/Tomcat 5.5/Apache/mod_jk). 

I couldn&#039;t believe how easy and quick it is to create a fully functional web app based on an existing data model using WebObjects.

WebObjects rules!!</description>
		<content:encoded><![CDATA[<p>You can deploy to platforms other than OSX in WebObjects 5.3, the process wasn&#8217;t exactly straight forward to me since I am new to WebObjects, this is what I figured out how to create a standalong web application that works under tomcat.</p>
<p>1. When you create your project, make sure you tick the Deploy in a servlet container option, select &#8220;Deploy as a Servlet Single Directory Deployment option&#8221;, also tick the &#8220;Copy all JAR files&#8230;&#8221; option.</p>
<p>2. At the XCode project window, change the active build configuration to deployment, for all three targets, your app, application server and web server, change the following build settings to</p>
<p>DEPLOYMENT_LOCATION = &#8220;NO&#8221;<br />
DEPLOYMENT_POSTPROCESSING = &#8220;NO&#8221;</p>
<p>(if you don&#8217;t do this, the deployment build process will fail due to the script trying to cd into a symbolic link pointing back to itself.)</p>
<p>3. In deployment build configuration for your app, change INSTALL_PATH_FOR_STYLE to,</p>
<p>INSTALL_PATH_FOR_STYLE = &#8220;$(TARGET_BUILD_DIR)&#8221;</p>
<p>4. Finally, add the following build settings to the deployment build configuration of your app.</p>
<p>SERVLET_COPY_JARS = YES<br />
SERVLET_DEPLOY_LICENSE = [Your deployment licence]<br />
SERVLET_SINGLE_DIR_DEPLOY = YES<br />
SERVLET_SINGLE_DIR_DEPLOY_LICENSE = [Your deployment licence]<br />
SERVLET_TRUE_WAR = YES<br />
SERVLET_WEBAPPS_DIR = /opt/tomcat/webapps</p>
<p>After completing these steps, build using the deployment configuration, you will find that the build process will create your webapp directory in /opt/tomcat/webapps.</p>
<p>I am currently running my DirectToWeb application on my linux box (FC3/Tomcat 5.5/Apache/mod_jk). </p>
<p>I couldn&#8217;t believe how easy and quick it is to create a fully functional web app based on an existing data model using WebObjects.</p>
<p>WebObjects rules!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-440</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 13 Jun 2005 11:37:55 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-440</guid>
		<description>WO is dead, long live WO...</description>
		<content:encoded><![CDATA[<p>WO is dead, long live WO&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Jakob</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-439</link>
		<dc:creator>Matthias Jakob</dc:creator>
		<pubDate>Mon, 13 Jun 2005 06:47:38 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-439</guid>
		<description>WO is dead now ... we plan to use Sun Studio Creator 2.0 ...</description>
		<content:encoded><![CDATA[<p>WO is dead now &#8230; we plan to use Sun Studio Creator 2.0 &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-427</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 10 Jun 2005 12:58:31 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-427</guid>
		<description>MonkeyT: Ooo, I think that is a long shot. But stranger things &lt;em&gt;have&lt;/em&gt; happened (Intel Inside anyone?).

DerHeld: WO5.2.4 &lt;em&gt;is&lt;/em&gt; qualified for Tiger, you just have to stick with Xcode 2.0.</description>
		<content:encoded><![CDATA[<p>MonkeyT: Ooo, I think that is a long shot. But stranger things <em>have</em> happened (Intel Inside anyone?).</p>
<p>DerHeld: WO5.2.4 <em>is</em> qualified for Tiger, you just have to stick with Xcode 2.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DerHeld</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-426</link>
		<dc:creator>DerHeld</dc:creator>
		<pubDate>Fri, 10 Jun 2005 12:19:32 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-426</guid>
		<description>Can I still develop for WO5.2.4 with XCode2.1? 
Since we won&#039;t upgrade our webservers, I could not upgrade to Tiger if that was the case ...</description>
		<content:encoded><![CDATA[<p>Can I still develop for WO5.2.4 with XCode2.1?<br />
Since we won&#8217;t upgrade our webservers, I could not upgrade to Tiger if that was the case &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MonkeyT</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-416</link>
		<dc:creator>MonkeyT</dc:creator>
		<pubDate>Fri, 10 Jun 2005 02:54:04 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-416</guid>
		<description>So does anybody else think restricting both development and deployment to OSX combined with the introduction of CoreData might lead to ObjC being supported in WO again about the time Leopard shows up?</description>
		<content:encoded><![CDATA[<p>So does anybody else think restricting both development and deployment to OSX combined with the introduction of CoreData might lead to ObjC being supported in WO again about the time Leopard shows up?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://davidleber.net/?p=170&#038;cpage=1#comment-401</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 08 Jun 2005 17:09:30 +0000</pubDate>
		<guid isPermaLink="false">/?p=170#comment-401</guid>
		<description>But you can always use Eclipse as an external editor with Xcode. Xcode to manage the project, compile, debug and run... but little more work when you add a file in Eclipse.</description>
		<content:encoded><![CDATA[<p>But you can always use Eclipse as an external editor with Xcode. Xcode to manage the project, compile, debug and run&#8230; but little more work when you add a file in Eclipse.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
