<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Waqas Noor</title>
	<atom:link href="http://noorws.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://noorws.wordpress.com</link>
	<description>-- Unbounded limits --</description>
	<lastBuildDate>Sat, 16 May 2009 10:32:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='noorws.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f3f4d0d8faa8f8f54cb564e081ad9681?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Waqas Noor</title>
		<link>http://noorws.wordpress.com</link>
	</image>
			<item>
		<title>Web Services Invocation Framework (WSIF) &#8212; How to use in Jdev</title>
		<link>http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/</link>
		<comments>http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/#comments</comments>
		<pubDate>Sat, 16 May 2009 10:32:35 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[BPEL]]></category>
		<category><![CDATA[Business Process]]></category>
		<category><![CDATA[Invocation]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Jdeveloper]]></category>
		<category><![CDATA[Web Service Invocation Framework]]></category>
		<category><![CDATA[WSIF]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=88</guid>
		<description><![CDATA[Sometime we need to execute java code within BPEL Process, One possibility is to write java code within BPEL Process by using  tag. WSIF is another way to do same thing. In this document, I will not compare these two ways to access the Java Code but the way to use the WSIF.
In this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=88&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sometime we need to execute java code within BPEL Process, One possibility is to write java code within BPEL Process by using  tag. <strong>WSIF </strong>is another way to do same thing. In this document, I will not compare these two ways to access the Java Code but the way to use the WSIF.</p>
<p>In this document we will do the following things:</p>
<p>•	Create the Java Classes, and exposed as J2EE Web Services (details are in later part of document).<br />
•	Invoke the Web Services (Java Class as Web Services) from BPEL Process.<br />
•	Place classes somewhere such that classes available at runtime</p>
<p><strong>Java Code as Web Service:</strong></p>
<p>Create java classes which you want to expose as Web Service. In my case, I have created two classes “Greeting.java” and “Person.java”. To create the web service, right click on class and click on “create J2EE Web Service”.</p>
<p>The new dialogue box open as shown in figure below, select the “SOAP 1.1 Binding” and “WSIF Binding”.<br />
<a rel="attachment wp-att-97" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-1/"><img class="aligncenter size-full wp-image-97" title="step 1" src="http://noorws.files.wordpress.com/2009/05/step-11.jpg?w=480&#038;h=274" alt="step 1" width="480" height="274" /></a></p>
<p>After selecting the options mentioned above, click “Weiter(Next)”, then new dialogue box opens, where you can select the type of Message Format as shown in figure below.<br />
<a rel="attachment wp-att-98" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-2/"><img class="aligncenter size-full wp-image-98" title="step 2" src="http://noorws.files.wordpress.com/2009/05/step-21.jpg?w=480&#038;h=283" alt="step 2" width="480" height="283" /></a><br />
After selecting the Message format type, click on “Weiter” and keep pressing next (All defaults options) until finish.</p>
<p><strong>BPEL Process:</strong></p>
<p>Create the empty BPEL Process as shown in figure.<br />
<a rel="attachment wp-att-99" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-3/"><img class="aligncenter size-full wp-image-99" title="step 3" src="http://noorws.files.wordpress.com/2009/05/step-31.jpg?w=480&#038;h=270" alt="step 3" width="480" height="270" /></a></p>
<p><strong>Create Partner Link</strong><br />
Create the partner link and give the reference of WSDL created from Java Code. Select the Role Type as shown in figure.<br />
<a rel="attachment wp-att-100" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-4/"><img class="aligncenter size-full wp-image-100" title="step 4" src="http://noorws.files.wordpress.com/2009/05/step-41.jpg?w=348&#038;h=289" alt="step 4" width="348" height="289" /></a><br />
While creating the Partner link, BPEL process ask for creating the local copy of WSDL, Click Yes (Ja) as shown in figure.<br />
<a rel="attachment wp-att-101" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-5/"><img class="aligncenter size-full wp-image-101" title="step 5" src="http://noorws.files.wordpress.com/2009/05/step-51.jpg?w=480&#038;h=89" alt="step 5" width="480" height="89" /></a><br />
After clicking on Yes (Ja), it will ask for Creating partner link as shown in figure. Click on Yes (Ja).<br />
<a rel="attachment wp-att-102" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-6/"><img class="aligncenter size-full wp-image-102" title="step 6" src="http://noorws.files.wordpress.com/2009/05/step-61.jpg?w=480&#038;h=89" alt="step 6" width="480" height="89" /></a><br />
Now you are ready with the Partner Link. The next step is to invoke the service</p>
<p><strong>Invoking WSIF</strong><br />
Select the Invoke component and then select the desired operation and input/output variables as shown in figure. In my case, “testInit” is operation.<br />
<a rel="attachment wp-att-103" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-7/"><img class="aligncenter size-full wp-image-103" title="step 7" src="http://noorws.files.wordpress.com/2009/05/step-71.jpg?w=414&#038;h=341" alt="step 7" width="414" height="341" /></a><br />
Now you are ready to use the WSIF, the final BPEL Process looks a like<br />
<a rel="attachment wp-att-104" href="http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/step-8/"><img class="aligncenter size-full wp-image-104" title="step 8" src="http://noorws.files.wordpress.com/2009/05/step-81.jpg?w=480&#038;h=336" alt="step 8" width="480" height="336" /></a></p>
<p><strong>Deployment of Java Classes:</strong><br />
Firstly we have to deploy the <em>BPEL Process</em> along with the WSDL which describes the Java class as web service. BPEL Process <em>requires classes</em> which are referenced by WSIF at runtime, so one way is to place the class files at ORACLE_HOME/bpel/system/classes directory.</p>
<p>Hope it helps&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=88&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2009/05/16/web-services-invocation-framework-wsif-how-to-use-in-jdev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-11.jpg" medium="image">
			<media:title type="html">step 1</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-21.jpg" medium="image">
			<media:title type="html">step 2</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-31.jpg" medium="image">
			<media:title type="html">step 3</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-41.jpg" medium="image">
			<media:title type="html">step 4</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-51.jpg" medium="image">
			<media:title type="html">step 5</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-61.jpg" medium="image">
			<media:title type="html">step 6</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-71.jpg" medium="image">
			<media:title type="html">step 7</media:title>
		</media:content>

		<media:content url="http://noorws.files.wordpress.com/2009/05/step-81.jpg" medium="image">
			<media:title type="html">step 8</media:title>
		</media:content>
	</item>
		<item>
		<title>Metadata Management Possiblities</title>
		<link>http://noorws.wordpress.com/2009/05/07/metadata-management-possiblities/</link>
		<comments>http://noorws.wordpress.com/2009/05/07/metadata-management-possiblities/#comments</comments>
		<pubDate>Thu, 07 May 2009 20:58:50 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Hierarichy]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[ontologies]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=73</guid>
		<description><![CDATA[From couple of days, Mostly I googled with the search keyword &#8220;metadata&#8221;. I was quite satisfy with the definition like metadata is &#8220;Data about Data&#8221;, &#8220;Documentation of metadata&#8221; but I was looking for the ways how one can manage in different scenarios. In short, I found 3 ways two manage it. Here are the techniques 
1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=73&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>From couple of days, Mostly I googled with the search keyword &#8220;metadata&#8221;. I was quite satisfy with the definition like metadata is &#8220;Data about Data&#8221;, &#8220;Documentation of metadata&#8221; but I was looking for the ways how one can manage in different scenarios. In short, I found 3 ways two manage it. Here are the techniques </p>
<p><strong>1. Management of metadata as Tags</strong><strong></strong></p>
<p>Initially people thought that uncontrolled vocabulary will leads into disaster in the system. Along with the Web 2.0, people found it in totally in reverse way. There are lots of social systems which are using the same concepts and successful as well. I thought it is due to following factors.</p>
<ul>
<li>Tags      are really cheap.</li>
<li>Different      people have different vocabulary for the same words. The words which are      more common have more chance in search output.</li>
<li>Tags      are initially not follow any pattern but later people will be focus on      some of the tags.</li>
<li>There      are strategies where we can build network of these tags.</li>
</ul>
<p>Facebook is one the example which use Tags at images which helps user to navigate through the network.</p>
<p> <strong>2. Metadata as Ontologies</strong></p>
<p>I am not expert in building ontologies but after reading some papers; it is possible to build  ontologies on metadata. Building ontologies of metadata is helpful in the following way</p>
<ul>
<li>Semantics      of metadata</li>
<li>Existing      tools which can search metadata by some semantics.</li>
<li>Sharing      of Ontologies (Really helps between different departments, different      research groups)</li>
</ul>
<p>The other side of Face on Ontologies is that it’s hard to build as compare to Tags.</p>
<p><strong>3. Taxonomy/ Hierarical metadata</strong><strong></strong></p>
<p>I believe, this strategy also works in maintaining the metadata, if hierarchies are predefined and has rare chance to update in breadth dimension.</p>
<p>Basically, it is following the rules of some Schema (Hierarchy) but still it is easy to create (If hierarchies are predefined).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=73&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2009/05/07/metadata-management-possiblities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Handmade things for decoration</title>
		<link>http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/</link>
		<comments>http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/#comments</comments>
		<pubDate>Sun, 03 May 2009 18:06:10 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[My ideal Home]]></category>
		<category><![CDATA[art work]]></category>
		<category><![CDATA[buy]]></category>
		<category><![CDATA[gift]]></category>
		<category><![CDATA[handmade things]]></category>
		<category><![CDATA[Home decoration items]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=20</guid>
		<description><![CDATA[Hi,
Being a art lover and during my visit to home, i came across  such a beautiful handmade items that i can not imagine. I bought some pieces for home and i hope you also like it.  Here are some picture of pieces which i liked  most.
Note: If you are interested to buy any of these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=20&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>Being a art lover and during my visit to home, i came across  such a beautiful handmade items that i can not imagine. I bought some pieces for home and i hope you also like it.  Here are some picture of pieces which i liked  most.</p>
<p><strong>Note: </strong>If you are interested to buy any of these items at reasonable price, let me know.  I will guide you rest of the things. These are no doubt worthless things.</p>
<p> </p>

<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image107/' title='Tablestand Decoration'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image107.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Tablestand Decoration" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image106/' title='Closer look - Look at flower petals'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image106.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Closer look - Look at flower petals" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0511/' title='Glass work'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0511.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Glass work" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0521/' title='Bottom of the glass'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0521.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Bottom of the glass" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image100/' title='A Glass converted into rememberable gift'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image100.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="A Glass converted into rememberable gift" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image098/' title='No words '><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image098.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="No words" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0991/' title='Decoration - Glass - tablestand'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0991.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Decoration - Glass - tablestand" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image097/' title='Botle art work'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image097.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Botle art work" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0571/' title='Candle stand'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0571.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Candle stand" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image096/' title='A ordinary turns to special'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image096.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="A ordinary turns to special" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0931/' title='Guldan - Place your favourite flowers'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0931.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Guldan - Place your favourite flowers" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image105/' title='Candle glass, Black and White decoration'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image105.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Candle glass, Black and White decoration" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0871/' title='Handmade ladies bag. '><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0871.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Handmade ladies bag." /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0861/' title='Crystal work - close look'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0861.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Crystal work - close look" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0601/' title='Crystal work'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0601.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Crystal work" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0591/' title='Mirror - '><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0591.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Mirror -" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0581/' title='A special mirror'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0581.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="A special mirror" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0531/' title='flowers along with stand'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0531.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="flowers along with stand" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0541/' title='flowers'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0541.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="flowers" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0551/' title='Flowers for your loved ones'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0551.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Flowers for your loved ones" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0561/' title='Decorations'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0561.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Decorations" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0841/' title='Wall Decoration'><img width="150" height="112" src="http://noorws.files.wordpress.com/2009/05/image0841.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="" title="Wall Decoration" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image0851/' title='Master piece'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image0851.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Master piece" /></a>
<a href='http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/image094/' title='Wall Decoration'><img width="112" height="150" src="http://noorws.files.wordpress.com/2009/05/image094.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="" title="Wall Decoration" /></a>

  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=20&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2009/05/03/handmade-things-for-your-home-decoration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Birthday! dude</title>
		<link>http://noorws.wordpress.com/2009/02/14/happy-birthday-dude/</link>
		<comments>http://noorws.wordpress.com/2009/02/14/happy-birthday-dude/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:12:44 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=17</guid>
		<description><![CDATA[Today, my Blog has first birthday. I remembered correctly that last year i was free and i came up the idea to have a small blog.
I did, what i thought and today is the reality. Its a year now.
This is link for my first blog ever.
http://noorws.wordpress.com/2008/02/14/hello-world/
Things are dramatically changed from last year. Now we are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=17&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today, my Blog has first birthday. I remembered correctly that last year i was free and i came up the idea to have a small blog.</p>
<p>I did, what i thought and today is the reality. Its a year now.</p>
<p>This is link for my first blog ever.</p>
<p><a href="http://noorws.wordpress.com/2008/02/14/hello-world/">http://noorws.wordpress.com/2008/02/14/hello-world/</a></p>
<p>Things are dramatically changed from last year. Now we are passing through the economic crisis.  Sometime i have seen people hopeless and sometime vice versa.</p>
<p>but</p>
<p>I will say only 1 thing.</p>
<p>&#8220;This world is <em><strong>not end of World</strong></em>&#8221; and seasons change!</p>
<p>Message for peace.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=17&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2009/02/14/happy-birthday-dude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with Rules &#8211; Drools</title>
		<link>http://noorws.wordpress.com/2008/09/12/working-with-rules-drools/</link>
		<comments>http://noorws.wordpress.com/2008/09/12/working-with-rules-drools/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 17:29:15 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[Drools]]></category>
		<category><![CDATA[Rule]]></category>
		<category><![CDATA[rules engine]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=15</guid>
		<description><![CDATA[Drools, formally called JBoss Rule(http://www.jboss.org/drools/). Its a best Rule Engine in open source community. So what  it is about.
Very simple
1. You have rules like if then (.drl file)
2. You have Java Object
3. Submit java object to rule engine
For example
Employee emp = new Employee(1, &#8216;Waqas Noor&#8217;)
ruleengine.submit(emp) ;
ruleengine is like
rule
     when 
            emp [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=15&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Drools, formally called JBoss Rule(<a href="http://www.jboss.org/drools/">http://www.jboss.org/drools/</a>). Its a best Rule Engine in open source community. So what  it is about.</p>
<p>Very simple</p>
<p>1. You have rules like if then (.drl file)<br />
2. You have Java Object<br />
3. Submit java object to rule engine</p>
<p>For example</p>
<p>Employee emp = new Employee(1, &#8216;Waqas Noor&#8217;)<br />
ruleengine.submit(emp) ;</p>
<p>ruleengine is like</p>
<p>rule<br />
     when <br />
            emp : Employee (name=&#8217;Waqas Noor&#8217;) <br />
    Then<br />
            System.out.println(&#8220;Its so simple&#8221;)<br />
end</p>
<p>The .drl translated into like</p>
<p>&#8212;&#8211; Code &#8212;-<br />
if(emp.getName().equals(&#8220;Waqas Noor&#8221;))<br />
        System.out.println(&#8220;Its so simple&#8221;); </p>
<p> its just a start; there is much to do; its really a fun to work with drools, visit for more detail (<a href="http://www.jboss.org/drools/">http://www.jboss.org/drools/</a>)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=15&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/09/12/working-with-rules-drools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Wicket! A new web framework</title>
		<link>http://noorws.wordpress.com/2008/05/11/wicket-a-new-web-framework/</link>
		<comments>http://noorws.wordpress.com/2008/05/11/wicket-a-new-web-framework/#comments</comments>
		<pubDate>Sun, 11 May 2008 10:47:32 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[J2EE - Frameworks]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Presentation layer]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wicket]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=14</guid>
		<description><![CDATA[Perhaps its too early to say about Wicket web Framework but one thing is sure that Wicket contributes towards J2EE community.
Wicket is new Object Oriented web Framework, provides seperation of Presentation layer with Busniess layer. Wicket basically wrap the HTML Tags and provides full control in your Java Code.
The nice thing about Wicket is, there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=14&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Perhaps its too early to say about Wicket web Framework but one thing is sure that Wicket contributes towards J2EE community.</p>
<p>Wicket is new Object Oriented web Framework, provides seperation of Presentation layer with Busniess layer. Wicket basically wrap the HTML Tags and provides full control in your Java Code.</p>
<p>The nice thing about Wicket is, there is no rocket science in it and provides the platform for Rapid Application Development.</p>
<p>In short;</p>
<p><strong>Your Application = WICKET HTML TAGS + Pure Java Code (No XML Files, etc)</strong></p>
<p>For starting point, have a look at</p>
<p><a href="http://www.netbeans.org/kb/55/quickstart-wicket-in-netbeans.html">http://www.netbeans.org/kb/55/quickstart-wicket-in-netbeans.html</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=14&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/05/11/wicket-a-new-web-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Presentation layer JSF ?</title>
		<link>http://noorws.wordpress.com/2008/05/05/presentation-layer-jsf/</link>
		<comments>http://noorws.wordpress.com/2008/05/05/presentation-layer-jsf/#comments</comments>
		<pubDate>Mon, 05 May 2008 11:03:57 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[J2EE - Frameworks]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[JBoss Seam]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[Presentation layer]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=13</guid>
		<description><![CDATA[Hi,
Starting project with right technologies is really big investment.  If you are intended to use JSF as your presentation layer then must have a look at JBoss Seams.
In short,

No managed bean handling.
Lots of other features for JSF.
Ajax for JSF
Entity beans as Managed Beans and Domain Model Classes.
No XML configuration for settings, Annotation based.

If you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=13&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>Starting project with right technologies is really big investment.  If you are intended to use JSF as your presentation layer then must have a look at JBoss Seams.</p>
<p>In short,</p>
<ol>
<li>No managed bean handling.</li>
<li>Lots of other features for JSF.</li>
<li>Ajax for JSF</li>
<li>Entity beans as Managed Beans and Domain Model Classes.</li>
<li>No XML configuration for settings, Annotation based.</li>
</ol>
<p>If you have some more points to share; don&#8217;t hesitate to write comments.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=13&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/05/05/presentation-layer-jsf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>Messenger Nicks &#8211; PhD Topics</title>
		<link>http://noorws.wordpress.com/2008/04/27/messenger-nicks-phd-topics/</link>
		<comments>http://noorws.wordpress.com/2008/04/27/messenger-nicks-phd-topics/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 12:42:08 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=12</guid>
		<description><![CDATA[Hi,
I have an idea to list my all nicks here; which can your PhD research topic.
Here goes &#8230;

Only Change is Constant.
Knowledge is Power and Power is Money.
A Life is true sense of Death.
A DAY will come soon!
With faith, discipline and selfless devotion to duty, there is nothing worthwhile that you cannot achieve.

    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=12&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>I have an idea to list my all nicks here; which can your PhD research topic.</p>
<p>Here goes &#8230;</p>
<ul>
<li><strong>Only Change is Constant.</strong></li>
<li><strong>Knowledge is Power and Power is Money.</strong></li>
<li><strong>A Life is true sense of Death</strong>.</li>
<li><strong>A <span style="color:#ff00ff;"><em>DAY </em></span>will come soon!</strong></li>
<li><strong><span style="font-family:arial,verdana;font-size:x-small;">With <em><span style="color:#ff00ff;">faith</span>, <span style="color:#ff00ff;">discipline </span></em>and<em> <span style="color:#ff00ff;">selfless devotion to duty</span></em>, there is nothing worthwhile that you cannot achieve.</span></strong></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=12&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/04/27/messenger-nicks-phd-topics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>so you want to Play with Spring &#8212; J2EE Framework</title>
		<link>http://noorws.wordpress.com/2008/04/21/so-you-want-to-play-with-spring-j2ee-framework/</link>
		<comments>http://noorws.wordpress.com/2008/04/21/so-you-want-to-play-with-spring-j2ee-framework/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 09:23:59 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[J2EE - Frameworks]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=11</guid>
		<description><![CDATA[Hi,
If you are intended to work with Spring Framework then have a look at this site.
http://www.javapassion.com/j2ee/index.html#Spring_Framework
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=11&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>If you are intended to work with Spring Framework then have a look at this site.</p>
<p>http://www.javapassion.com/j2ee/index.html#Spring_Framework</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=11&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/04/21/so-you-want-to-play-with-spring-j2ee-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
		<item>
		<title>BPEL &#8211; Business Process Execution Language</title>
		<link>http://noorws.wordpress.com/2008/02/17/bpel-business-process-execution-language/</link>
		<comments>http://noorws.wordpress.com/2008/02/17/bpel-business-process-execution-language/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 17:19:02 +0000</pubDate>
		<dc:creator>Waqas Noor</dc:creator>
				<category><![CDATA[XML Family]]></category>

		<guid isPermaLink="false">http://noorws.wordpress.com/?p=10</guid>
		<description><![CDATA[Business Process Execution Language (BPEL) is is a language for specifying business process behavior based on Web Services.
For beginners; look at http://en.wikipedia.org/wiki/BPEL.
Oracle Link; http://www.oracle.com/technology/products/ias/bpel/index.html
For me, BPEL is grand child of XML, which have capabilities of XML, XSLT, XPATH, WSDL, SOAP and may more things. So before getting into BPEL you should have at least basic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=10&subd=noorws&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Business Process Execution Language (BPEL) is is a language for specifying business process behavior based on Web Services.</p>
<p>For beginners; look at http://en.wikipedia.org/wiki/BPEL.</p>
<p>Oracle Link; http://www.oracle.com/technology/products/ias/bpel/index.html</p>
<p>For me, BPEL is grand child of XML, which have capabilities of XML, XSLT, XPATH, WSDL, SOAP and may more things. So before getting into BPEL you should have at least basic working knowledge of these technologies.</p>
<p>Approaching to BPEL  (Learning Curve)</p>
<p>XML, XPath, XSLT, WSDL, SOAP.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noorws.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noorws.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noorws.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noorws.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noorws.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noorws.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noorws.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noorws.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noorws.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noorws.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noorws.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noorws.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noorws.wordpress.com&blog=2871834&post=10&subd=noorws&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noorws.wordpress.com/2008/02/17/bpel-business-process-execution-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca0397a75244f126057b9f76d5336205?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noorws</media:title>
		</media:content>
	</item>
	</channel>
</rss>