<?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></title>
	<atom:link href="http://jmeterworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jmeterworld.wordpress.com</link>
	<description>Alok Ranjan Nayak's Blog</description>
	<lastBuildDate>Tue, 10 Jan 2012 04:25:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jmeterworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/dfcd7f65a52c95662aa5603694f972f5?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title></title>
		<link>http://jmeterworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jmeterworld.wordpress.com/osd.xml" title="" />
	<atom:link rel='hub' href='http://jmeterworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JUnit Sampler Tutorial- JMeter</title>
		<link>http://jmeterworld.wordpress.com/2009/03/16/junit-sampler-tutorial-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/03/16/junit-sampler-tutorial-jmeter/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 05:09:39 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Samplers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=255</guid>
		<description><![CDATA[JUnit sampler provides easy ways to unit test the Java applications. Each Java class that you write will correspond to a JUnit Java class that will test the methods of your class. For example if you want to test some methods of a class Book you create a class BookTest which extends the JUnit TestCase [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=255&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">JUnit sampler provides easy ways to unit test the Java applications.<span style="color:black;"> Each Java class that you write will correspond to a JUnit Java class that will test the methods of your class.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> For example if you want to test some methods of a class </span><em><span>Book </span></em><span>you create a class </span><em><span>BookTest </span></em><span>which extends the JUnit </span><em><span>TestCase </span></em><span>class and place your test methods in there.( i.e. Create a subclass of TestCase). In this tutorial we create a SampleTest class which has four methods.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span><strong><span>Steps:</span></strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>1. Create a folder (package) mypack inside lib\junit. Put the SampleTest.java file inside it.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>2. Since we are importing TestCase class we need to set the classpath for junit.jar file.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span></p>
<table class="MsoTableGrid" style="border:1px solid black;border-collapse:collapse;height:533px;" border="1" cellspacing="0" cellpadding="0" width="464">
<tbody>
<tr style="height:12.6pt;">
<td style="border:1pt solid black;width:396.15pt;height:12.6pt;padding:0 5.4pt;" width="528" valign="top">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>SampleTest.java</span></p>
</td>
</tr>
<tr style="height:297.85pt;">
<td style="width:396.15pt;height:297.85pt;padding:0 5.4pt;" width="528" valign="top">
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="color:blue;">package</span><span> mypack;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="color:blue;"> import</span><span> junit.framework.TestCase;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="color:blue;"> public</span><span> <span style="color:blue;">class</span> SampleTest <span style="color:blue;">extends</span> TestCase</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>{</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span> </span><span> </span><span style="color:blue;">int</span> a=10,b=5;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span> </span><span style="color:blue;">int</span> c,d,e; </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> <span> </span><span style="color:blue;">public</span> <span style="color:blue;">void</span> testsum()</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>{</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>c=a+b;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span style="color:teal;">System</span>.out.println(<span style="color:maroon;">&#8220;The Sum of two numbers is: &#8220;</span>+c);</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>}</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span style="color:blue;">public</span> <span style="color:blue;">void</span> testmulti()</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>{</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>d=a*b;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span style="color:teal;">System</span>.out.println(<span style="color:maroon;">&#8220;The product of two numbers is: &#8220;</span>+d);</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>}</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span style="color:blue;">public</span> <span style="color:blue;">void</span> testdiv()</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>{</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>e=a/b;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span><span style="color:teal;">System</span>.out.println(<span style="color:maroon;">&#8220;The division of two numbers is: &#8220;</span>+e);</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span><span> </span>}</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>}</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>3. Compile the SampleTest.java file</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> Cmd:\</span><span style="color:black;"> Jmeterhome\lib\junit</span><span>\mypack&gt;<span> </span>javac<span> </span>SampleTest.java</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> 4. Now create a jar file for the package mypack;</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span style="color:black;"> Cmd:\Jmeterhome\lib\junit&gt;<span> </span>jar <span> </span>cvf<span> </span><span> </span>mytest.jar<span> </span><span> </span>mypack</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>Here mytest.jar is the name of the jar file that will be generated and mypack is the package name getting jarred.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> 5. Now since the jar file is inside junit folder Jmeter (Junit Sampler automatically detects the class).</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>6. Run Jmeter and add a JUnit sampler to the thread group.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> <a href="http://jmeterworld.files.wordpress.com/2009/03/junit1.jpg"><img class="alignnone size-medium wp-image-256" title="junit1" src="http://jmeterworld.files.wordpress.com/2009/03/junit1.jpg?w=300&#038;h=207" alt="junit1" width="300" height="207" /></a></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> Now check the Classname option in the GUI; mypack.SampleTest has been added to the list.</span><span>Select any method  from the test methods available.Run the test and view the result in a listener.<br />
</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> <a href="http://jmeterworld.files.wordpress.com/2009/03/junit2.jpg"><img class="alignnone size-medium wp-image-257" title="junit2" src="http://jmeterworld.files.wordpress.com/2009/03/junit2.jpg?w=300&#038;h=207" alt="junit2" width="300" height="207" /></a></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>The command prompt will  display the output of the method.<br />
</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> <a href="http://jmeterworld.files.wordpress.com/2009/03/junit3.jpg"><img class="alignnone size-medium wp-image-258" title="junit3" src="http://jmeterworld.files.wordpress.com/2009/03/junit3.jpg?w=300&#038;h=154" alt="junit3" width="300" height="154" /></a></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=255&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/03/16/junit-sampler-tutorial-jmeter/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/junit1.jpg?w=300" medium="image">
			<media:title type="html">junit1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/junit2.jpg?w=300" medium="image">
			<media:title type="html">junit2</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/junit3.jpg?w=300" medium="image">
			<media:title type="html">junit3</media:title>
		</media:content>
	</item>
		<item>
		<title>POP-UP Recording Limitation in Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/03/03/pop-up-recording-limitation-in-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/03/03/pop-up-recording-limitation-in-jmeter/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 11:05:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=245</guid>
		<description><![CDATA[There are generally three kinds of popup-1. Alert box 2. Confirm 3. Prompt. These are Client side scripts/programs generated in the webpage. Since Jmeter is build to load test Servers it can’t record these popups generated during recording a site with Jmeter. The limitation has also been cited in http://jakarta.apache.org/jmeter/ These are the supported reasons [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=245&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="/DOCUME~1/an63718/Local%20Settings/Temp/moz-screenshot.jpg" alt="" /></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;line-height:normal;"><span>There are generally three kinds of popup-1. Alert box 2. Confirm 3. Prompt. These are Client side scripts/programs generated in the webpage. Since Jmeter is build to load test Servers it can’t record these popups generated during recording a site with Jmeter.</span></p>
<p class="MsoNormal" style="line-height:normal;"><span>The limitation has also been cited in <a href="http://jakarta.apache.org/jmeter/"><span style="color:blue;">http://jakarta.apache.org/jmeter/</span></a></span></p>
<p class="MsoNormal" style="line-height:normal;"><span>These are the supported reasons for this:</span></p>
<p class="MsoNormal" style="line-height:normal;"><strong><span>1. JMeter is not a browser: </span></strong><span>JMeter is not a browser. As far as web-services and remote services are concerned, JMeter looks like a browser (or rather, multiple browsers); however JMeter does not perform all the actions supported by browsers. <span style="background:yellow none repeat scroll 0;color:black;">In particular, JMeter does not execute the Javascript found in HTML pages.</span> Nor does it render the HTML pages as a browser does (it&#8217;s possible to view the response as HTML etc, but the timings are not included in any samples, and only one sample in one thread is ever viewed at a time). </span></p>
<p class="MsoNormal" style="line-height:normal;"><span>2<strong>. The Proxy Server can only record HTTP traffic</strong> (any requests to server)</span></p>
<p class="MsoNormal" style="line-height:normal;"><strong><span>3. Does JMeter process dynamic pages (e.g. Javascript and applets)</span></strong></p>
<p class="MsoNormal" style="line-height:normal;"><span>JMeter does not process Javascript or applets embedded in HTML pages. JMeter can download the relevant resources (some embedded resources are downloaded automatically if the correct options are set), but it does not process the HTML and execute any Javascript functions.</span></p>
<p><span style="font-size:11pt;font-family:&quot;">If the page uses Javascript to build up a URL or submit a form, you can use the Proxy Recording facility to create the necessary sampler. If this is not possible, then manual inspection of the code may be needed to determine what the Javascript is doing. </span></p>
<p class="MsoNormal" style="line-height:normal;"><span>I have tried verifying this with two methods. In first method I recorded the pop-ups in BADBOY tool and tried to export it to Jmeter. Secondly tried it with Jmeter itself.</span></p>
<p class="MsoNormal"><strong>Method1: </strong>(Exporting from BADBOY)</p>
<p class="MsoNormal">We record the Alert box and prompt from the below link: http://alokranjan.freehostia.com/pop/popup.html<a href="http://jmeterworld.files.wordpress.com/2009/03/pop1.jpg"><img class="alignnone size-medium wp-image-249" title="pop1" src="http://jmeterworld.files.wordpress.com/2009/03/pop1.jpg?w=300&#038;h=225" alt="pop1" width="300" height="225" /></a></p>
<p class="MsoNormal"><span><!--[if gte vml 1]&gt;                    &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal">
<p class="MsoNormal">Now we save the script. And when we try to export it the following error comes.</p>
<p class="MsoNormal"><a href="http://jmeterworld.files.wordpress.com/2009/03/pop2.jpg"><img class="alignnone size-medium wp-image-250" title="pop2" src="http://jmeterworld.files.wordpress.com/2009/03/pop2.jpg?w=300&#038;h=225" alt="pop2" width="300" height="225" /></a></p>
<p class="MsoNormal"><span><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal"><span><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal"><strong><span style="color:red;">It says items like Messagebox and alert box are not supported in Jmeter.</span></strong></p>
<p class="MsoNormal"><strong><span style="color:red;"><a href="http://jmeterworld.files.wordpress.com/2009/03/pop3.jpg"><img class="alignnone size-medium wp-image-251" title="pop3" src="http://jmeterworld.files.wordpress.com/2009/03/pop3.jpg?w=300&#038;h=80" alt="pop3" width="300" height="80" /></a></span></strong></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><strong>Method2</strong>. (Recording in Jmeter)</p>
<p class="MsoNormal">Site: http://alokranjan.freehostia.com/pop/popup.html</p>
<p class="MsoNormal"><a href="http://jmeterworld.files.wordpress.com/2009/03/pop4.jpg"><img class="alignnone size-medium wp-image-252" title="pop4" src="http://jmeterworld.files.wordpress.com/2009/03/pop4.jpg?w=300&#038;h=118" alt="pop4" width="300" height="118" /></a></p>
<p class="MsoNormal"><span><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal">When we click on the <strong>write sth </strong>alert box it writes a line (this is a sample line) on the web page.</p>
<p class="MsoNormal"><span><!--[if gte vml 1]&gt;  &lt;![endif]--><!--[if !vml]--><!--[endif]--></span></p>
<p class="MsoNormal">
<p class="MsoNormal">When we record the site only the page gets recorded and .The alert box and text output doesn’t get recorded.</p>
<p class="MsoNormal"><a href="http://jmeterworld.files.wordpress.com/2009/03/pop5.jpg"><img class="alignnone size-medium wp-image-253" title="pop5" src="http://jmeterworld.files.wordpress.com/2009/03/pop5.jpg?w=300&#038;h=117" alt="pop5" width="300" height="117" /></a></p>
<p class="MsoNormal">This confirms that Jmeter can’t handle popups or client side scripts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=245&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/03/03/pop-up-recording-limitation-in-jmeter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/pop1.jpg?w=300" medium="image">
			<media:title type="html">pop1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/pop2.jpg?w=300" medium="image">
			<media:title type="html">pop2</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/pop3.jpg?w=300" medium="image">
			<media:title type="html">pop3</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/pop4.jpg?w=300" medium="image">
			<media:title type="html">pop4</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/03/pop5.jpg?w=300" medium="image">
			<media:title type="html">pop5</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom Plugins for Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/02/24/custom-plugins-for-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/24/custom-plugins-for-jmeter/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 09:36:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=236</guid>
		<description><![CDATA[1. Load Testing RMI server in Jmeter : (New RMI sampler) 2. Better Graphs in Jmeter : (Custom Listener) 3. Enhanced JDBC Sampler for Jmeter 4.Maven JMeter plugin and report generation 4. SMTP Sampler Plugin in Jmeter 5.Testing EJBs with JMeter 6.JMeter Aggregator Plugin 7. Record and playing back RMI calls (RMI Serevr) &#8211; Swing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=236&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. <a href="http://twit88.com/blog/2007/09/14/use-jmeter-to-load-test-rmi-remote-method-invocation-server/" target="_blank"> Load Testing RMI server in Jmeter : </a>(New RMI sampler)</p>
<p>2. <a href="http://rubenlaguna.com/wp/better-jmeter-graphs/" target="_blank">Better Graphs in Jmeter</a> :  (Custom Listener)</p>
<p>3. <a href="http://rubenlaguna.com/wp/enhanced-jdbc-sampler-for-apache-jmeter-22/" target="_blank">Enhanced JDBC Sampler for Jmeter<br />
</a></p>
<p>4.<a title="Permanent Link: Maven JMeter plugin and report generation (the last steps to get it working)" rel="bookmark" href="http://technology.amis.nl/blog/2364/getting-the-maven-jmeter-plugin-working-and-generating-a-report-the-last-steps" target="_blank">Maven JMeter plugin and report generation </a></p>
<p>4. <a href="http://www.beolink.org/index/jmeter-plug-in" target="_blank">SMTP Sampler Plugin in Jmeter</a></p>
<p>5.<a href="http://mikedesjardins.us/wordpress/2008/12/test-your-ejbs-with-jmeter/" target="_blank">Testing  EJBs with JMeter</a></p>
<p>6.<span><a href="/display/BAMEXT/JMeter+Aggregator+Plugin" target="_blank">JMeter  Aggregator Plugin</a></span></p>
<p><span>7.</span><span> <a href="http://github.com/jmibanez/jmeter-rmi-plugin/tree/master" target="_blank">Record and playing back RMI calls (RMI Serevr)</a> </span> &#8211; Swing Sampler in Jmeter</p>
<p>8.<a href="http://code.google.com/p/jmeter-groovy-sampler/" target="_blank">JMeter-groovy-sampler </a>- Runs Groovy Scripts in Jmeter</p>
<p>9. <a href="http://www.ronniealleva.org/index.php/maven-jmeter-plugin/" target="_blank">Automate JMeter tests in Maven</a> -</p>
<p>10. <a href="http://www.nagiosexchange.org/cgi-bin/page.cgi?g=Detailed%2F2455.html" target="_blank">JMeter to Nagios</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=236&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/24/custom-plugins-for-jmeter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>
	</item>
		<item>
		<title>TCP Sampler- Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/02/19/tcp-sampler-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/19/tcp-sampler-jmeter/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 07:32:41 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Samplers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=224</guid>
		<description><![CDATA[The TCP Sampler opens a TCP/IP connection to the specified server. It then sends the text, and waits for a response. You can test any Server working over TCP/IP. But In this example I have tested this sampler with a TCP server made in C#. You can download the TCP server here. http://alokranjan.freehostia.com/codes/TCP%20Server.zip Steps: 1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=224&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The TCP Sampler opens a TCP/IP connection to the specified server. It then sends the text, and waits for a response.</p>
<p>You can test any Server working over TCP/IP. But In this example I have tested this sampler with a TCP server made in C#. You can download the TCP server here.</p>
<p>http://alokranjan.freehostia.com/codes/TCP%20Server.zip</p>
<p>Steps:<br />
1. Run the TCP server on your system and create a new Test case in Jmeter. The server looks like this before any client connections.</p>
<p><a href="http://jmeterworld.files.wordpress.com/2009/02/tcp1.jpg"><img class="alignnone size-medium wp-image-229" title="tcp1" src="http://jmeterworld.files.wordpress.com/2009/02/tcp1.jpg?w=300&#038;h=80" alt="tcp1" width="300" height="80" /></a></p>
<p>2. Add a TCP sampler to the thread group. Fill the fields as follows-</p>
<blockquote><p>Server name or IP: Localhost<br />
Check reuse connection<br />
Port number: 13000<br />
Timeout: 200<br />
Check Set Nodelay<br />
Text to send: This is the text i hav sent to tcp server</p></blockquote>
<p>Since there is no login request for the server we leave the username and password field blank.</p>
<p><a href="http://jmeterworld.files.wordpress.com/2009/02/tcp2.jpg"><img class="alignnone size-medium wp-image-230" title="tcp2" src="http://jmeterworld.files.wordpress.com/2009/02/tcp2.jpg?w=300&#038;h=163" alt="tcp2" width="300" height="163" /></a></p>
<p>3. Add a listener (View Results tree) and run the test.</p>
<p><a href="http://jmeterworld.files.wordpress.com/2009/02/tcp3.jpg"><img class="alignnone size-medium wp-image-231" title="tcp3" src="http://jmeterworld.files.wordpress.com/2009/02/tcp3.jpg?w=300&#038;h=163" alt="tcp3" width="300" height="163" /></a><br />
The sampler result tab gives the response code and load time. The response data shows the data sent by the Server.<br />
You can also check the server whether it has sent the data or not.</p>
<p><a href="http://jmeterworld.files.wordpress.com/2009/02/tcp4.jpg"><img class="alignnone size-medium wp-image-232" title="tcp4" src="http://jmeterworld.files.wordpress.com/2009/02/tcp4.jpg?w=300&#038;h=80" alt="tcp4" width="300" height="80" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/224/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=224&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/19/tcp-sampler-jmeter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/tcp1.jpg?w=300" medium="image">
			<media:title type="html">tcp1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/tcp2.jpg?w=300" medium="image">
			<media:title type="html">tcp2</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/tcp3.jpg?w=300" medium="image">
			<media:title type="html">tcp3</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/tcp4.jpg?w=300" medium="image">
			<media:title type="html">tcp4</media:title>
		</media:content>
	</item>
		<item>
		<title>Generate the test report in Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/02/18/generate-the-test-report-in-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/18/generate-the-test-report-in-jmeter/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 05:09:03 +0000</pubDate>
		<dc:creator>Sirish behera</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=211</guid>
		<description><![CDATA[Prerequisites: 1. ‘Apache-ant’ is the Pre-requisite for generating the report from the jmx file. Apache Ant is a Java-based build tool. 2. Ant-jmeter.jar Steps: 1. Create a new variable JAVA_HOME in the environment variable and set the path for the jdk. 2. You can find the Environment variable by right clicking on the computer Icon [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=211&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Prerequisites:</strong></p>
<p><strong></strong>1.    ‘Apache-ant’ is the Pre-requisite for generating the report from the jmx file. Apache Ant is a Java-based build tool.<br />
2.    Ant-jmeter.jar</p>
<p><strong>Steps:</strong></p>
<p><strong></strong>1.    Create a new variable JAVA_HOME in the environment variable and set the path for the jdk.<br />
2.    You can find the Environment variable by right clicking on the computer Icon then properties-&gt; Advance-&gt; environment variable. Then click on the new and give the variable name as well as path also.<br />
3.    Likewise create another variable ANT_HOME and set the path for the Apache-ant.<br />
4.    Create another variable PATH and set the path for apache-ant up to bin folder as shown in the fig. bellow.<br />
<a href="http://jmeterworld.files.wordpress.com/2009/02/testreport1.jpg"><img class="alignnone size-medium wp-image-212" title="testreport1" src="http://jmeterworld.files.wordpress.com/2009/02/testreport1.jpg?w=300&#038;h=264" alt="testreport1" width="300" height="264" /></a></p>
<p>5.    Place the ant-jmeter.jar file in side ‘Extras’ folder. Which is located in the path jakarta-jmeter-2.3.2-&gt;extras<br />
6.    Navigate to the ‘build.xml’ folder of the jmeter which is located in the path jakarta-jmeter-2.3.2-&gt;extras-&gt;build.xml.<br />
7.    Set the classpathref = “d:/jakarta-jmeter-2.3.2/extras/ant-jmeter.jar “<br />
8.    Set jmeterhome=&#8221;D:/jakarta-jmeter-2.3.2&#8243;<br />
9.    Set style=&#8221;D:/jakarta-jmeter-2.3.2/jmeter-results-detail-report${style_version}.xsl&#8221; and save it.<br />
10.    Now copy your jmx file and the build.xml file put it in a folder where ever you want to generate the report.<br />
11.    Open your command prompt and navigate to the folder where your jmx and build file is located.<br />
12.    To run a test and create the output report:<br />
Type the command “ant -Dtest=script”(for eg. I have my test.jms file and the command is ant-Dtest=test)<br />
It will generate an Html file. This can be open in the browser as shown in the fig. bellow.<br />
<a href="http://jmeterworld.files.wordpress.com/2009/02/testreport2.jpg"><img class="alignnone size-medium wp-image-213" title="testreport2" src="http://jmeterworld.files.wordpress.com/2009/02/testreport2.jpg?w=300&#038;h=198" alt="testreport2" width="300" height="198" /></a></p>
<p>13.    To run a test only:<br />
Type the command  “ant -Dtest=script run”<br />
14.    To run report on existing test output<br />
Type the command “ant -Dtest=script report”</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=211&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/18/generate-the-test-report-in-jmeter/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/715d65a7e4b1565dfeaff790ce2100ea?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jmetercomplete</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/testreport1.jpg?w=300" medium="image">
			<media:title type="html">testreport1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/testreport2.jpg?w=300" medium="image">
			<media:title type="html">testreport2</media:title>
		</media:content>
	</item>
		<item>
		<title>FTP Sampler &#8211; Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/02/17/ftp-sampler-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/17/ftp-sampler-jmeter/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 10:43:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Samplers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=190</guid>
		<description><![CDATA[This controller lets you send an FTP &#8220;retrieve file&#8221; or &#8220;upload file&#8221; request to an FTP server. If you are going to send multiple requests to the same FTP server, consider using a FTP Request Defaults Configuration Element so you do not have to enter the same information for each FTP Request Generative Controller. When [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=190&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">This controller lets you send an FTP &#8220;retrieve file&#8221; or &#8220;upload file&#8221; request to an FTP server. If you are going to send multiple requests to the same FTP server, consider using a FTP Request Defaults Configuration Element so you do not have to enter the same information for each FTP Request Generative Controller. When downloading a file, it can be stored on disk (Local File) or in the Response Data, or both.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">There are many anonymous ftp sites in the web. Just search in Google as “FTP sites” or “Anonymous FTP sites” and you will get a good list of ftp sites which you can connect to. But if you are unable to connect to one of them due to firewall you can set up your own FTP Server. Download free FTP server from </span><a href="http://www.goldenftpserver.com/golden-ftp-server.zip"><span style="font-size:small;color:#525d76;font-family:Calibri;">www.goldenftpserver.com/golden-ftp-server.zip</span></a><span style="font-size:small;"><span style="font-family:Calibri;"><span> </span>and install it with default settings in your system.</span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Share a file in your server (Open shares-&gt;Add).Also share a Folder (enable full control) in your server and name it as Add.</span></p>
<p><a href="http://jmeterworld.files.wordpress.com/2009/02/ftp11.jpg?w=300"><img class="alignnone size-medium wp-image-195" title="ftp11" src="http://jmeterworld.files.wordpress.com/2009/02/ftp11.jpg?w=300&#038;h=185" alt="ftp11" width="300" height="185" /></a></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Select a share and click info and it will show the access path to the file.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/ftp2.jpg?w=300"><span style="font-size:small;font-family:Calibri;"><img class="alignnone size-medium wp-image-196" title="ftp2" src="http://jmeterworld.files.wordpress.com/2009/02/ftp2.jpg?w=300&#038;h=148" alt="ftp2" width="300" height="148" /></span></a></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;"><span style="font-family:Calibri;"><span> </span>You can connect to this file from another system of your network (if only firewall is disabled) through command prompt (</span></span><a href="ftp://ftp%20172.26.3.206).once/"><span style="text-decoration:none;"><span style="font-size:small;color:#525d76;font-family:Calibri;">ftp 172.26.3.206).Once</span></span></a><span style="font-size:small;font-family:Calibri;"> it is connected you can check the connections to your server.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">In this example we are testing a server hosted in the same system.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">1. Open a new Test plan in Jmeter and under add a thread group under it. Add two FTP Request Samplers to it. The first sampler is used foe retrieving a file from FTP server and second is for uploading a file to it.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">2 .Give server name as localhost (you can also mention the IP).Remote file is given as it is shown in the server and local file is the name under which it will be stored after it gets retrieved. Select get(RETR) option. Enter Login Configurations as required (here anonymous/ anonymous).</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/ftp3.jpg?w=300"><img class="alignnone size-medium wp-image-198" title="ftp3" src="http://jmeterworld.files.wordpress.com/2009/02/ftp3.jpg?w=300&#038;h=163" alt="ftp3" width="300" height="163" /></a></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Similarly for second sample configure the settings. Here Local file is the file to be uploaded in FTP server (give full path of this file).Remote file is how it will be uploaded into the server (here it will be uploaded in Add folder).Select put (STOR) option.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/ftp4.jpg?w=300"><img class="alignnone size-medium wp-image-199" title="ftp4" src="http://jmeterworld.files.wordpress.com/2009/02/ftp4.jpg?w=300&#038;h=163" alt="ftp4" width="300" height="163" /></a></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Now run the test and view results in Results tree listener. If the test is successful the retrieved file is stored in bin folder.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/ftp5.jpg?w=300"><img class="alignnone size-medium wp-image-200" title="ftp5" src="http://jmeterworld.files.wordpress.com/2009/02/ftp5.jpg?w=300&#038;h=170" alt="ftp5" width="300" height="170" /></a></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">FAILURE MESSAGES: </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;">Response code: 550</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;">Response message: 550 Operation not complete</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;">This means that the path where file is to be uploaded is not modifiable. (Should enable full control)</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=190&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/17/ftp-sampler-jmeter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ftp11.jpg?w=300" medium="image">
			<media:title type="html">ftp11</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ftp2.jpg?w=300" medium="image">
			<media:title type="html">ftp2</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ftp3.jpg?w=300" medium="image">
			<media:title type="html">ftp3</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ftp4.jpg?w=300" medium="image">
			<media:title type="html">ftp4</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ftp5.jpg?w=300" medium="image">
			<media:title type="html">ftp5</media:title>
		</media:content>
	</item>
		<item>
		<title>Runtime controller</title>
		<link>http://jmeterworld.wordpress.com/2009/02/05/runtime-controller/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/05/runtime-controller/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 07:13:49 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Logic Controllers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=184</guid>
		<description><![CDATA[It fixes the time limit for its children to be run. If you have specified 20 seconds then the samples will be generated for 20 seconds. Create a new test Plan. Add a thread group to the test plan. Add a Runtime Controller to the Thread group and under the controller add four HTTP Request [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=184&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;">
<p class="MsoNormal"><strong> </strong>It fixes the time limit for its children to be run. If you have specified 20 seconds then the samples will be generated for 20 seconds.</p>
<p class="MsoNormal">Create a new test Plan. Add a thread group to the test plan. Add a Runtime Controller to the Thread group and under the controller add four HTTP Request Element sampler. Name them as 1,2, 3, 4 and put <span> </span>Server name: <a href="http://www.google.co.in/">www.google.co.in</a> and    Path:/</p>
<p class="MsoNormal">
<p class="MsoNormal" style="margin-bottom:.0001pt;">Give the Run time as 25 seconds in the controller. Run the script and observe in View listener tree.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/runtime1.jpg?w=300"><img class="alignnone size-medium wp-image-185" title="runtime1" src="http://jmeterworld.files.wordpress.com/2009/02/runtime1.jpg?w=300&#038;h=130" alt="runtime1" width="300" height="130" /></a></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">In view listener tree select the first sample and under sampler result tab note the <strong>sample start </strong>time.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/runtime2.jpg?w=300"><img class="alignnone size-medium wp-image-186" title="runtime2" src="http://jmeterworld.files.wordpress.com/2009/02/runtime2.jpg?w=300&#038;h=217" alt="runtime2" width="300" height="217" /></a></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">Similarly get the start time of the last sample. Their difference gives the Run time we have given.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">In this example:-<span><br />
</span></p>
<p>First sample -Sample Start: 2009-02-05  <strong>12:05:06</strong> IST<br />
Last sample- Sample Start: 2009-02-05   <strong>12:05:31</strong> IST<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<span> </span>The difference comes=00:00:<strong>25</strong></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=184&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/05/runtime-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/runtime1.jpg?w=300" medium="image">
			<media:title type="html">runtime1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/runtime2.jpg?w=300" medium="image">
			<media:title type="html">runtime2</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Order controller</title>
		<link>http://jmeterworld.wordpress.com/2009/02/05/random-order-controller/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/05/random-order-controller/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 06:45:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Logic Controllers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=179</guid>
		<description><![CDATA[It executes the samples under it randomly at most once. Add a Random Order Controller to the thread group.Put 4 samples under it named 1, 2, 3, and 4 . Run and see the order of execution of samples are randomly generated each time.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=179&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-size:11pt;line-height:115%;font-family:&quot;">It <span> </span>executes the samples under it randomly at most once.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;">Add a Random Order Controller to the thread group.Put 4 samples under it named 1, 2, 3, and 4 . Run and see  the order of execution of samples are randomly generated each time.</p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><a href="http://jmeterworld.files.wordpress.com/2009/02/random-controller.jpg?w=300"><img class="alignnone size-medium wp-image-180" title="random-controller" src="http://jmeterworld.files.wordpress.com/2009/02/random-controller.jpg?w=300&#038;h=151" alt="random-controller" width="300" height="151" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=179&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/05/random-order-controller/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/random-controller.jpg?w=300" medium="image">
			<media:title type="html">random-controller</media:title>
		</media:content>
	</item>
		<item>
		<title>Include Controller</title>
		<link>http://jmeterworld.wordpress.com/2009/02/05/include-controller/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/05/include-controller/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 05:49:38 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Logic Controllers]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=174</guid>
		<description><![CDATA[The include controller is designed to use an external jmx file. To use it, add samples to a simple controller, then save the simple controller as a jmx file. The file can then be used in a test plan. Open a new file.Under workbench add a Simple controller, to that add an Http request element [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=174&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;"><span> </span>The include controller is designed to use an external jmx file. To use it, add samples to a simple controller, then save the simple controller as a jmx file. The file can then be used in a test plan. <span> </span></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;"> Open a new file.Under workbench add a Simple controller, to that add an Http request element sampler. Fill<span> </span>the values as follows</span></p>
<p><span style="font-family:&quot;"><span> </span>Name: external</span><br />
<span style="font-family:&quot;"><span> </span>Server name: <a href="http://www.google.co.in/">www.google.co.in</a></span><br />
<span style="font-family:&quot;"><span> </span>Path:/</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;">Now select the simple controller and save it as (right click-&gt; save selection as) external.jmx.</span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;"></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;"> <a href="http://jmeterworld.files.wordpress.com/2009/02/ic1.jpg"><img class="alignnone size-full wp-image-175" title="ic1" src="http://jmeterworld.files.wordpress.com/2009/02/ic1.jpg?w=468" alt="ic1"   /></a></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;">Now open a new test file and add an HTTP request under thread group .Name it as A. Add an Include controller to the thread group. And there give the filename as external.jmx with full path (include test plan).<a href="http://jmeterworld.files.wordpress.com/2009/02/ic2.jpg"><img class="alignnone size-full wp-image-176" title="ic2" src="http://jmeterworld.files.wordpress.com/2009/02/ic2.jpg?w=468" alt="ic2"   /></a></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;"></span></p>
<p class="MsoNormal" style="margin-bottom:.0001pt;"><span style="font-family:&quot;">Now run the script and see that both A and External samples have been generated.<a href="http://jmeterworld.files.wordpress.com/2009/02/ic3.jpg"><img class="alignnone size-full wp-image-177" title="ic3" src="http://jmeterworld.files.wordpress.com/2009/02/ic3.jpg?w=468" alt="ic3"   /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=174&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/05/include-controller/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ic1.jpg" medium="image">
			<media:title type="html">ic1</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ic2.jpg" medium="image">
			<media:title type="html">ic2</media:title>
		</media:content>

		<media:content url="http://jmeterworld.files.wordpress.com/2009/02/ic3.jpg" medium="image">
			<media:title type="html">ic3</media:title>
		</media:content>
	</item>
		<item>
		<title>Webservices testing with Jmeter</title>
		<link>http://jmeterworld.wordpress.com/2009/02/04/webservices-testing-with-jmeter/</link>
		<comments>http://jmeterworld.wordpress.com/2009/02/04/webservices-testing-with-jmeter/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 05:46:59 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[web Services]]></category>

		<guid isPermaLink="false">http://jmeterworld.wordpress.com/?p=163</guid>
		<description><![CDATA[Webservice: Web service is a method of making various applications communicates with each other automatically over the Internet. The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=163&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Webservice:</strong> Web service is a method of making various applications communicates with each other automatically over the Internet.</p>
<p>The term Web services describes a standardized way of integrating Web-based applications using the XML, SOAP, WSDL and UDDI open standards over an Internet protocol backbone. XML is used to tag the data, SOAP is used to transfer the data, WSDL is used for describing the services available and UDDI is used for listing what services are available.</p>
<p>Web Services have three basic platform elements: SOAP, WSDL and UDDI.</p>
<p><strong>SOAP</strong> (Simple Object Access Protocol):  SOAP is a simple XML-based protocol to let applications exchange information over HTTP.</p>
<p><strong>WSDL</strong> (Web Services Description Language): WSDL is an XML-based language for describing Web services and how to access them.</p>
<p><strong>UDDI</strong> (Universal Description, Discovery and Integration): UDDI is a directory service where businesses can register and search for Web services.</p>
<p><strong>Webservice you can use:</strong></p>
<p>http://www.webservicex.net/</p>
<p>http://www.xmethods.net/</p>
<p>http://www.w3schools.com/webservices/tempconvert.asmx?WSDL</p>
<p>http://www.startvbdotnet.com/web/sample2.asmx?WSDL</p>
<p>http://www50.brinkster.com/vbfacileinpt/np.asmx?wsdl  (prime number)</p>
<p><strong>Tutorials:</strong><br />
http://wso2.org/library/3862 http://mattharrah.com/blog/software-development/jmeter-and-web-services-part-i/</p>
<p>http://wso2.org/library/1085</p>
<p>http://javaboutique.internet.com/tutorials/JMeter/index-9.html http://www.testingminded.com/2009/01/tutorial-on-testing-webservices-with.html</p>
<p>http://www.oracle.com/technology/pub/articles/dev2arch/2006/08/jmeter-performance-testing3.html</p>
<p><strong>SOAP Client:</strong></p>
<p>http://www.soapclient.com/soaptest.html</p>
<p>SOAPUI tool is specifically built to test webservices.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jmeterworld.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jmeterworld.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jmeterworld.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jmeterworld.wordpress.com&amp;blog=5855926&amp;post=163&amp;subd=jmeterworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jmeterworld.wordpress.com/2009/02/04/webservices-testing-with-jmeter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d87d73f5c8042f124b59e41176a8a91?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alok Ranjan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
