<?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>JavaTechie</title>
	<atom:link href="http://laxmangunjikar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://laxmangunjikar.wordpress.com</link>
	<description>Its all about Technology</description>
	<lastBuildDate>Tue, 13 Oct 2009 08:53:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='laxmangunjikar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/378f8084ecc53b599df0aac94315b10c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>JavaTechie</title>
		<link>http://laxmangunjikar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://laxmangunjikar.wordpress.com/osd.xml" title="JavaTechie" />
		<item>
		<title>Moved to TechiePark.com &#8211; My Personal site</title>
		<link>http://laxmangunjikar.wordpress.com/2009/08/20/moved-to-techiepark-com-my-personal-site/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/08/20/moved-to-techiepark-com-my-personal-site/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 10:26:01 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=249</guid>
		<description><![CDATA[Hello friends,
I have been moved from here to my personal site &#8211; TechiePark.com. Do visit for more information&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=249&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/08/20/moved-to-techiepark-com-my-personal-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Display specific length string without truncating word in Java</title>
		<link>http://laxmangunjikar.wordpress.com/2009/06/25/display-specific-length-string-without-truncating-word-in-java/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/06/25/display-specific-length-string-without-truncating-word-in-java/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 05:29:46 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[String]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=243</guid>
		<description><![CDATA[public static String textSubString(String text, int start, int end){
String str=&#8221;";
int limit=0;
limit=end;
if(text.length()!=0 &#38;&#38; text!=&#8221;"){
String substr=text.substring(end,end+1);
if(substr!=&#8221;"){
while(!substr.equals(&#8220;&#8221;)){
substr=text.substring(limit,++limit);
substr=substr.trim();
}
}
str=text.substring(start,limit);
}
return str;
}
 Tagged: String      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=243&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/06/25/display-specific-length-string-without-truncating-word-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Java method similar to nl2br in PHP</title>
		<link>http://laxmangunjikar.wordpress.com/2009/06/25/java-method-similar-to-nl2br-in-php/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/06/25/java-method-similar-to-nl2br-in-php/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 05:26:19 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=241</guid>
		<description><![CDATA[public static String nl2br( String text){
return text.replaceAll(&#8220;\n&#8221;,&#8221;&#60;br /&#62;&#8221;);
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=241&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/06/25/java-method-similar-to-nl2br-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Directory index forbidden by Options directive</title>
		<link>http://laxmangunjikar.wordpress.com/2009/06/08/directory-index-forbidden-by-options-directive/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/06/08/directory-index-forbidden-by-options-directive/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 12:29:20 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=233</guid>
		<description><![CDATA[I was going through error log and saw this error in error log file. To solve this problem, In /etc/httpd/conf.d you will see a file entitled welcome.conf
It looks like this:
&#60;LocationMatch &#8220;^/+$&#8221;&#62;
Options -Indexes
ErrorDocument 403 /error/noindex.html
&#60;/LocationMatch&#62;
Change it to this:
&#60;LocationMatch &#8220;^/+$&#8221;&#62;
Options Indexes
ErrorDocument 403 /error/noindex.html
&#60;/LocationMatch&#62;
Just remove the hyppen(-) before the Indexes, that&#8217;s it. I hope this will solve your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=233&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/06/08/directory-index-forbidden-by-options-directive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Make sshd listen to a specific address</title>
		<link>http://laxmangunjikar.wordpress.com/2009/06/08/make-sshd-listen-to-a-specific-address/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/06/08/make-sshd-listen-to-a-specific-address/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 12:10:26 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=231</guid>
		<description><![CDATA[In file /etc/ssh/sshd_config,
use
ListenAddress 192.168.0.1
to make sshd listen to only that address.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=231&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/06/08/make-sshd-listen-to-a-specific-address/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP- session Example</title>
		<link>http://laxmangunjikar.wordpress.com/2009/06/03/php-session-example/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/06/03/php-session-example/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 12:33:46 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=229</guid>
		<description><![CDATA[&#60;?php
// Initialize the session.
session_start();
//store values 
$_SESSION['favcolor'] = 'green';
$_SESSION['animal']   = 'cat';
$_SESSION['time']     = time();
//print stored values 
echo $_SESSION['favcolor']; // green
echo $_SESSION['animal']; // cat
echo date('Y m d H:i:s', $_SESSION['time']);
// Unset all of the session variables.
$_SESSION = array();
// Finally, destroy the session.
session_destroy();
?&#62;

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=229&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/06/03/php-session-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Outlook 2002 &#8211; The messaging interface has returned an unknown error</title>
		<link>http://laxmangunjikar.wordpress.com/2009/05/28/outlook-2002-the-messaging-interface-has-returned-an-unknown-error/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/05/28/outlook-2002-the-messaging-interface-has-returned-an-unknown-error/#comments</comments>
		<pubDate>Thu, 28 May 2009 12:46:52 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[otlook 2002]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2009/05/28/outlook-2002-the-messaging-interface-has-returned-an-unknown-error/</guid>
		<description><![CDATA[Basically this message comes when the outlook storage capacity is full
Outlook, It can&#8217;t hold one more message.
You can&#8217;t delete because the message is only going to another folder inside the file cabinet.
Can&#8217;t send &#8211; no space to hold the message.
Super easy fix is -
In any folder, deleted, sent, inbox click on a message you want [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=228&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/05/28/outlook-2002-the-messaging-interface-has-returned-an-unknown-error/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Serving Image from Absolute Path in Java/J2EE</title>
		<link>http://laxmangunjikar.wordpress.com/2009/04/27/serving-image-from-absolute-path-in-javaj2ee/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/04/27/serving-image-from-absolute-path-in-javaj2ee/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:20:49 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Servlet]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=210</guid>
		<description><![CDATA[import java.io.*;
import java.net.URLDecoder;
import javax.servlet.*;
import javax.servlet.http.*;
/**
 * Serving Image from Absolute Path.
 */
public class ImageServAbsolutePath extends HttpServlet {
	private static final long serialVersionUID = 1L;
	private static final int BUFFER_SIZE = 10240;
        private String imagePath;
    public void init() throws ServletException {
    	/*&#8212;&#8212;- Image Base Path [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=210&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/04/27/serving-image-from-absolute-path-in-javaj2ee/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Find and Replace Text in MySQL</title>
		<link>http://laxmangunjikar.wordpress.com/2009/03/25/how-to-find-and-replace-text-in-mysql/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/03/25/how-to-find-and-replace-text-in-mysql/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 05:55:34 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=193</guid>
		<description><![CDATA[MySQL database has a simple string function REPLACE() that allows table data with the matching string (from) to be replaced by new string.
The syntax of REPLACE is REPLACE(text_string, from_string, to_string)
example:
update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’);
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=193&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/03/25/how-to-find-and-replace-text-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
		<item>
		<title>Apache 2.x + Tomcat 4.x + Load Balancing</title>
		<link>http://laxmangunjikar.wordpress.com/2009/02/12/apache-2x-tomcat-4x-load-balancing/</link>
		<comments>http://laxmangunjikar.wordpress.com/2009/02/12/apache-2x-tomcat-4x-load-balancing/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 10:41:02 +0000</pubDate>
		<dc:creator>javatechie</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mod JK]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=177</guid>
		<description><![CDATA[This article contains step by step instructions for configuring an Apache 2.x web server which handles static content and delegates JSP (Java Server Pages) and Servlet  requests to two Tomcat 4.x servers using AJP 13 connectors  and a load balancing worker.
Introduction
Apache 2.0 is a standards compliant, fast and mature web    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=laxmangunjikar.wordpress.com&blog=2047902&post=177&subd=laxmangunjikar&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://laxmangunjikar.wordpress.com/2009/02/12/apache-2x-tomcat-4x-load-balancing/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fae5696980015ab2d798749950e319ff?s=96&#38;d=identicon" medium="image">
			<media:title type="html">javatechie</media:title>
		</media:content>
	</item>
	</channel>
</rss>