<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>hasan&#039;s blog (বল্গ) &#187; spring framework</title>
	<atom:link href="http://we4tech.wordpress.com/category/spring-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://we4tech.wordpress.com</link>
	<description>work for fun!!!</description>
	<lastBuildDate>Wed, 25 Jan 2012 11:56:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='we4tech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/77f5f3e5f84d83c83da12540728f5cb3?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>hasan&#039;s blog (বল্গ) &#187; spring framework</title>
		<link>http://we4tech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://we4tech.wordpress.com/osd.xml" title="hasan&#039;s blog (বল্গ)" />
	<atom:link rel='hub' href='http://we4tech.wordpress.com/?pushpress=hub'/>
		<item>
		<title>create new url protocol to load spring configuration resource from the relative path</title>
		<link>http://we4tech.wordpress.com/2008/04/18/create-new-url-protocol-to-load-spring-configuration-resource-from-the-relative-path/</link>
		<comments>http://we4tech.wordpress.com/2008/04/18/create-new-url-protocol-to-load-spring-configuration-resource-from-the-relative-path/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 18:17:42 +0000</pubDate>
		<dc:creator>nhm tanveer hossain khan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java ee]]></category>
		<category><![CDATA[spring framework]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://hasan.we4tech.com/create-new-url-protocol-to-load-spring-configuration-resource-from-the-relative-path/</guid>
		<description><![CDATA[i had a problem with spring framework, as you know while we are defining dependency over the xml documents, it becomes less changeable unless you know about my recent post about ext-util namespace handler and if you know any other alternatives. before digging inside the problem better i clarify my context - i have been &#8230; <a href="http://we4tech.wordpress.com/2008/04/18/create-new-url-protocol-to-load-spring-configuration-resource-from-the-relative-path/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=405&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>i had a problem with spring framework, as you know while we are defining dependency over the xml documents, it becomes less changeable unless you know about my recent post about <a href="http://hasan.we4tech.com/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/">ext-util namespace handler</a> and if you know any other alternatives.</p>
<p>before digging inside the problem better i clarify my context -</p>
<p>i have been working with one of my projects, where i have a several configurations which suppose to be different in different deployment environment, for example &#8211; to make my service avail, user has to define his database, his content index directory, server port, ip address and few more.</p>
<p>all these configurations were kept within the spring bean declaration scope. though few of them were moved to the properties file through <a href="http://hasan.we4tech.com/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/">ext-util namespace handler</a>.</p>
<p>previously to make those configuration changeable i kept those files under WEB-INF/classes so it overrides the default bundled resource.</p>
<p>but still it wasn&#8217;t user friendly, since my user has to change one xml document to add more index services also he has to edit different configurations from java properties file.</p>
<p>again when i started bundling jetty with my whole application i found it is tricker to keep those xml outside of application, since i don&#8217;t wanna make my user confused with lot of xml files. and i have to keep few xml out of  my classpath context, so spring has to load my configuration from my &#8220;config/index-configuration/&#8221; directory.</p>
<p>though by default spring can do it over &#8220;file:///absolute/path/to/file.xml&#8221; since spring is using java URL class to locate this resource.  but in my case i can&#8217;t put any aboslute path.<br />
so i found a simple way out there to support relative path reference.</p>
<p>previously i had the following xml document -</p>
<p><!-- import index services --></p>
<p><!-- available item index services --></p>
<p>now i have replaced them with the following change -</p>
<p><!-- import index services --><br />
<strong><br />
</strong></p>
<p><!-- available item index services --></p>
<p>if you observe closely you will find &#8220;extfile:///&#8221; protocol reference, which is not standard url protocol. so to make it work i used the following bunch of code and configuration -</p>
<p>1. i have created a class &#8220;Handler&#8221; under the &#8220;com.ideabase.repository.core.protocols.extfile&#8221; package.<br />
this package and class name is conventional, though you can change them lets sun <a href="http://java.sun.com/developer/onlineTraining/protocolhandlers/">explain about it.</a></p>
<p>2. i wrote the following code -</p>
<p>public class Handler extends URLStreamHandler {<br />
protected URLConnection openConnection(final URL pURL) throws IOException {<br />
final String path = pURL.getPath();<br />
final URL resourceUrl;<br />
if (path.startsWith(&#8220;/./&#8221;)) {<br />
resourceUrl = new File(path.substring(1, path.length())).toURL();<br />
} else {<br />
throw new RuntimeException(&#8220;Unsupported url schema. currently you can &#8221; +<br />
&#8220;use only extfile:///./path/to/somewhere/in&#8221;);<br />
}<br />
return resourceUrl.openConnection();<br />
}<br />
}<br />
3. i registered my protocol package through the system property -</p>
<p>System.setProperty(&#8220;java.protocol.handler.pkgs&#8221;, &#8220;com.ideabase.repository.core.protocols&#8221;);</p>
<p>now have a look on the main applicationContext.xml</p>
<p><strong><br />
</strong><br />
if you observe closely again you could find the difference, on the normal case i have used relative path reference. so it must be from classloader or if it is loaded through file system based resource locator it will be located from the file system.</p>
<p>but now i can use cross context (relative file system and class loader path reference) resource file path reference. you can see i have imported &#8220;indexer-beans.xml&#8221; from the application relative path &#8220;config/index-configuration/&#8230;&#8221; where &#8220;data-access-layer-beans.xml&#8221; is loaded from the class loader.<br />
now have a quick look on my configuration directory, to get an idea how i have improved configuration ability.<br />
<img class="alignleft size-medium wp-image-431" title="picture-1" src="http://we4tech.files.wordpress.com/2008/04/picture-1.png?w=300&#038;h=66" alt="picture-1" width="300" height="66" /></p>
<p>hope this will help you to solve similar problem.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/we4tech.wordpress.com/405/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/we4tech.wordpress.com/405/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/we4tech.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/we4tech.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/we4tech.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=405&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://we4tech.wordpress.com/2008/04/18/create-new-url-protocol-to-load-spring-configuration-resource-from-the-relative-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bb774de244da2d6e7f39a189b905077?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hasan</media:title>
		</media:content>

		<media:content url="http://we4tech.files.wordpress.com/2008/04/picture-1.png?w=300" medium="image">
			<media:title type="html">picture-1</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;ext-util:resource&#8221; new spring namespace for loading property from different scope i.e. system, test, dev</title>
		<link>http://we4tech.wordpress.com/2007/12/02/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/</link>
		<comments>http://we4tech.wordpress.com/2007/12/02/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 08:46:24 +0000</pubDate>
		<dc:creator>nhm tanveer hossain khan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java ee]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[spring framework]]></category>

		<guid isPermaLink="false">http://hasan.we4tech.com/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/</guid>
		<description><![CDATA[within spring container i was getting problem with managing multi level configuration. for example while i am developing i got a specific filesystem path, database configuration and so on. this configuration are mostly get changed while i an deploying them on the test or production environment. this type of scenario is common on most of &#8230; <a href="http://we4tech.wordpress.com/2007/12/02/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=389&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>within spring container i was getting problem with managing multi level configuration.<br />
for example while i am developing i got a specific filesystem path, database configuration and so on.<br />
this configuration are mostly get changed while i an deploying them on the test or production environment.</p>
<p>this type of scenario is common on most of the projects. managing different scoped configuration is one of the bothering stuff. so i was always thinking some simpler way with in spring container.</p>
<p>so i wrote &#8220;ext-util&#8221; namespace handler, which is locating property from multi scoped resource.<br />
lets give you a more details use case -</p>
<p>in my test environment i have a property &#8220;index.directory=/Users/&#8230;/index&#8221;<br />
in my test server i use &#8220;index.directory=/var/index&#8221;<br />
in my production server i use &#8220;index.directory=/nfs/index&#8221;</p>
<p>here i have a bean which need this property.</p>
<blockquote></blockquote>
<p>you can see the hardcoded configuration. which is not easy to manage.<br />
thats why here my &#8220;ext-util&#8221; goes with the simplest solution -</p>
<blockquote></blockquote>
<p>now my property resource is locating from &#8220;test&#8221; scope.</p>
<p>you might think, this &#8220;scope=&#8217;test&#8217;&#8221; is again hardcoded stuff, so i also support the following value -<br />
scope=&#8221;sys:env&#8221;, now you have to define &#8220;-Denv=test&#8221; while you running your application, and spring bean will find the right property.</p>
<p>so what ever you put over your spring are no longer hardcoded as long as you locate them through &#8220;ext-util&#8221; which is stands for &#8220;extended utility&#8221;.</p>
<p><a title="spring namespace ext-util for locating system or scoped properties" href="http://hasan.we4tech.com/files/spring-namespace-ext-util.zip">here is my attached source code &#8211; (i just extracted them from my on going project, thats why no build script or prebuilt package or maven artifact is bundled)</a></p>
<p><strong>how to use -</strong><br />
include the source file with in your project<br />
keep &#8220;META-INF&#8221; while you building your jar or keep them inside your classpath.<br />
change your spring configuration -</p>
<p>xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;<br />
xmlns:lang=&#8221;http://www.springframework.org/schema/lang&#8221;<br />
xmlns:aop=&#8221;http://www.springframework.org/schema/aop&#8221;<br />
<em><strong>xmlns:ext-util=&#8221;http://dev.somewherein.net/schema/ext-util&#8221;</strong></em><br />
xsi:schemaLocation=&#8221;http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd<br />
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd<br />
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd<br />
<strong><em>http://dev.somewherein.net/schema/ext-util http://dev.somewherein.net/resources/schemas/ext-util-0.1.xsd</em></strong>&#8220;/&gt;<br />
<strong>basic properties of ext-util -</strong></p>
<blockquote><p>1. <strong>from-property</strong> &#8211; which property you are looking for.</p>
<p>2. <strong>or-default</strong> &#8211; define default value if no property is found from default scope (system properties) this value is returned.</p>
<p>3. <strong>scope</strong> &#8211; define scope name, by default whatever you set except &#8220;sys:&#8221; prefixed string, will search for &#8220;classpath:&#8221;. also you can use &#8220;sys:abc&#8221; where abc is located from system properties.</p>
<p>4. <strong>path-prefix</strong> &#8211; you can define scope properties path prefix, this prefix can be &#8220;file:///, classpath:&#8221;. this value also can be prefixed by &#8220;sys:abc&#8221; where abc is located from system properties.</p></blockquote>
<p><a title="spring namespace ext-util for locating system or scoped properties" href="http://hasan.we4tech.com/files/spring-namespace-ext-util.zip">[download source code]</a><br />
<a href="http://hasan.we4tech.com/files/ext-util-01xsd.zip">[download missing xsd file]</a></p>
<p>best wishes,</p>
<p><!--fc37dc39b783d0125ea3aa50675127f9--></p>
<p><!--e9927b35c96f3a5d11179320bda2993b--></p>
<p><!--b0ea32c2559a8e05ab2f7fc04e0ff6b5--></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/we4tech.wordpress.com/389/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/we4tech.wordpress.com/389/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/we4tech.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/we4tech.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/we4tech.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=389&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://we4tech.wordpress.com/2007/12/02/ext-utilresource-new-spring-namespace-for-loading-property-from-different-scope-ie-system-test-dev/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bb774de244da2d6e7f39a189b905077?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hasan</media:title>
		</media:content>
	</item>
		<item>
		<title>Wow, new configuration option on Spring 2.0</title>
		<link>http://we4tech.wordpress.com/2006/12/08/wow-new-configuration-option-on-spring-20/</link>
		<comments>http://we4tech.wordpress.com/2006/12/08/wow-new-configuration-option-on-spring-20/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 19:52:51 +0000</pubDate>
		<dc:creator>nhm tanveer hossain khan</dc:creator>
				<category><![CDATA[Introduction]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[java ee]]></category>
		<category><![CDATA[spring framework]]></category>

		<guid isPermaLink="false">http://hasan.we4tech.com/wow-new-configuration-option-on-spring-20</guid>
		<description><![CDATA[hi today i found an interesting stuff.. Rod talked about new configuration option in spring (actually you can add as an addon) Define bean using Java code Wow!!!.. i was looking for this stuff for a long while&#8230; sometimes it is really meaningful to me&#8230; here is code example for rod blog: @Configuration public class &#8230; <a href="http://we4tech.wordpress.com/2006/12/08/wow-new-configuration-option-on-spring-20/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=231&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>hi today i found an interesting stuff..</p>
<p>Rod talked about new configuration option in spring (actually you can add as an addon) Define bean using Java code Wow!!!.. i was looking for this stuff for a long while&#8230; sometimes it is really meaningful to me&#8230;</p>
<p>here is code example for rod blog:</p>
<div class="codesnip-container">
<div class="codesnip">@Configuration<br />
<span class="kw2">public</span> <span class="kw2">class</span> MyConfig <span class="br0">{</span><br />
@Bean<br />
<span class="kw2">public</span> Person rod<span class="br0">(</span><span class="br0">)</span> <span class="br0">{</span><br />
<span class="kw2">return</span> <span class="kw2">new</span> Person<span class="br0">(</span><span class="st0">&#8220;Rod Johnson&#8221;</span><span class="br0">)</span>;<br />
<span class="br0">}</span>@Bean<span class="br0">(</span>scope = Scope.<span class="me1">PROTOTYPE</span><span class="br0">)</span><br />
<span class="kw2">public</span> <a href="http://www.google.com/search?q=allinurl%3ABook+java.sun.com&amp;bntl=1"><span class="kw3">Book</span></a> book<span class="br0">(</span><span class="br0">)</span> <span class="br0">{</span><br />
<a href="http://www.google.com/search?q=allinurl%3ABook+java.sun.com&amp;bntl=1"><span class="kw3">Book</span></a> book = <span class="kw2">new</span> <a href="http://www.google.com/search?q=allinurl%3ABook+java.sun.com&amp;bntl=1"><span class="kw3">Book</span></a><span class="br0">(</span><span class="st0">&#8220;Expert One-on-One J2EE Design and Development&#8221;</span><span class="br0">)</span>;<br />
book.<span class="me1">setAuthor</span><span class="br0">(</span>rod<span class="br0">(</span><span class="br0">)</span><span class="br0">)</span>;  <span class="co1">// rod() method is actually a bean reference !</span><br />
<span class="kw2">return</span> book;<br />
<span class="br0">}</span><br />
<span class="br0">}</span></div>
</div>
<div class="codesnip-container">anyway here is details<br />
<a href="http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/">http://blog.interface21.com/main/2006/11/28/a-java-configuration-option-for-spring/</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/we4tech.wordpress.com/231/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/we4tech.wordpress.com/231/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/we4tech.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/we4tech.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/we4tech.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=we4tech.wordpress.com&amp;blog=537526&amp;post=231&amp;subd=we4tech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://we4tech.wordpress.com/2006/12/08/wow-new-configuration-option-on-spring-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bb774de244da2d6e7f39a189b905077?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hasan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
