<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Against All Odds - JSP</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Thu, 23 May 2013 00:02:05 -0700</pubDate>
			<lastBuildDate>Sat, 27 Feb 2010 06:32:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Simple web applications for beginners</title>
				<link>http://www.ppshein.net/index.cfm/2010/2/27/simple-web-applications-for-beginners</link>
				<description>
				
				Today, I&apos;ve no much tasks to do and have most free time. That&apos;s why surfing through websites and seeking open-source dictionary web project written by PHP or JSP. Because I&apos;ve an idea to build free dictionary site for none-profit. And, I don&apos;t want to create such dictionary site throughly by myself. That&apos;s why I want open-source and want to add some useful fuctions in it. At that time, I&apos;ve found &lt;a title=&quot;http://www.gotocode.com&quot; href=&quot;http://www.gotocode.com&quot; target=&quot;_blank&quot;&gt;http://www.gotocode.com&lt;/a&gt; dedicated to web beginners, who want to learn ASP, JSP, PHP and so on. It has some simple applications and allow to download. If you have free spare time, go and visit it.
				
				</description>
				
				
				<category>JSP</category>
				
				<category>PHP</category>
				
				<category>Coldfusion</category>
				
				<category>.NET</category>
				
				<pubDate>Sat, 27 Feb 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/2/27/simple-web-applications-for-beginners</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>The beginning of JSP</title>
				<link>http://www.ppshein.net/index.cfm/2009/4/3/the-beginning-of-jsp</link>
				<description>
				
				There are so many extension-less web programming in Web developement environment such as Ruby, PHP, JSP and so on. Among them, I want to tell about the simple coding of JSP. Honestly, I&apos;m just beginner to learn JSP, especially J2EE. Because, I just want to know some applications based on Sun Java. Ok, let&apos;s go...

Here is simple JSP file and named as &lt;b&gt;greeting.jsp&lt;/b&gt;
&lt;code&gt;
&lt;html&gt;
&lt;body&gt;
	Hello World! &lt;br&gt;
	Current time is &lt;%= new java.util.Date() %&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;/code&gt;
And create &lt;u&gt;&lt;strong&gt;web.xml&lt;/strong&gt;&lt;/u&gt; file and here is coding needed to be in this file.

&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;
&lt;!DOCTYPE web-app PUBLIC &apos;-//Sun Microsystems, Inc.//DTD Web
Application 2.3//EN&apos; &apos;http://java.sun.com/dtd/web-app_2_3.dtd&apos;&gt;
&lt;web-app&gt;
&lt;display-name&gt;Hello2&lt;/display-name&gt;
&lt;description&gt;no description&lt;/description&gt;
&lt;servlet&gt;
&lt;servlet-name&gt;greeting&lt;/servlet-name&gt;
&lt;display-name&gt;greeting&lt;/display-name&gt;
&lt;description&gt;no description&lt;/description&gt;
&lt;!-- what gets called --&gt;
&lt;jsp-file&gt;/greeting.jsp&lt;/jsp-file&gt;
&lt;/servlet&gt;
&lt;servlet-mapping&gt;
&lt;servlet-name&gt;greeting&lt;/servlet-name&gt;
&lt;!-- URL from browser --&gt;
&lt;url-pattern&gt;/greeting&lt;/url-pattern&gt;
&lt;/servlet-mapping&gt;
&lt;/web-app&gt;
&lt;/code&gt;

Then, open tomcat manager and create folder name as &lt;strong&gt;hello&lt;/strong&gt;. Create &lt;strong&gt;build&lt;/strong&gt; folder, then copy above &lt;b&gt;greeting.jsp&lt;/b&gt; file in this folder, then create &lt;b&gt;WEB-INF&lt;/b&gt; folder in &lt;span style=&quot;color:#0000ff;&quot;&gt;build&lt;/span&gt; folder. Finally, &lt;b&gt;web.xml&lt;/b&gt; file into &lt;b&gt;WEB-INF&lt;/b&gt;

Open your Internet Explorer or Firefox, and can run as &lt;b&gt;http://localhost:8080/hello/greeting&lt;/b&gt;. How? It&apos;s quite simple, right?
				
				</description>
				
				
				<category>JSP</category>
				
				<category>J2EE</category>
				
				<pubDate>Fri, 03 Apr 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/4/3/the-beginning-of-jsp</guid>
				
				
			</item>
			
		 	
			</channel></rss>