<?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 - J2EE</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>Tue, 21 May 2013 14:36:21 -0700</pubDate>
			<lastBuildDate>Sun, 12 Apr 2009 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>Coldfusion and J2EE</title>
				<link>http://www.ppshein.net/index.cfm/2009/4/12/coldfusion-and-j2ee</link>
				<description>
				
				Normally, different language of web programmings are not easy to integrate in the same web page. Although you want to integrate two programming languages in the same webpage, you gotta separate such coding in different portion in &lt;span style=&quot;color:#0000ff;&quot;&gt;&lt;invalidTag&gt;&lt;/span&gt; tag or something else. In CFMX, you don&apos;t need to do like anymore. If you wanna embed in J2EE tags in CFM page, use &lt;span style=&quot;color:#0000ff;&quot;&gt;&lt;cfimport&gt;&lt;/span&gt; tag then. Here is simple coding :

&lt;code&gt;
&lt;cfimport taglib=&quot;/WEB-INF/lib/random.jar&quot; prefix=&quot;myrand&quot;&gt;
&lt;myrand:number id=&quot;randPass&quot; range=&quot;000000-999999&quot; algorithm=&quot;SHA1PRNG&quot; provider=&quot;SUN&quot; /&gt;
&lt;cfset myPassword = randPass.random&gt;
&lt;cfoutput&gt;
Your password is #myPassword#&lt;br&gt;
&lt;/cfoutput&gt;
&lt;/code&gt;

Big Credit to : &lt;a title=&quot;http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/Java3.htm#1134309&quot; href=&quot;http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/Java3.htm#1134309&quot; target=&quot;_blank&quot;&gt;http://livedocs.adobe.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/Java3.htm#1134309&lt;/a&gt;
				
				</description>
				
				
				<category>CF Function</category>
				
				<category>Coldfusion</category>
				
				<category>J2EE</category>
				
				<category>CF Tag</category>
				
				<pubDate>Sun, 12 Apr 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/4/12/coldfusion-and-j2ee</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>