<?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>Be Thorough With Technology - The only way</title>
	<atom:link href="http://bethorough.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bethorough.wordpress.com</link>
	<description>Welcome to the world of SOA</description>
	<lastBuildDate>Mon, 14 Sep 2009 18:19:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bethorough.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Be Thorough With Technology - The only way</title>
		<link>http://bethorough.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bethorough.wordpress.com/osd.xml" title="Be Thorough With Technology - The only way" />
	<atom:link rel='hub' href='http://bethorough.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Apache Tomcat 5.x : Determining Server side response times</title>
		<link>http://bethorough.wordpress.com/2009/06/17/apache-tomcat-5-x-determining-server-side-response-times/</link>
		<comments>http://bethorough.wordpress.com/2009/06/17/apache-tomcat-5-x-determining-server-side-response-times/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 11:03:44 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[Performance Modeling]]></category>
		<category><![CDATA[Web services]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=59</guid>
		<description><![CDATA[This article explains the method of finding the server side response times for Apache Tomcat 5.x. The idea is to modify the server.xml configuration file located in the &#8220;conf&#8221; folder. Adding the required parameters to the server.xml file forces Tomcat to spit out data in the log files. The values are not debatable since we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=59&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This article explains the method of finding the server side response times for Apache Tomcat 5.x. The idea is to modify the <strong>server.xml</strong> configuration file located in the &#8220;conf&#8221; folder. Adding the required parameters to the server.xml file forces Tomcat to spit out data in the log files. The values are not debatable since we query the Tomcat server logs.</p>
<p>There is a list of parameters that can be queried, however this article only considers response time at the server side. We will be able to determine which servlet acts as a bottleneck at run-time by analyzing the server side response times.</p>
<p>The AccessLogValve component in Catalina creates the server logs. This creates a log file containing timestamps, performance metrics and other related information. The configuration can be changed according to the users requirements. Lets take a look at a part of the server.xml file.</p>
<p>An important aspect here is to know that the AccessLogValve node in the xml file is &#8220;commented&#8221; by default. It needs to be &#8220;un-commented&#8221; so that the log file is created in the logs folder.</p>
<p>Here is a snapshot of a part of the server.xml showing the AccessLogValve node. The default configuration shows pattern= &#8220;common&#8221;. The common pattern corresponds to &#8220;%h %l %u %t &#8220;%r&#8221; %s %b&#8221;, where</p>
<p>%h &#8211; Remote host name (or IP address if resolveHosts is false)<br />
%l &#8211; Remote logical username from identd (always returns &#8216;-&#8217;)<br />
%u &#8211; Remote user that was authenticated (if any), else &#8216;-&#8217;<br />
%t &#8211; Date and time, in Common Log Format<br />
%r &#8211; First line of the request (method and request URI)<br />
%s &#8211; HTTP status code of the response<br />
%b &#8211; Bytes sent, excluding HTTP headers, or &#8216;-&#8217; if zero</p>
<p><a href="../files/2009/06/tomcat_accesslogvalue_common.jpg"><a href="http://bethorough.files.wordpress.com/2009/06/tomcat_accesslogvalue_common1.jpg"><img class="alignnone size-full wp-image-69" title="tomcat_accesslogvalue_common" src="http://bethorough.files.wordpress.com/2009/06/tomcat_accesslogvalue_common1.jpg?w=460&h=109" alt="tomcat_accesslogvalue_common" width="460" height="109" /></a><br />
</a></p>
<p>We shall also consider the response times at the server side, which is represented by &#8221; %D &#8220;. We need to modify the server.xml accordingly.</p>
<p><a href="http://bethorough.files.wordpress.com/2009/06/tomcat_accessvalvelog_responsetime.jpg"><img class="alignnone size-full wp-image-60" title="tomcat_accessvalvelog_responsetime" src="http://bethorough.files.wordpress.com/2009/06/tomcat_accessvalvelog_responsetime.jpg?w=460&h=109" alt="tomcat_accessvalvelog_responsetime" width="460" height="109" /></a></p>
<p><a href="http://bethorough.files.wordpress.com/2009/06/serverlogs_responsetime.jpg"><img class="alignnone size-full wp-image-62" title="serverlogs_responsetime" src="http://bethorough.files.wordpress.com/2009/06/serverlogs_responsetime.jpg?w=460&h=199" alt="serverlogs_responsetime" width="460" height="199" /></a></p>
<p>It is interesting to note that some request show a value of  &#8221; 0 &#8221; . This may be because of the fact that the response time for that particular request is in the order of micro seconds. This can help developers understand potential bottlenecks in the system.</p>
<p>References :</p>
<p>- http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=59&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2009/06/17/apache-tomcat-5-x-determining-server-side-response-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>

		<media:content url="http://bethorough.files.wordpress.com/2009/06/tomcat_accesslogvalue_common1.jpg" medium="image">
			<media:title type="html">tomcat_accesslogvalue_common</media:title>
		</media:content>

		<media:content url="http://bethorough.files.wordpress.com/2009/06/tomcat_accessvalvelog_responsetime.jpg" medium="image">
			<media:title type="html">tomcat_accessvalvelog_responsetime</media:title>
		</media:content>

		<media:content url="http://bethorough.files.wordpress.com/2009/06/serverlogs_responsetime.jpg" medium="image">
			<media:title type="html">serverlogs_responsetime</media:title>
		</media:content>
	</item>
		<item>
		<title>PerfCenter Tutorial : Predicting Response Times of a simple HelloWorld Web Service for increasing loads</title>
		<link>http://bethorough.wordpress.com/2009/04/30/perfcenter-tutorial-predicting-response-times-of-a-simple-helloworld-web-service-for-increasing-loads/</link>
		<comments>http://bethorough.wordpress.com/2009/04/30/perfcenter-tutorial-predicting-response-times-of-a-simple-helloworld-web-service-for-increasing-loads/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 09:02:29 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[Performance Modeling]]></category>
		<category><![CDATA[Queuing Theory]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=48</guid>
		<description><![CDATA[Using PerfCenter to predict response times of a simple HelloWorld web service. This tutorial guides you through a series of simple steps, from Installation to hands on Performance modeling. 1. Installing PerfCenter - Goto http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page and download the zipped version of PerfCenter - Unzip the folder to a location on your linux drive. Typically the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=48&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using PerfCenter to predict response times of a simple HelloWorld web service.</p>
<p>This tutorial guides you through a series of simple steps, from Installation to hands on Performance modeling.</p>
<p>1. Installing PerfCenter</p>
<p>- Goto <a href="http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page">http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page</a> and download the zipped version of PerfCenter</p>
<p>- Unzip the folder to a location on your linux drive. Typically the current version of PerfCenter works on a       linux box.</p>
<p>- Execute &#8220;ant compile&#8221; by navigating to the PerfCenter folder path. This will compile source files</p>
<p>$&gt;cd PerfCenter<br />
$PerfCenter&gt;ant compile</p>
<p>- Execute ./Perfcenter input/expt1a, will execute the input file &#8220;expt1a&#8221; which is configured to a test scenario.</p>
<p>$PerfCenter&gt;./PerfCenter input/expt1a</p>
<p>2. PerfCenter is a command line tool which enables Predictive Modeling and analysis of Distributed Systems and Application Hosting Centers. Performance of systems can be predicted by modeling different scenarios via input configuration files. PerfCenter input files follow a typical syntax of their own. Please refer the user manual for more details &#8220;<a href="http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page">http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page</a>&#8220;.</p>
<p>3.  To predict the response times of a simple HelloWorld Web Service at different loads  the input configuration file for PerfCenter should look something like this <a href="http://bethorough.files.wordpress.com/2009/04/input_file_1.doc">input_file_1</a> . Essentially the input file requires mandatory parameters like<br />
a. CPU characteristics<br />
b. Service time<br />
c. Web Server characteristics<br />
d. Load ( no. of users )</p>
<p>Once you have all the above parameters in place, PerfCenter will be able to generate predictive response times by &#8220;analytical&#8221; and &#8220;simulation&#8221; methods.</p>
<p>PerfCenter is based on the Layered Queuing Network model, where in you can model LQN&#8217;s  for performance prediction. The following figure describes the scenario corresponding to the input file &#8220;input_file_1.doc&#8221;.</p>
<p><img class="aligncenter size-full wp-image-49" title="LQN" src="http://bethorough.files.wordpress.com/2009/04/queuing_model.jpg?w=460&h=339" alt="LQN" width="460" height="339" /></p>
<p>The diagram illustrates a <strong><em>Layered Queuing Network</em></strong> with a Software layer ( web server ) and a Hardware layer ( CPU ). Modeling contention for Software Servers and Hardware can be done using the concepts of LQN. The above scenario illustrates a Web Server configured to &#8220;n&#8221; threads. The rectangle to the left of the server represents a <em>queuing space for threads</em> in which incoming client requests are queued up. The incoming requests can be handled by threads if available, else they have to wait in the queue for threads. This is called <em>Contention for Software </em>( access to a lock, thread etc ).</p>
<p>The Web Server on this machine has only 1 CPU, so all threads configured in the web server will be contending for that CPU. The rectangle to the left of the CPU layer ( hardware layer ) represents a queue for CPU. Threads waiting to access a hardware resource is called <em>Contention for Hardware</em>.</p>
<p><strong>References</strong> :</p>
<p><a href="http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page">http://www.cse.iitb.ac.in/perfnet/softperf/cape/home/wosp2008page<br />
</a><br />
Scaling for E-Business ( Daniel Menasce, Almeida )</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=48&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2009/04/30/perfcenter-tutorial-predicting-response-times-of-a-simple-helloworld-web-service-for-increasing-loads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>

		<media:content url="http://bethorough.files.wordpress.com/2009/04/queuing_model.jpg" medium="image">
			<media:title type="html">LQN</media:title>
		</media:content>
	</item>
		<item>
		<title>TIBCO BusinessWorks : SAX Parser Exception in generating WSDL file</title>
		<link>http://bethorough.wordpress.com/2008/11/10/tibco-businessworks-sax-parser-exception-in-generating-wsdl-file/</link>
		<comments>http://bethorough.wordpress.com/2008/11/10/tibco-businessworks-sax-parser-exception-in-generating-wsdl-file/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 09:23:13 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[WSDL]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=34</guid>
		<description><![CDATA[This error commonly occurs while trying to &#8220;generate a WSDL from process &#8221; in TIBCO BusinessWorks. On specifying the parameters for generating the WSDL and then on clicking &#8220;Generate &#8221; the designer shows no activity, i.e. the dialog disappears without the generation of the WSDL file. If you view logs in &#8220;Show Console &#8221; , [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=34&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This error commonly occurs while trying to &#8220;generate a WSDL from process &#8221; in TIBCO BusinessWorks.<br />
On specifying the parameters for generating the WSDL and then on clicking &#8220;Generate &#8221; the designer shows no activity, i.e. the dialog disappears without the generation of the WSDL file. </p>
<p>If you view logs in &#8220;Show Console &#8221; , you might come across &#8221; SAX Parser Exception in generating WSDL&#8221;.<br />
It would be very difficult to pinpoint the exact reason of failure. It could be the palettes , runtime exceptions , environment specific details.</p>
<p>Remedy : Re-install TIBCO BusinessWorks <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=34&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2008/11/10/tibco-businessworks-sax-parser-exception-in-generating-wsdl-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Service Oriented Computing : Publish , Find , Bind</title>
		<link>http://bethorough.wordpress.com/2008/11/03/service-oriented-computing-publish-find-bind/</link>
		<comments>http://bethorough.wordpress.com/2008/11/03/service-oriented-computing-publish-find-bind/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 05:40:35 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[SOA]]></category>
		<category><![CDATA[Service Orientation]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=22</guid>
		<description><![CDATA[SOA is not only about services but involves the interaction of the following three entities: Service requester (client), service provider (server) and the Service registry. SOA is applicable when applications run on heterogeneous technologies, platforms involving silos of information coming from disparate sources. Such applications need to communicate to each other using standard based protocols [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=22&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:10pt;line-height:115%;font-family:&quot;">SOA is not only about services but involves the interaction of the following three entities: Service requester (client), service provider (server) and the Service registry.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">SOA is applicable when applications run on heterogeneous technologies, platforms involving silos of information coming from disparate sources. Such applications need to communicate to each other using standard based protocols which can be implemented using the SOA concept.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;"><a href="http://bethorough.files.wordpress.com/2008/11/soc1.jpg"><img class="alignnone size-full wp-image-18" title="soc1" src="http://bethorough.files.wordpress.com/2008/11/soc1.jpg?w=460&h=279" alt="" width="460" height="279" /></a></span></p>
<p class="MsoNormal" style="text-align:justify;"> </p>
<p class="MsoNormal" style="text-align:justify;"> </p>
<p class="MsoNormal" style="text-align:justify;"> </p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">The above figure [1] shows the collaboration between the entities. It involves the operations such as<strong> publish</strong><em>,</em><strong> find </strong><em>and </em><strong>bind</strong> which act on the service artifacts: service description and service implementation.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">In a simple Service oriented scenario, an Application Service Provider (ASP) hosts an application across a network. ASP is a third party entity deploying, hosting and managing the access to the application and delivering software based services to clients across a distributed environment. The service provider defines or describes the service i.e. the functionality and publishes the service to the service discoverable agency or client via which the service is exposed. The discovery agency is the registry or repository like UDDI, which uses the service description to bind to the service provider and invoke the requested service. The service requestor (client) uses a find operation to retrieve the service description from the registry.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">A service is a business/technical function implemented in software, which is wrapped with a formal documented interface that is well known and known[1] where to be found not only by the agents who designed the service but also by agents who want to access the service.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">The formal interface is the mechanism via which a service communicates with an application and other services. Technically speaking the interface describes a set of operations that are available to the service client for use.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">Each service is treated as a loosely coupled component, essentially like a Black Box. The essence of SOA lies in the concept of simplicity and reusability of components, thereby enabling a “just perform one function” scenario solely dedicating a service to perform its function.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">SOA’s use and reuse of components makes it easier to build new applications as well as restructuring existing applications.</span></p>
<p class="MsoNormal" style="text-align:justify;"><strong><span style="font-size:10pt;line-height:115%;font-family:&quot;">References</span></strong></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">[1] </span><span style="font-size:10pt;line-height:115%;font-family:&quot;">Service Oriented Analysis and Design, <a href="http://www.redbooks.ibm.com/abstracts/sg246303.html"><span style="color:windowtext;text-decoration:none;">http://www.redbooks.ibm.com/abstracts/sg246303.html</span></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=22&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2008/11/03/service-oriented-computing-publish-find-bind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>

		<media:content url="http://bethorough.files.wordpress.com/2008/11/soc1.jpg" medium="image">
			<media:title type="html">soc1</media:title>
		</media:content>
	</item>
		<item>
		<title>The Birth of SOA</title>
		<link>http://bethorough.wordpress.com/2008/11/03/the-birth-of-soa/</link>
		<comments>http://bethorough.wordpress.com/2008/11/03/the-birth-of-soa/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 04:32:14 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=8</guid>
		<description><![CDATA[In the early days businesses were small involving small and compact architectures which were using vendor and enterprise specific standards. But over decades the need of the enterprises started growing and businesses had to cope up with their competitors. As enterprises started expanding, system architectures became complicated as well involving ever changing components and layers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=8&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">In the early days businesses were small involving small and compact architectures which were using vendor and enterprise specific standards.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">But over decades the need of the enterprises started growing and businesses had to cope up with their competitors. As enterprises started expanding, system architectures became complicated as well involving ever changing components and layers demanding to the business.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">Early “solutions” resulted in combinations of platform, vendor and enterprise-specific standards that remained largely proprietary to the implementing enterprise. Enforcement of these attempted standardizations within an enterprise and across lines of business and geographies led to creation of shared services organizations whose effectiveness depended on diligent management oversight.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">Ultimately, such solutions for enterprise standards and enforcement by one or more shared services organizations failed to keep pace with constantly [2] evolving business requirements. Moreover, the largely proprietary standards locked an enterprise&#8217;s allegiance to specific computing platforms and supporting vendors.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">Subsequently, use of the Internet as a viable means to interact with customers and vendors led to devising front-end Web interfaces to access enterprise data for e-commerce.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">XML (Extensible Markup Language) soon entered the scenario with the different schema formats which were used to represent different formats of data. Enterprises identified the capability of XML for exchanging data in the enterprise computing models.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">SOAP (simple object access protocol) the key figure in exchanging the data over distributed nodes wrapped XML data and drove it over the ubiquitous HTTP.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">This was the most compelling aspect of SOAP and by that time most of the enterprises had accepted the viability of these standard mechanisms and IT concerns began to be addressed.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">The concept of SOA was born and a hope for business being supported by technology evolved.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">The IT industry trended to solving enterprise’s computing information exchange problems involving employees, customers, suppliers and partners-with technologies that aligned with overarching standards tolerant of dynamic business requirements.</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:10pt;line-height:115%;font-family:&quot;">It was the business which led to the concept of SOA , because with so many different systems and technologies, enterprises could not keep a single holistic view or track of the customers. As systems could not talk to each other, enterprises lost time in processing the customers whereby losing them , so it was very business driven.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=8&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2008/11/03/the-birth-of-soa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Started with SOA : The concept of a Service</title>
		<link>http://bethorough.wordpress.com/2008/03/07/getting-started-with-soa-the-concept-of-a-service/</link>
		<comments>http://bethorough.wordpress.com/2008/03/07/getting-started-with-soa-the-concept-of-a-service/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 16:32:29 +0000</pubDate>
		<dc:creator>Aditya Thatte</dc:creator>
				<category><![CDATA[SOA]]></category>
		<category><![CDATA[Computer science]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://bethorough.wordpress.com/?p=4</guid>
		<description><![CDATA[This blog is dedicated to the concept of Service Oriented Architecture ( SOA) and Complex Event Processing (CEP). Before introducing SOA , I would like to dig deep into the basic concept of a &#8220;Service&#8221;. A service may be defined as an entity which processes input and gives an expected output. It can also be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=4&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog is dedicated to the concept of Service Oriented Architecture ( SOA) and Complex Event Processing (CEP). Before introducing SOA , I would like to dig deep into the basic concept of a &#8220;Service&#8221;.</p>
<p>A service may be defined as an entity which processes input and gives an expected output. It can also be defined as a logical component used to perform a business or technical function.</p>
<p>There are different kinds of services that we use in our day to day life viz. electrical service , telephone service , water service. Some are free while some are not.</p>
<p>We shall consider a day to day scenario of a service as an example, consider yourself going to a Restaurant. You enter the restaurant , sit at the table , check the menu , place an order to the waiter , wait till the food is served , eat the food , pay the bill. This is a normal procedure that is followed. We pass a set of instructions and information to the waiter ( instruction- how you want your meal to be cooked , information &#8211; what preparation you would like ) , and the restaurant magically provides you with your meal. The meal is the service that you pay for.</p>
<p>So here are a couple of things that you can relate with the meal service.</p>
<p>1. The quality of the food</p>
<p>2. Time required to serve the food</p>
<p>We can consider the restaurant to be componentized and how the components interact. The restaurant can be assumed to be made up of an &#8221; order processing&#8221; , &#8221; meal processing&#8221; and the &#8220;delivery&#8221; modules.</p>
<p>An important aspect in this scenario is that , the user is not bothered of how the food is made and how the components interact internally. All he is in interested is in how the food tastes and the quality of service. Thus, the business service is the &#8220;logical encapsulation of business function&#8221;.</p>
<p>In a Service Oriented Architecture business services interact with each other to carry out business functions. Services act like loosely coupled components orchestrated to deliver high level of service by modeling and linking business processes.Services are business functions that can form complete business processes.</p>
<p>SOA makes services from the legacy applications available for reuse by people , processes , applications.</p>
<p>Key aspects of a Service</p>
<ul>
<li>Specific : A service should conform to the industry based standards and protocols ( WSDL , COM , XML)</li>
<li>Well defined : The service should represent its functionalities very clearly i.e the set of operations it performs</li>
<li>Platform Agnostic : Services should be made able to use by the simplest standard based protocols and be independent of the computer architecture in use.</li>
<li>Loosely coupled : The different services should be simple and autonomous allowing flexibility in the application</li>
<li>Location transparency : The client need not know where the service actually resides.</li>
<li>Reliability : The service should guarantee a high level of service.</li>
</ul>
<p>SOA deals with building IT applications using loosely coupled components rendering a high level of service.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bethorough.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bethorough.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bethorough.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bethorough.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bethorough.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bethorough.wordpress.com&#038;blog=1586858&#038;post=4&#038;subd=bethorough&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bethorough.wordpress.com/2008/03/07/getting-started-with-soa-the-concept-of-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3184a520e536b7b314cb7dcb45451095?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Aditya Thatte</media:title>
		</media:content>
	</item>
	</channel>
</rss>
