<?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>Technology Cares</title>
	<atom:link href="http://shresthamanish.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shresthamanish.wordpress.com</link>
	<description>Not Just another weblog</description>
	<lastBuildDate>Mon, 16 Jan 2012 15:51:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shresthamanish.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Technology Cares</title>
		<link>http://shresthamanish.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shresthamanish.wordpress.com/osd.xml" title="Technology Cares" />
	<atom:link rel='hub' href='http://shresthamanish.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Google Maps in Salesforce Page</title>
		<link>http://shresthamanish.wordpress.com/2012/01/16/google-maps-in-salesforce-page/</link>
		<comments>http://shresthamanish.wordpress.com/2012/01/16/google-maps-in-salesforce-page/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 15:51:28 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google Map]]></category>
		<category><![CDATA[Salesforce]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=202</guid>
		<description><![CDATA[Having implemented this before, I wanted to make a blog entry of this functionality that is very popular and often asked by the Salesforce users. This blog entry is about adding google maps to the existing page layout of any objects in Salesforce. For example, showing address of the account in map or mapping the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=202&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Having implemented this before, I wanted to make a blog entry of this functionality that is very popular and often asked by the Salesforce users.<br />
This blog entry is about adding google maps to the existing page layout of any objects in Salesforce. For example, showing address of the account in map or mapping the address of campaign, etc.<br />
Here is how we start.<br />
1. Go to Setup -&gt; Customize -&gt; Develop -&gt; Pages and create a new Visualforce Page. Add following code:</p>
<blockquote>
<pre>&lt;apex:page standardController="Account"&gt;

&lt;head&gt;

&lt;script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt; 

$(document).ready(function() {

  var myOptions = {
    zoom: 15,
    mapTypeId: google.maps.MapTypeId.ROADMAP,
    mapTypeControl: false
  }

  var map;
  var marker;

  var geocoder = new google.maps.Geocoder();
  var address = "{!Account.BillingStreet}, " + "{!Account.BillingCity}, " + "{!Account.BillingPostalCode}, " + "{!Account.BillingCountry}";

  var infowindow = new google.maps.InfoWindow({
    content: "&lt;b&gt;{!Account.Name}&lt;/b&gt;&lt;br&gt;{!Account.BillingStreet}&lt;br&gt;{!Account.BillingCity}, {!Account.BillingPostalCode}&lt;br&gt;{!Account.BillingCountry}"
  });

  geocoder.geocode( { address: address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK &amp;&amp; results.length) {
      if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {

        //create map
        map = new google.maps.Map(document.getElementById("map"), myOptions);

        //center map
        map.setCenter(results[0].geometry.location);

        //create marker
        marker = new google.maps.Marker({
            position: results[0].geometry.location,
            map: map,
            title: "{!Account.Name}"
        });

        //add listeners
        google.maps.event.addListener(marker, 'click', function() {
          infowindow.open(map,marker);
        });
        google.maps.event.addListener(infowindow, 'closeclick', function() {
          map.setCenter(marker.getPosition());
        });

      }

    } else {
      $('#map').css({'height' : '15px'});
      $('#map').html("Oops! {!Account.Name}'s billing address could not be found, please make sure the address is correct.");
      resizeIframe();
    }
  });

  function resizeIframe() {
    var me = window.name;
    if (me) {
      var iframes = parent.document.getElementsByName(me);
      if (iframes &amp;&amp; iframes.length == 1) {
        height = document.body.offsetHeight;
        iframes[0].style.height = height + "px";
      }
    }
  }

});
&lt;/script&gt;

&lt;style&gt;
#map {
  font-family: Arial;
  font-size:12px;
  line-height:normal !important;
  height:250px;
  background:transparent;
}
&lt;/style&gt;

&lt;/head&gt;

&lt;body&gt;
&lt;div id="map"&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/apex:page&gt;</pre>
</blockquote>
<p>2. Add the Visualforce page on the Account page layout (in a single-column section) and set it’s height to be 250px.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=202&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2012/01/16/google-maps-in-salesforce-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>extend flexigrid with pixelnix</title>
		<link>http://shresthamanish.wordpress.com/2011/10/21/extend-flexigrid-with-pixelnix/</link>
		<comments>http://shresthamanish.wordpress.com/2011/10/21/extend-flexigrid-with-pixelnix/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 14:06:49 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flexigrid]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=200</guid>
		<description><![CDATA[Flexigrid is lightweight jQuery plugin for data grid that uses Ajax to load the content. It provides a lot of features that one might want in some grid view of the data. For features and downloading Flexigrid, visit http://flexigrid.info/ However, its column sorting feature does not work unless your grid is hooked up to a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=200&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Flexigrid is lightweight jQuery plugin for data grid that uses Ajax to load the content. It provides a lot of features that one might want in some grid view of the data.</p>
<p>For features and downloading Flexigrid, visit <a href="http://flexigrid.info/">http://flexigrid.info/</a></p>
<p>However, its column sorting feature does not work unless your grid is hooked up to a server-side data source. This was very annoying as sortable table was one of the features that is needed in almost every grid view. I tried a little google search and found a guy had already created patch for this. Hopefully new version of flexigrid would solve that problem, but ones who has been using flexigrid as it is, the following link is helpful<br />
<a href="http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/">http://pixelnix.com/flexigrid-jquery-plugin-extending-to-allow-sorting-of-static-grids/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=200&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/10/21/extend-flexigrid-with-pixelnix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>ApexDataLoader from PocketSOAP</title>
		<link>http://shresthamanish.wordpress.com/2011/08/25/apexdataloader-for-pocketsoap/</link>
		<comments>http://shresthamanish.wordpress.com/2011/08/25/apexdataloader-for-pocketsoap/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 01:34:52 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lexiloader]]></category>
		<category><![CDATA[pocketsoap]]></category>
		<category><![CDATA[Salesforce]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=195</guid>
		<description><![CDATA[I recently started using Mac. I was working on Data Loader for Salesforce and apparently there is no data loader provided by Salesforce for Mac users. So for ppl like us, there is a data loader provided by PocketSOAP. LexiLoader is an OSX build of the Apex Data Loader application which can quickly export, create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=195&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently started using Mac. I was working on Data Loader for Salesforce and apparently there is no data loader provided by Salesforce for Mac users.<br />
So for ppl like us, there is a data loader provided by PocketSOAP. LexiLoader is an OSX build of the Apex Data Loader application which can quickly export, create or update data in your Salesforce.com organization.<br />
We can download it for free from:<br />
<a href="http://www.pocketsoap.com/osx/lexiloader/" title="here" target="_blank">http://www.pocketsoap.com/osx/lexiloader/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=195&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/08/25/apexdataloader-for-pocketsoap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>SEVER: Error listenerStart</title>
		<link>http://shresthamanish.wordpress.com/2011/05/10/sever-error-listenerstart/</link>
		<comments>http://shresthamanish.wordpress.com/2011/05/10/sever-error-listenerstart/#comments</comments>
		<pubDate>Tue, 10 May 2011 19:55:14 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[listener]]></category>
		<category><![CDATA[log4j]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=192</guid>
		<description><![CDATA[I came across following error after I decided to use log4j in my webapp for logging my application logs to the seperate file. “SEVER: Error listenerStart”… “SEVERE: Context [/xxxxxxxxxx] startup failed due to previous errors”, &#8230;. I had multiple apps running under webapp in tomcat. So I had to add following lines in web.xml of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=192&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I came across following error after I decided to use log4j in my webapp for logging my application logs to the seperate file.</p>
<p>“SEVER: Error listenerStart”…<br />
“SEVERE: Context [/xxxxxxxxxx] startup failed due to previous errors”, &#8230;.</p>
<p>I had multiple apps running under webapp in tomcat. So I had to add following lines in web.xml of all applications to make it working.</p>
<p>webAppRootKey<br />
xxxxxxxxxx.root</p>
<p>It is Log4jWebConfigurer’s requirement…</p>
<p>http://opensource.objectsbydesign.com/spring-1.1.4/org/springframework/web/util/Log4jWebConfigurer.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=192&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/05/10/sever-error-listenerstart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Automatically rotate the catalina.out log file</title>
		<link>http://shresthamanish.wordpress.com/2011/05/06/automatically-rotate-the-catalina-out-log-file/</link>
		<comments>http://shresthamanish.wordpress.com/2011/05/06/automatically-rotate-the-catalina-out-log-file/#comments</comments>
		<pubDate>Fri, 06 May 2011 00:54:22 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[catalina.out]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=190</guid>
		<description><![CDATA[It has been increasingly difficult for us in the production server to mange the space due to the increasing amount of log data created in the catalina.log file by tomcat. Do this to rotate catalina.out daily or when it becomes bigger than 200M 1. Create this file /etc/logrotate.d/tomcat 2. Copy the following contents into the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=190&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It has been increasingly difficult for us in the production server to mange the space due to the increasing amount of log data created in the catalina.log file by tomcat.<br />
Do this to rotate catalina.out daily or when it becomes bigger than 200M<br />
1. Create this file<br />
   /etc/logrotate.d/tomcat  </p>
<p>2. Copy the following contents into the above file<br />
   /var/log/tomcat/catalina.out {<br />
     copytruncate<br />
     daily<br />
     rotate 7<br />
     compress<br />
     missingok<br />
     size 200M<br />
   }  </p>
<p>The following link discusses about this in detail</p>
<p>http://www.vineetmanohar.com/2010/03/howto-rotate-tomcat-catalina-out/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=190&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/05/06/automatically-rotate-the-catalina-out-log-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable Remote Debuggin in Eclipse</title>
		<link>http://shresthamanish.wordpress.com/2011/05/03/enable-remote-debuggin-in-eclipse/</link>
		<comments>http://shresthamanish.wordpress.com/2011/05/03/enable-remote-debuggin-in-eclipse/#comments</comments>
		<pubDate>Tue, 03 May 2011 20:31:33 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[remote debug]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=188</guid>
		<description><![CDATA[This is something I had been trying to do for a while but has never attempted. It is not recommended to do in the production server. But a lot of times I want to debug my application running in the test server through my local eclipse. Following link gives clear idea about what needs to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=188&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is something I had been trying to do for a while but has never attempted. It is not recommended to do in the production server. But a lot of times I want to debug my application running in the test server through my local eclipse.<br />
Following link gives clear idea about what needs to be done.</p>
<p>https://confluence.sakaiproject.org/display/BOOT/Setting+Up+Tomcat+For+Remote+Debugging</p>
<p>Basically,<br />
Open startup.sh from your CATALINA_BASE<br />
add<br />
export JPDA_ADDRESS=8000<br />
export JPDA_TRANSPORT=dt_socket<br />
bin/catalina.sh jpda start</p>
<p>edit, exec &#8220;$PRGDIR&#8221;/&#8221;$EXECUTABLE&#8221; jpda start &#8220;$@&#8221;</p>
<p>run the eclipse in the debug mode for &#8220;Remote Java Application&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=188&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/05/03/enable-remote-debuggin-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Monit</title>
		<link>http://shresthamanish.wordpress.com/2011/04/15/monit/</link>
		<comments>http://shresthamanish.wordpress.com/2011/04/15/monit/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 18:39:00 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Monit]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=186</guid>
		<description><![CDATA[I am thinking about digging more into Monit, which is open source utility for managing and monitoring, processes, files, directories and filesystems on a UNIX system. http://mmonit.com/monit/ Very nice article at http://www.darkcoding.net/software/setting-up-monit-on-ubuntu/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=186&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am thinking about digging more into Monit, which is open source utility for managing and monitoring, processes, files, directories and filesystems on a UNIX system.</p>
<p>http://mmonit.com/monit/</p>
<p>Very nice article at</p>
<p>http://www.darkcoding.net/software/setting-up-monit-on-ubuntu/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=186&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/04/15/monit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax render attribute fails inside a h:dataTable in JSF2</title>
		<link>http://shresthamanish.wordpress.com/2011/02/05/ajax-render-attribute-fails-inside-a-hdatatable-in-jsf2/</link>
		<comments>http://shresthamanish.wordpress.com/2011/02/05/ajax-render-attribute-fails-inside-a-hdatatable-in-jsf2/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 20:21:12 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=184</guid>
		<description><![CDATA[This is one of the typical problem faced by developers of JSF. I too spent a lot of time for this error. This link is a reference for correcting myself if I came across similiar situation. http://stackoverflow.com/questions/2424757/ajax-render-attribute-dont-work-in-a-hdatatable-in-jsf2<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=184&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is one of the typical problem faced by developers of JSF. I too spent a lot of time for this error. This link is a reference for correcting myself if I came across similiar situation.</p>
<p>http://stackoverflow.com/questions/2424757/ajax-render-attribute-dont-work-in-a-hdatatable-in-jsf2</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=184&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/02/05/ajax-render-attribute-fails-inside-a-hdatatable-in-jsf2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up Redmine for Email</title>
		<link>http://shresthamanish.wordpress.com/2011/01/14/setting-up-redmine-for-email/</link>
		<comments>http://shresthamanish.wordpress.com/2011/01/14/setting-up-redmine-for-email/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 15:29:59 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=181</guid>
		<description><![CDATA[Setting up Redmine to send email &#8211;TODO Setting up Redmine to send email using gmail http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/ Creating issues in redmine as the email are received for issue &#8211;TODO<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=181&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Setting up Redmine to send email<br />
&#8211;TODO</p>
<p>Setting up Redmine to send email using gmail</p>
<p>http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/</p>
<p>Creating issues in redmine as the email are received for issue<br />
&#8211;TODO</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=181&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2011/01/14/setting-up-redmine-for-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Tutorial on setting up firewall in ubuntu 10.04</title>
		<link>http://shresthamanish.wordpress.com/2010/11/19/tutorial-on-setting-up-firewall-in-ubuntu-10-04/</link>
		<comments>http://shresthamanish.wordpress.com/2010/11/19/tutorial-on-setting-up-firewall-in-ubuntu-10-04/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 16:18:33 +0000</pubDate>
		<dc:creator>Manish</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://shresthamanish.wordpress.com/?p=178</guid>
		<description><![CDATA[I found a nice and easy tutorial in setting up the firewall in ubuntu 10.04 server using ufw. http://1000umbrellas.com/2010/04/29/how-to-set-up-the-firewall-using-ufw-on-ubuntu-lucid-lynx-server<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=178&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found a nice and easy tutorial in setting up the firewall in ubuntu 10.04 server using ufw.</p>
<p>http://1000umbrellas.com/2010/04/29/how-to-set-up-the-firewall-using-ufw-on-ubuntu-lucid-lynx-server</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shresthamanish.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shresthamanish.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shresthamanish.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shresthamanish.wordpress.com&amp;blog=5732645&amp;post=178&amp;subd=shresthamanish&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shresthamanish.wordpress.com/2010/11/19/tutorial-on-setting-up-firewall-in-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/39f4c3cd4c0d6de58030f12fe1491f70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shresthamanish</media:title>
		</media:content>
	</item>
	</channel>
</rss>
