<?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: Hello World with ColdFusion and Spring</title>
	<atom:link href="http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/</link>
	<description></description>
	<lastBuildDate>Sun, 08 Jan 2012 15:53:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Guillermo</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1538</link>
		<dc:creator>Guillermo</dc:creator>
		<pubDate>Sun, 27 Mar 2011 22:09:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-1538</guid>
		<description>First this tutorial works great. 

I have an issue though in regards to setting the scope on a bean. I am trying to set it to the &#039;request&#039; scope. I keep getting &quot;No Scope registered for scope &#039;request&#039;&quot; Now I found the fix at this URL http://static.springsource.org/spring/docs/2.5.x/reference/beans.html
3.4.4.1. Initial web configuration

I change the File 
C:\JRun4\servers\dev3\cfusion.ear\cfusion.war\WEB-INF\web.xml is valid.
(Adobe CF9)

I then change to use AOP in the beans definition in web.xml

all to no avail I keep getting the No Scope registered for scope &#039;request&#039;
I think It might be that the listener change cannot find the jar but not sure what to change it to so it finds it.
listener-class 
&lt;strong&gt;org.springframework.web.context.request.RequestContextListener&lt;strong&gt;
/listener-class

Any help would be appreciated I am going out of my mind.</description>
		<content:encoded><![CDATA[<p>First this tutorial works great. </p>
<p>I have an issue though in regards to setting the scope on a bean. I am trying to set it to the &#8216;request&#8217; scope. I keep getting &#8220;No Scope registered for scope &#8216;request&#8217;&#8221; Now I found the fix at this URL <a href="http://static.springsource.org/spring/docs/2.5.x/reference/beans.html" rel="nofollow">http://static.springsource.org/spring/docs/2.5.x/reference/beans.html</a><br />
3.4.4.1. Initial web configuration</p>
<p>I change the File<br />
C:\JRun4\servers\dev3\cfusion.ear\cfusion.war\WEB-INF\web.xml is valid.<br />
(Adobe CF9)</p>
<p>I then change to use AOP in the beans definition in web.xml</p>
<p>all to no avail I keep getting the No Scope registered for scope &#8216;request&#8217;<br />
I think It might be that the listener change cannot find the jar but not sure what to change it to so it finds it.<br />
listener-class<br />
<strong>org.springframework.web.context.request.RequestContextListener</strong><strong><br />
/listener-class</p>
<p>Any help would be appreciated I am going out of my mind.</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristides</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1098</link>
		<dc:creator>Aristides</dc:creator>
		<pubDate>Wed, 15 Sep 2010 16:25:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-1098</guid>
		<description>Oh thanks for the help !!!
and also I have to change this line
     factory.setConfigLocation( expandPath(&quot;beans.xml&quot;) );
for this one; 
     factory.setConfigLocation( &quot;../webapps/cfusion/springdemo/beans.xml&quot; );
I don&#039;t why but the parameter was bad sended.

thanks for the post, help me really much.</description>
		<content:encoded><![CDATA[<p>Oh thanks for the help !!!<br />
and also I have to change this line<br />
     factory.setConfigLocation( expandPath(&#8220;beans.xml&#8221;) );<br />
for this one;<br />
     factory.setConfigLocation( &#8220;../webapps/cfusion/springdemo/beans.xml&#8221; );<br />
I don&#8217;t why but the parameter was bad sended.</p>
<p>thanks for the post, help me really much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevan Stannard</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1097</link>
		<dc:creator>Kevan Stannard</dc:creator>
		<pubDate>Tue, 14 Sep 2010 23:23:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-1097</guid>
		<description>Hi Aristides, sound like you might need to create an Application.cfc file which sits in your web root directory.

In ColdFusion version 9 you can use something like this:

&lt;pre&gt;
component {
	this.name = &quot;CFSpring&quot;;
}
&lt;/pre&gt;
 
In ColdFusion version 8 and earlier you can use this:

&lt;pre&gt;
&lt;cfcomponent output=&quot;false&quot;&gt;
	&lt;cfset this.name = &quot;CFSpring&quot;&gt;
&lt;/cfcomponent&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi Aristides, sound like you might need to create an Application.cfc file which sits in your web root directory.</p>
<p>In ColdFusion version 9 you can use something like this:</p>
<pre>
component {
	this.name = "CFSpring";
}
</pre>
<p>In ColdFusion version 8 and earlier you can use this:</p>
<pre>
&lt;cfcomponent output="false"&gt;
	&lt;cfset this.name = "CFSpring"&gt;
&lt;/cfcomponent&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristides</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1096</link>
		<dc:creator>Aristides</dc:creator>
		<pubDate>Tue, 14 Sep 2010 17:05:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-1096</guid>
		<description>I am new using coldfusion, but i am java developer that need to use some services writing using spring framework to get data from database.

 So I am not sure is this the correct deployment on tomcat, the coldfusion sendme this error.
Variable APPLICATION is undefined. 
for more info I take some screenshots of the code and class

&lt;a href=&quot;http://www.flickr.com/photos/tuliopa/4990050109/&quot; title=&quot;sreen2 por TulioPa, en Flickr&quot; rel=&quot;nofollow&quot;&gt;screen2&lt;/a&gt;
&lt;a href=&quot;http://www.flickr.com/photos/tuliopa/4990049775/&quot; title=&quot;sreen0 por TulioPa, en Flickr&quot; rel=&quot;nofollow&quot;&gt;screen0&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I am new using coldfusion, but i am java developer that need to use some services writing using spring framework to get data from database.</p>
<p> So I am not sure is this the correct deployment on tomcat, the coldfusion sendme this error.<br />
Variable APPLICATION is undefined.<br />
for more info I take some screenshots of the code and class</p>
<p><a href="http://www.flickr.com/photos/tuliopa/4990050109/" title="sreen2 por TulioPa, en Flickr" rel="nofollow">screen2</a><br />
<a href="http://www.flickr.com/photos/tuliopa/4990049775/" title="sreen0 por TulioPa, en Flickr" rel="nofollow">screen0</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevan Stannard</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1095</link>
		<dc:creator>Kevan Stannard</dc:creator>
		<pubDate>Tue, 14 Sep 2010 01:37:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-1095</guid>
		<description>Hi Aristides, perhaps you can give some more details on what you are trying to do? If you have ColdFusion running under TomCat then this should all work for you.</description>
		<content:encoded><![CDATA[<p>Hi Aristides, perhaps you can give some more details on what you are trying to do? If you have ColdFusion running under TomCat then this should all work for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristides</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-1094</link>
		<dc:creator>Aristides</dc:creator>
		<pubDate>Mon, 13 Sep 2010 21:12:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-1094</guid>
		<description>Hi, how can I run this on tomcat 6.0?</description>
		<content:encoded><![CDATA[<p>Hi, how can I run this on tomcat 6.0?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zarko Susnjar</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-184</link>
		<dc:creator>Zarko Susnjar</dc:creator>
		<pubDate>Thu, 08 Apr 2010 04:29:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-184</guid>
		<description>Great tutorial! Even if you don&#039;t use dependency injection, I find it even more useful as Java&gt;Javaloader&gt;CFML how-to.</description>
		<content:encoded><![CDATA[<p>Great tutorial! Even if you don&#8217;t use dependency injection, I find it even more useful as Java&gt;Javaloader&gt;CFML how-to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hussein Grant</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-172</link>
		<dc:creator>Hussein Grant</dc:creator>
		<pubDate>Thu, 25 Mar 2010 21:31:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-172</guid>
		<description>This is a great post! I&#039;m finding myself using java and ColdFusion quite often. Any good programmer Knowledgeable enough in both disciplines would be crazy to not leverage the two at some point.</description>
		<content:encoded><![CDATA[<p>This is a great post! I&#8217;m finding myself using java and ColdFusion quite often. Any good programmer Knowledgeable enough in both disciplines would be crazy to not leverage the two at some point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiva sankara rao</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-171</link>
		<dc:creator>shiva sankara rao</dc:creator>
		<pubDate>Thu, 11 Mar 2010 04:22:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-171</guid>
		<description>This is very good example for beginner .
Thanks, because it helps more to understand spring</description>
		<content:encoded><![CDATA[<p>This is very good example for beginner .<br />
Thanks, because it helps more to understand spring</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty McGee</title>
		<link>http://blog.stannard.net.au/2009/11/03/hello-world-with-coldfusion-and-spring/comment-page-1/#comment-183</link>
		<dc:creator>Marty McGee</dc:creator>
		<pubDate>Fri, 12 Feb 2010 19:13:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-183</guid>
		<description>Kevin, this is an OUTSTANDING post.  You have explained, in this simple and concise tutorial, how to hook up ColdFusion and Spring, with the help of Mark Mandel&#039;s JavaLoader CFC library, which opens the tremendous possibilities of server-based processing using Java.  Ya, Ruby can spit out a hello world with less lines of code, but that really has nothing to do with your entry.  Again, a great post for a coldfusioner like myself of 10 years, who are seeking simple explanations of how to hook up ColdFusion (the ultimate &quot;language&quot;) with the rest of the world&#039;s languages and frameworks.  Keep rollin&#039;.</description>
		<content:encoded><![CDATA[<p>Kevin, this is an OUTSTANDING post.  You have explained, in this simple and concise tutorial, how to hook up ColdFusion and Spring, with the help of Mark Mandel&#8217;s JavaLoader CFC library, which opens the tremendous possibilities of server-based processing using Java.  Ya, Ruby can spit out a hello world with less lines of code, but that really has nothing to do with your entry.  Again, a great post for a coldfusioner like myself of 10 years, who are seeking simple explanations of how to hook up ColdFusion (the ultimate &quot;language&quot;) with the rest of the world&#8217;s languages and frameworks.  Keep rollin&#8217;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

