<?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>Mahendra's Weblog</title>
	<atom:link href="http://mranaw01.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mranaw01.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 26 Jun 2008 05:08:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mranaw01.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mahendra's Weblog</title>
		<link>http://mranaw01.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mranaw01.wordpress.com/osd.xml" title="Mahendra&#039;s Weblog" />
	<atom:link rel='hub' href='http://mranaw01.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XMl work Shop 21</title>
		<link>http://mranaw01.wordpress.com/2008/06/26/xml-work-shop-21/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/26/xml-work-shop-21/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 05:08:06 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[XML WORKSHOPS]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=39</guid>
		<description><![CDATA[Here is another example where xml is created form a database query. In this case &#8220;for xml&#8221; clause is not used in the query since the format of the xml file needs to be a custom one. otherwise the xml document could have been created using only few code lines. [WebMethod]     public XmlDocument  Get_CC4(string [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=39&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is another example where xml is created form a database query. In this case &#8220;for xml&#8221; clause is not used in the query since the format of the xml file needs to be a custom one. otherwise the xml document could have been created using only few code lines.</p>
<p>[WebMethod]<br />
    public XmlDocument  Get_CC4(string CC)<br />
    {</p>
<p>        CC = &#8220;KSMG01&#8243; + CC.Trim();<br />
        //YEAR = YEAR.Trim();<br />
        //PERIOD = PERIOD.Trim();<br />
        SqlCommand cmd = new SqlCommand();<br />
        cmd.Connection = new SqlConnection(&#8220;server=xx;database=xx;Integrated Security=SSPI&#8221;);<br />
        cmd.CommandType = CommandType.Text;<br />
        cmd.CommandText = &#8221; SELECT SUBSTRING(KSTAR,7,4) AS AC,&#8221; +<br />
                            &#8221; WKGBTR AS AMT&#8221; +<br />
                            &#8221; FROM costcenter&#8221; +<br />
                            &#8221; WHERE GJAHR = &#8217;2008&#8242; AND OBJNR = &#8216;&#8221; + CC + &#8220;&#8216; AND  PERIO &lt;= &#8217;03&#8242; &#8221; +<br />
                            &#8221; ORDER BY KSTAR&#8221;;</p>
<p>        cmd.Connection.Open();<br />
        SqlDataReader xr = cmd.ExecuteReader();<br />
        XmlDataDocument xd = new XmlDataDocument();<br />
        //create XML declaration section<br />
        //XmlNode xn = xd.CreateNode(XmlNodeType.XmlDeclaration, &#8220;&#8221;, &#8220;&#8221;);<br />
        //xd.AppendChild(xn);<br />
        XmlElement xe0, xe1, xe2, xe31, xe32;<br />
        //create the root element<br />
        xe0 = xd.CreateElement(&#8220;data&#8221;);<br />
        xd.AppendChild(xe0);<br />
        xe1 = xd.CreateElement(&#8220;variable&#8221;);<br />
        xe1.SetAttributeNode(&#8220;name&#8221;, &#8220;&#8221;);<br />
        xe1.SetAttribute(&#8220;name&#8221;, &#8220;&#8221;, &#8220;cc&#8221;);<br />
        xe0.AppendChild(xe1);<br />
        XmlText xt;<br />
        xe2 = xd.CreateElement(&#8220;row&#8221;);<br />
        xe1.AppendChild(xe2);<br />
        xe31 = xd.CreateElement(&#8220;column&#8221;);<br />
        xt = xd.CreateTextNode(&#8220;ac&#8221;);<br />
        xe31.AppendChild(xt);<br />
        xe2.AppendChild(xe31);<br />
        xe32 = xd.CreateElement(&#8220;column&#8221;);<br />
        xt = xd.CreateTextNode(&#8220;amt&#8221;);<br />
        xe32.AppendChild(xt);<br />
        xe2.AppendChild(xe32);<br />
        while (xr.Read())<br />
        {<br />
            xe2 = xd.CreateElement(&#8220;row&#8221;);<br />
            xe1.AppendChild(xe2);<br />
            xe31 = xd.CreateElement(&#8220;column&#8221;);<br />
            xt = xd.CreateTextNode(xr.GetString(0));<br />
            xe31.AppendChild(xt);<br />
            xe2.AppendChild(xe31);<br />
            xe32 = xd.CreateElement(&#8220;column&#8221;);<br />
            xt = xd.CreateTextNode(Convert.ToString(xr.GetSqlDecimal(1)));<br />
            xe32.AppendChild(xt);<br />
            xe2.AppendChild(xe32);<br />
        }<br />
        xr.Close();<br />
        cmd.Connection.Close(); ;<br />
        //DataSet xdd = xdaSet;<br />
        return xd;<br />
    }</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=39&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/26/xml-work-shop-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>publishing a windows media vedio in a web page</title>
		<link>http://mranaw01.wordpress.com/2008/06/26/publishing-a-windows-media-vedio-in-a-web-page/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/26/publishing-a-windows-media-vedio-in-a-web-page/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 03:49:36 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[DATA CONNECTION AND DELIVERY TECHNIQUES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=35</guid>
		<description><![CDATA[&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8220;&#62; &#60;head runat=&#8221;server&#8221;&#62;     &#60;title&#62;Untitled Page&#60;/title&#62; &#60;/head&#62; &#60;body&#62;     &#60;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&#62;     &#60;div&#62;      &#60;asp:ScriptManager ID=&#8221;ScriptManager1&#8243; runat=&#8221;server&#8221;&#62;         &#60;/asp:ScriptManager&#62;         &#60;br /&#62;     &#60;/div&#62;     &#60;asp:MediaPlayer ID=&#8221;MediaPlayer1&#8243; runat=&#8221;server&#8221; Height=&#8221;240px&#8221;         MediaSkinSource=&#8221;~/Professional.xaml&#8221; MediaSource=&#8221;~/media/VTS_02_1_WMV V8.wmv&#8221;         PlaceholderSource=&#8221;~/img/Defibrillator.jpg&#8221; Width=&#8221;320px&#8221; ScaleMode=&#8221;Zoom&#8221; &#62;         &#60;Chapters&#62;         &#60;asp:MediaChapter Position=&#8221;120&#8243;                 Title=&#8221;Chapter1&#8243; ThumbnailSource=&#8221;~/img/nurse1.jpg&#8221; /&#62;         &#60;asp:MediaChapter Position=&#8221;240&#8243; Title=&#8221;Chapter2&#8243;             ThumbnailSource=&#8221;~/img/nurse2.jpg&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=35&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;html xmlns=&#8221;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&#8220;&gt;<br />
&lt;head runat=&#8221;server&#8221;&gt;<br />
    &lt;title&gt;Untitled Page&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
    &lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;<br />
    &lt;div&gt;<br />
     &lt;asp:ScriptManager ID=&#8221;ScriptManager1&#8243; runat=&#8221;server&#8221;&gt;<br />
        &lt;/asp:ScriptManager&gt;<br />
        &lt;br /&gt;<br />
    &lt;/div&gt;<br />
    &lt;asp:MediaPlayer ID=&#8221;MediaPlayer1&#8243; runat=&#8221;server&#8221; Height=&#8221;240px&#8221;<br />
        MediaSkinSource=&#8221;~/Professional.xaml&#8221; MediaSource=&#8221;~/media/VTS_02_1_WMV V8.wmv&#8221;<br />
        PlaceholderSource=&#8221;~/img/Defibrillator.jpg&#8221; Width=&#8221;320px&#8221; ScaleMode=&#8221;Zoom&#8221; &gt;<br />
        &lt;Chapters&gt;<br />
        &lt;asp:MediaChapter Position=&#8221;120&#8243;<br />
                Title=&#8221;Chapter1&#8243; ThumbnailSource=&#8221;~/img/nurse1.jpg&#8221; /&gt;<br />
        &lt;asp:MediaChapter Position=&#8221;240&#8243; Title=&#8221;Chapter2&#8243;<br />
            ThumbnailSource=&#8221;~/img/nurse2.jpg&#8221; /&gt;<br />
        &lt;/Chapters&gt;<br />
        &lt;/asp:MediaPlayer&gt;<br />
    &lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=35&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/26/publishing-a-windows-media-vedio-in-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Exercise 7</title>
		<link>http://mranaw01.wordpress.com/2008/06/19/exercise-7/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/19/exercise-7/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 07:02:01 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[EXERCISES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=33</guid>
		<description><![CDATA[Hello.aspx &#60;%@ Page language=&#8221;c#&#8221; Codebehind=&#8221;Hello.aspx.cs&#8221; AutoEventWireup=&#8221;false&#8221; Inherits=&#8221;Exercise7.Hello&#8221; %&#62; &#60;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.0 Transitional//EN&#8221; &#62; &#60;HTML&#62;  &#60;HEAD&#62;   &#60;title&#62;WebForm1&#60;/title&#62;  &#60;/HEAD&#62;  &#60;body&#62;   &#60;form id=&#8221;Form1&#8243; method=&#8221;post&#8221; runat=&#8221;server&#8221;&#62;    &#60;P&#62;What&#8217;s your Name?     &#60;asp:TextBox id=&#8221;TextBox1&#8243; runat=&#8221;server&#8221;&#62;&#60;/asp:TextBox&#62;&#60;/P&#62;    &#60;P&#62;     &#60;asp:Button id=&#8221;Button1&#8243; runat=&#8221;server&#8221; Text=&#8221;Submit&#8221;&#62;&#60;/asp:Button&#62;&#60;/P&#62;    &#60;P&#62;&#8221;Hello , &#8220;,     &#60;asp:Label id=&#8221;Label1&#8243; runat=&#8221;server&#8221;&#62;Label&#60;/asp:Label&#62;&#60;/P&#62;   &#60;/form&#62;  &#60;/body&#62; &#60;/HTML&#62;   Hello.aspx.cs code behinde page Button click event handler code [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=33&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello.aspx</p>
<p>&lt;%@ Page language=&#8221;c#&#8221; Codebehind=&#8221;Hello.aspx.cs&#8221; AutoEventWireup=&#8221;false&#8221; Inherits=&#8221;Exercise7.Hello&#8221; %&gt;<br />
&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.0 Transitional//EN&#8221; &gt;<br />
&lt;HTML&gt;<br />
 &lt;HEAD&gt;<br />
  &lt;title&gt;WebForm1&lt;/title&gt;<br />
 &lt;/HEAD&gt;<br />
 &lt;body&gt;<br />
  &lt;form id=&#8221;Form1&#8243; method=&#8221;post&#8221; runat=&#8221;server&#8221;&gt;<br />
   &lt;P&gt;What&#8217;s your Name?<br />
    &lt;asp:TextBox id=&#8221;TextBox1&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;&lt;/P&gt;<br />
   &lt;P&gt;<br />
    &lt;asp:Button id=&#8221;Button1&#8243; runat=&#8221;server&#8221; Text=&#8221;Submit&#8221;&gt;&lt;/asp:Button&gt;&lt;/P&gt;<br />
   &lt;P&gt;&#8221;Hello , &#8220;,<br />
    &lt;asp:Label id=&#8221;Label1&#8243; runat=&#8221;server&#8221;&gt;Label&lt;/asp:Label&gt;&lt;/P&gt;<br />
  &lt;/form&gt;<br />
 &lt;/body&gt;<br />
&lt;/HTML&gt;</p>
<p> </p>
<p>Hello.aspx.cs code behinde page</p>
<p>Button click event handler code</p>
<p>private void Button1_Click(object sender, System.EventArgs e)<br />
  {<br />
   Label1.Text=TextBox1.Text;<br />
  }</p>
<p>Result</p>
<p>&#8220;Hello , &#8220;, <span>Mahendra</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=33&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/19/exercise-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://mranaw01.wordpress.com/2008/06/19/32/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/19/32/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 06:35:32 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[RESEARCH NOTES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=32</guid>
		<description><![CDATA[http://en.wikipedia.org/wiki/Secure_Shell https://www.sdn.sap.com/irj/sdn/maxdb http://java.sun.com/products/jndi/tutorial/index.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=32&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:12pt;"><span style="font-size:10pt;line-height:115%;"><span style="text-decoration:underline;"><span style="color:#0000ff;"><a href="http://en.wikipedia.org/wiki/Secure_Shell">http://en.wikipedia.org/wiki/Secure_Shell</a></span></span></span></span></p>
<p class="MsoNormal"><span style="font-size:12pt;"><span style="font-size:10pt;line-height:115%;"><span style="text-decoration:underline;"><span style="color:#0000ff;"><a href="https://www.sdn.sap.com/irj/sdn/maxdb">https://www.sdn.sap.com/irj/sdn/maxdb</a></span></span></span></span></p>
<p class="MsoNormal"><span style="font-size:12pt;"><span style="font-size:10pt;line-height:115%;"><span style="text-decoration:underline;"><span style="color:#0000ff;"><a href="http://java.sun.com/products/jndi/tutorial/index.html">http://java.sun.com/products/jndi/tutorial/index.html</a></span></span><a href="http://java.sun.com/products/jndi/tutorial/index.html"></a></span></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=32&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/19/32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Non Technical Report &#8211; Data Connectivity and Delivery in client server Environment</title>
		<link>http://mranaw01.wordpress.com/2008/06/19/non-technical-report-data-connectivity-and-delivery-in-client-server-environment/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/19/non-technical-report-data-connectivity-and-delivery-in-client-server-environment/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 06:33:54 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[REPORTS]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=31</guid>
		<description><![CDATA[       Most of the client server and e-commerce environments have some form of persistent data. Hence Data connectivity and delivery from these persistent storages takes a major role in client server environments.        Some of more popular data connectivity techniques are jdbc (java database connectivity )  which is used for java language to connect to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=31&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>       Most of the client server and e-commerce environments have some form of persistent data. Hence Data connectivity and delivery from these persistent storages takes a major role in client server environments.<br />
       Some of more popular data connectivity techniques are jdbc (java database connectivity )  which is used for java language to connect to various databases. Like jdbc, odbc (open database connectivity) and oledb (Object Linking and Embedding, Database) used in Microsoft windows platform to connect to various forms of data sources ranging from text files to databases.<br />
         There are numerous types of content that’s delivered across networks. For example media forms like voice over IP, images, Music, Video becoming increasing popular over the internet. Due to firewall restrictions and vendor independence xml is also becoming popular form of data delivery.<br />
          When it comes to data delivery security seems to be one of main concerns. Hence comes encrypted data delivery techniques like https (hyper text transfer protocol secure) and SSH (secure shell). This allows confidentially of data deliverd over public network like internet.<br />
         Also as volume of data that’s delivered across net works increases compression techniques and streaming techniques become increasingly important. Pdf ,zip ,rar for files and jpeg for image and mpeg for audio and video are some popular forms of compress content types.   </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=31&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/19/non-technical-report-data-connectivity-and-delivery-in-client-server-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Technical Report &#8211; Data Connectivity and Delivery in client server Environment</title>
		<link>http://mranaw01.wordpress.com/2008/06/18/technical-report-%e2%80%93-data-connection-techniques-in-client-server-environment/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/18/technical-report-%e2%80%93-data-connection-techniques-in-client-server-environment/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 07:20:10 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[REPORTS]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=30</guid>
		<description><![CDATA[          Following article is about two different database /directory connection techniques that can be used in a client server or e commerce environment. Focus here is on brief overview and a sample of each technique,  rather than the architecture. Sqlxml    SqlXml Gives ability to do curd operations using xml over http for databases (Oracle, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=30&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>          Following article is about two different database /directory connection techniques that can be used in a client server or e commerce environment. Focus here is on brief overview and a sample of each technique,  rather than the architecture.<br />
<strong></strong></p>
<p><strong>Sqlxml <br />
</strong>  SqlXml Gives ability to do curd operations using xml over http for databases (Oracle, Ms) . It is an easy to setup and only needs the database and web server. But best use to get an xml output from a sql query over http due to security concerns.<br />
oracle’s provides this feature using  xsql servlet in a servlet container like tomcat. Similarly with Ms Sql server this feature is available with IIS (Internet information server).<br />
Following is sample template for IIS.<br />
&lt;Root xmlns:sql=”urn:schemas-microsoft-com:xml-sql”&gt;<br />
&lt;sql:header&gt;<br />
&lt;sql:param name=”YEAR”&gt;&lt;/sql:param&gt;<br />
&lt;/sql:header&gt;<br />
&lt;sql:query&gt;<br />
select ac,amt<br />
from costcenter<br />
WHERE year = @YEAR <br />
FOR XML RAW ,XMLDATA<br />
&lt;/sql:query&gt;<br />
&lt;/Root&gt;</p>
<p><strong>JNDI<br />
</strong> The Java Naming and Directory InterfaceTM (JNDI) is an application programming interface (API) that provides naming and directory functionality to applications written using the JavaTM programming language. It is defined to be independent of any specific directory service implementation.<br />
      In following a java base application residing in tomcat use AD (active directory) to authenticate its users. This is useful in an intranet and extranet application. Example if the contractors working for a company is given AD accounts and roles to grant various access rights.<br />
   following sample connection string in server.xml helps to establish the connection with AD.</p>
<p>&lt;Realm className=”org.apache.catalina.realm.JNDIRealm” debug=”99″ connectionURL=”ldap://ldapserver:port” userBase=”OU= Contractors ,DC=..” userSearch=”(sAMAccountName={0})” userRoleName=”member” roleBase=”OU= Contractors,DC=…” roleName=”CN” roleSearch=”member={0}” connectionName=”CN=User,CN=Users,DC=..” connectionPassword=”xxx” roleSubtree=”true” userSubtree=”true” /&gt;<br />
Then in web.xml file of the application use the relevant security roles and constraints from AD to authenticate users.<br />
<strong></strong></p>
<p><strong>Conclusion<br />
</strong> New Data connection techniques emerge all the time in client server environment.  Table adapter and Linq are two such techniques. Some of these techniques help abstraction of data layer from others quite well. For example Table adapter followers table data gateway design pattern described by Martin Flower.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=30&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/18/technical-report-%e2%80%93-data-connection-techniques-in-client-server-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Use of table data gateway</title>
		<link>http://mranaw01.wordpress.com/2008/06/17/use-of-table-data-gateway/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/17/use-of-table-data-gateway/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 07:22:06 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[DATA CONNECTION AND DELIVERY TECHNIQUES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=29</guid>
		<description><![CDATA[When use table adapter pattern in a data set to connect to database most of the time there is no coding necessary. use a asp:ObjectDataSource control to rfer to the table adapter object and then use that data source in the control similar to following   aspx page &#60;ItemTemplate&#62;                         &#60;asp:DropDownList ID=&#8221;DropDownList1&#8243; runat=&#8221;server&#8221;                             DataSourceID=&#8221;ObjectLUShift&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=29&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When use table adapter pattern in a data set to connect to database most of the time there is no coding necessary.<br />
use a asp:ObjectDataSource control to rfer to the table adapter object and then use that data source in the control<br />
similar to following</p>
<p> <br />
aspx page<br />
&lt;ItemTemplate&gt;<br />
                        &lt;asp:DropDownList ID=&#8221;DropDownList1&#8243; runat=&#8221;server&#8221;<br />
                            DataSourceID=&#8221;ObjectLUShift&#8221; DataTextField=&#8221;Shift&#8221; DataValueField=&#8221;ShiftNumber&#8221;<br />
                            SelectedValue=&#8217;&lt;%# Eval(&#8220;ShiftNumber&#8221;) %&gt;&#8217; &gt;<br />
                        &lt;/asp:DropDownList&gt;<br />
                        &lt;asp:ObjectDataSource ID=&#8221;ObjectLUShift&#8221; runat=&#8221;server&#8221;<br />
                            OldValuesParameterFormatString=&#8221;original_{0}&#8221; SelectMethod=&#8221;GetShift&#8221;<br />
                            TypeName=&#8221;LogTableAdapters.LUShiftTableAdapter&#8221;&gt;&lt;/asp:ObjectDataSource&gt;<br />
                    &lt;/ItemTemplate&gt;</p>
<p>But if programmatically needs to access the table adapters sample code would be bit similar to following<br />
All the connection info and query is with data access layer (data set and table adapters in it.)</p>
<p>aspx.cs page</p>
<p>FutureTrainingCoursesTableAdapter FutureTrainingCoursesAdapter = new FutureTrainingCoursesTableAdapter();<br />
Training.FutureTrainingCoursesDataTable FutureTrainingCoursesTable = new Training.FutureTrainingCoursesDataTable();<br />
FutureTrainingCoursesTable = FutureTrainingCoursesAdapter.GetCurrentTraining2();<br />
foreach (Training.FutureTrainingCoursesRow Row in FutureTrainingCoursesTable)<br />
        {<br />
           Id = Convert.ToString(Row.ID);<br />
            </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=29&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/17/use-of-table-data-gateway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration settings for  JNDI base Authenticate against a Ladp directory in Tomcat</title>
		<link>http://mranaw01.wordpress.com/2008/06/17/configuration-settings-for-jndi-base-authenticate-against-a-ladp-directory-in-tomcat/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/17/configuration-settings-for-jndi-base-authenticate-against-a-ladp-directory-in-tomcat/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 06:50:23 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[DATA CONNECTION AND DELIVERY TECHNIQUES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=27</guid>
		<description><![CDATA[Configuration settings for  JNDI base Authenticate against a Ladp directory in Tomcat configuration settings server.xml in conf directory &#60;Realm className=&#8221;org.apache.catalina.realm.JNDIRealm&#8221; debug=&#8221;99&#8243; connectionURL=&#8221;ldap://ldapserver:port&#8221; userBase=&#8221;OU= Contractors ,DC=Company,DC=com,DC=au&#8221; userSearch=&#8221;(sAMAccountName={0})&#8221; userRoleName=&#8221;member&#8221; roleBase=&#8221;OU= Contractors,DC=company,DC=com,DC=au&#8221; roleName=&#8221;CN&#8221; roleSearch=&#8221;member={0}&#8221; connectionName=&#8221;CN=TomcatUser,CN=Users,DC=company,DC=com,DC=au&#8221; connectionPassword=&#8221;xxx&#8221; roleSubtree=&#8221;true&#8221; userSubtree=&#8221;true&#8221; /&#62; web.xml &#60;security-role&#62;       &#60;description&#62;         The role that is required to log in to the Midnight Readings Application       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=27&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Configuration settings for  JNDI base Authenticate against a Ladp directory in Tomcat<br />
configuration settings<br />
server.xml in conf directory<br />
&lt;Realm className=&#8221;org.apache.catalina.realm.JNDIRealm&#8221; debug=&#8221;99&#8243; connectionURL=&#8221;<a href="port">ldap://ldapserver:port</a>&#8221; userBase=&#8221;OU= Contractors ,DC=Company,DC=com,DC=au&#8221; userSearch=&#8221;(sAMAccountName={0})&#8221; userRoleName=&#8221;member&#8221; roleBase=&#8221;OU= Contractors,DC=company,DC=com,DC=au&#8221; roleName=&#8221;CN&#8221; roleSearch=&#8221;member={0}&#8221; connectionName=&#8221;CN=TomcatUser,CN=Users,DC=company,DC=com,DC=au&#8221; connectionPassword=&#8221;xxx&#8221; roleSubtree=&#8221;true&#8221; userSubtree=&#8221;true&#8221; /&gt;</p>
<p>web.xml<br />
&lt;security-role&gt;<br />
      &lt;description&gt;<br />
        The role that is required to log in to the Midnight Readings Application<br />
      &lt;/description&gt;<br />
      &lt;role-name&gt;contractor&lt;/role-name&gt;<br />
  &lt;/security-role&gt;</p>
<p>&lt;login-config&gt;<br />
  &lt;auth-method&gt;FORM&lt;/auth-method&gt;<br />
  &lt;realm-name&gt;Readings&lt;/realm-name&gt;<br />
  &lt;form-login-config&gt;<br />
   &lt;form-login-page&gt;/login.html&lt;/form-login-page&gt;<br />
   &lt;form-error-page&gt;/error.html&lt;/form-error-page&gt;<br />
  &lt;/form-login-config&gt;<br />
  &lt;realm-name&gt;Readings&lt;/realm-name&gt;<br />
  &lt;/login-config&gt;<br />
&lt;security-constraint&gt;<br />
 &lt;web-resource-collection&gt;<br />
  &lt;web-resource-name&gt;Readings&lt;/web-resource-name&gt;<br />
  &lt;url-pattern&gt;/*&lt;/url-pattern&gt;<br />
  &lt;/web-resource-collection&gt;<br />
 &lt;auth-constraint&gt;<br />
  &lt;role-name&gt;contractor&lt;/role-name&gt;<br />
  &lt;/auth-constraint&gt;<br />
  &lt;/security-constraint&gt;</p>
<p>login.html<br />
&lt;form method=&#8221;POST&#8221; action=&#8221;j_security_check&#8221; name=&#8221;loginForm&#8221;&gt;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=27&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/17/configuration-settings-for-jndi-base-authenticate-against-a-ladp-directory-in-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Exercise 2</title>
		<link>http://mranaw01.wordpress.com/2008/06/17/exercise-2/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/17/exercise-2/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 04:56:59 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[EXERCISES]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=26</guid>
		<description><![CDATA[Service as a Delivery site which implements ITIL principles. https://www.service-now.com/ Service-now.com is the pioneer of On Demand IT Service Management. Combining ITIL v3 guidelines with Web 2.0 technology, we offer Software as a Service that is thoroughly modern in its delivery, price, and value. Approachable and attractive, integrated and complete, designed for the Global 2,000.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=26&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Service as a Delivery site which implements ITIL principles.<br />
<a href="https://www.service-now.com/">https://www.service-now.com/</a><br />
Service-now.com is the pioneer of On Demand IT Service Management. Combining ITIL v3 guidelines with Web 2.0 technology, we offer Software as a Service that is thoroughly modern in its delivery, price, and value. Approachable and attractive, integrated and complete, designed for the Global 2,000.  You&#8217;ve never seen IT management done like this before..</strong></p>
<p><strong>A direct debit service provider<br />
<a href="http://www.ezypay.com.au/Default.aspx">http://www.ezypay.com.au/Default.aspx</a><br />
Ezypay is an outsourced direct debit service provider dedicated to offering a payment collection system to assist businesses regulate their cash flow and revenue without the hassle of managing customers&#8217; bills.</strong></p>
<p><strong>M-commerce site<br />
<a href="http://www.mobillcash.com/">http://www.mobillcash.com/</a><br />
Mobillcash is an m-commerce billing platform that integrates with network operators around the world, making it possible for consumers to pay for online services and products with their mobile phone.<br />
In much the same way that an e-commerce billing platform takes payment from a credit or debit card, Mobillcash m-commerce billing platform takes payment from a mobile phone.</strong></p>
<p><strong>An E-shop<br />
<a href="http://shop.microsoft.com">http://shop.microsoft.com</a><br />
Microsoft Online Store, an electronic commerce site on the Web that makes it easy for consumers to acquire Microsoft products either directly from Microsoft or from participating resellers</strong></p>
<p><strong>Bit  like a e procurement site<br />
<a href="https://tenders.nsw.gov.au/nsw/">https://tenders.nsw.gov.au/nsw/</a><br />
Here you will find the most recent information about NSW business opportunities.<br />
This website lists upcoming, current and closed business opportunities that have been provided by agencies. This site also provides details of awarded contracts over $150,000 in value.<br />
</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=26&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/17/exercise-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
		<item>
		<title>Xml Workshop 3</title>
		<link>http://mranaw01.wordpress.com/2008/06/15/xml-workshop-3/</link>
		<comments>http://mranaw01.wordpress.com/2008/06/15/xml-workshop-3/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 13:42:16 +0000</pubDate>
		<dc:creator>mranaw01</dc:creator>
				<category><![CDATA[XML WORKSHOPS]]></category>

		<guid isPermaLink="false">http://mranaw01.wordpress.com/?p=24</guid>
		<description><![CDATA[For step 1 Created the  airportDTD.xml with internal DTD as per  following code   &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243; standalone=&#8221;yes&#8221; ?&#62; &#60;!DOCTYPE airports[ &#60;!ELEMENT airports (airport+)&#62; &#60;!ELEMENT airport (city,name, runway+) &#62; &#60;!ATTLIST airport code CDATA #REQUIRED&#62; &#60;!ELEMENT city (#PCDATA) &#62; &#60;!ELEMENT name (#PCDATA) &#62; &#60;!ELEMENT runway (heading, length, width?) &#62; &#60;!ATTLIST runway number (1&#124;2&#124;3&#124;..) #REQUIRED&#62; &#60;!ELEMENT heading [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=24&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;">For step 1</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;">Created the <span> </span>airportDTD.xml with internal DTD as per<span>  </span>following code</span></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243; standalone=&#8221;yes&#8221; ?&gt;<br />
&lt;!DOCTYPE airports[<br />
&lt;!ELEMENT airports (airport+)&gt;<br />
&lt;!ELEMENT airport (city,name, runway+) &gt;<br />
&lt;!ATTLIST airport code CDATA #REQUIRED&gt;<br />
&lt;!ELEMENT city (#PCDATA) &gt;<br />
&lt;!ELEMENT name (#PCDATA) &gt;<br />
&lt;!ELEMENT runway (heading, length, width?) &gt;<br />
&lt;!ATTLIST runway number (1|2|3|..) #REQUIRED&gt;<br />
&lt;!ELEMENT heading (#PCDATA) &gt;<br />
&lt;!ELEMENT length (#PCDATA) &gt;<br />
&lt;!ELEMENT width (#PCDATA)&gt;<br />
]&gt;<br />
&lt;airports&gt;<br />
 &lt;airport code=&#8221;AKL&#8221;&gt;<br />
  &lt;city&gt;Auckland&lt;/city&gt;<br />
  &lt;name&gt;Auckland International&lt;/name&gt;<br />
  &lt;runway number=&#8221;1&#8243;&gt;<br />
   &lt;heading&gt;05/23&lt;/heading&gt;<br />
   &lt;length&gt;3635&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
 &lt;/airport&gt;</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;"> &lt;airport code=&#8221;SYD&#8221;&gt;<br />
  &lt;city&gt;Sydney&lt;/city&gt;<br />
  &lt;name&gt;Kingsford-Smith&lt;/name&gt;<br />
  &lt;runway number=&#8221;1&#8243;&gt;<br />
   &lt;heading&gt;16R/34L&lt;/heading&gt;<br />
   &lt;length&gt;3962&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
  &lt;runway number=&#8221;2&#8243;&gt;<br />
   &lt;heading&gt;16R/34R&lt;/heading&gt;<br />
   &lt;length&gt;2438&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
  &lt;runway number=&#8221;3&#8243;&gt;<br />
   &lt;heading&gt;07/25&lt;/heading&gt;<br />
   &lt;length&gt;2539&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
 &lt;/airport&gt;</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;"> &lt;airport code=&#8221;BKK&#8221;&gt;<br />
  &lt;city&gt;Bangkok&lt;/city&gt;<br />
  &lt;name&gt;Don Muang International&lt;/name&gt;<br />
  &lt;runway number=&#8221;1&#8243;&gt;<br />
   &lt;heading&gt;03L/21R&lt;/heading&gt;<br />
   &lt;length&gt;3700&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
  &lt;runway number=&#8221;2&#8243;&gt;<br />
   &lt;heading&gt;03R/21L&lt;/heading&gt;<br />
   &lt;length&gt;3500&lt;/length&gt;<br />
   &lt;width&gt;&#8230;&lt;/width&gt;<br />
  &lt;/runway&gt;<br />
 &lt;/airport&gt;</span></span></p>
<div></div>
<div><span style="font-size:small;"></span></div>
<p><span style="font-size:small;"><span style="font-family:Calibri;"></p>
<p class="MsoNormal" style="margin:0;">&lt;/airports&gt;</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">For step 2<br />
Extracted the dtd part form airportdtd.xml and created a separate airports.dtd file.<br />
But got following  syntax error in vs2008 editor<br />
DOCTYPE gave a invalid mark-up declaration in VS2008 editor hence removed it. Then added following line as per instructions in xml workshop tutorial.</p>
<p class="MsoNormal" style="margin:0;">&lt;!DOCTYPE airports SYSTEM &#8220;airports.dtd&#8221;&gt;.<br />
I guess since doctype is declared in xml file its not nsessary in the external dtd file.
</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">airport.xml</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;iso-8859-1&#8243; standalone=&#8221;no&#8221; ?&gt;<br />
&lt;!DOCTYPE airports SYSTEM &#8220;airports.dtd&#8221;&gt;<br />
&lt;airports&gt;<br />
&lt;airport code=&#8221;AKL&#8221;&gt;<br />
   &lt;city&gt;Auckland&lt;/city&gt;<br />
   &lt;name&gt;Auckland International&lt;/name&gt;<br />
   &lt;runway number=&#8221;1&#8243;&gt;<br />
      &lt;heading&gt;05/23&lt;/heading&gt;<br />
      &lt;length&gt;3635&lt;/length&gt;<br />
      &lt;width&gt;&#8230;&lt;/width&gt;<br />
   &lt;/runway&gt;<br />
&lt;/airport&gt;</p>
<p class="MsoNormal" style="margin:0;">&lt;airport code=&#8221;SYD&#8221;&gt;<br />
 &lt;city&gt;Sydney&lt;/city&gt;<br />
 &lt;name&gt;Kingsford-Smith&lt;/name&gt;<br />
 &lt;runway number=&#8221;1&#8243;&gt;<br />
  &lt;heading&gt;16R/34L&lt;/heading&gt;<br />
  &lt;length&gt;3962&lt;/length&gt;<br />
  &lt;width&gt;&#8230;&lt;/width&gt;<br />
 &lt;/runway&gt;<br />
 &lt;runway number=&#8221;2&#8243;&gt;<br />
  &lt;heading&gt;16R/34R&lt;/heading&gt;<br />
  &lt;length&gt;2438&lt;/length&gt;<br />
  &lt;width&gt;&#8230;&lt;/width&gt;<br />
 &lt;/runway&gt;<br />
 &lt;runway number=&#8221;3&#8243;&gt;<br />
  &lt;heading&gt;07/25&lt;/heading&gt;<br />
  &lt;length&gt;2539&lt;/length&gt;<br />
  &lt;width&gt;&#8230;&lt;/width&gt;<br />
 &lt;/runway&gt;<br />
&lt;/airport&gt;<br />
 <br />
&lt;airport code=&#8221;BKK&#8221;&gt;<br />
   &lt;city&gt;Bangkok&lt;/city&gt;<br />
   &lt;name&gt;Don Muang International&lt;/name&gt;<br />
   &lt;runway number=&#8221;1&#8243;&gt;<br />
      &lt;heading&gt;03L/21R&lt;/heading&gt;<br />
      &lt;length&gt;3700&lt;/length&gt;<br />
      &lt;width&gt;&#8230;&lt;/width&gt;<br />
   &lt;/runway&gt;<br />
   &lt;runway number=&#8221;2&#8243;&gt;<br />
      &lt;heading&gt;03R/21L&lt;/heading&gt;<br />
      &lt;length&gt;3500&lt;/length&gt;<br />
      &lt;width&gt;&#8230;&lt;/width&gt;<br />
   &lt;/runway&gt;<br />
&lt;/airport&gt;
</p>
<p class="MsoNormal" style="margin:0;">&lt;/airports&gt;</p>
<p class="MsoNormal" style="margin:0;">airports.dtd</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243; ?&gt;<br />
&lt;!ELEMENT airports (airport+)&gt;<br />
&lt;!ELEMENT airport (city,name, runway+) &gt;<br />
&lt;!ATTLIST airport code CDATA #REQUIRED&gt;<br />
&lt;!ELEMENT city (#PCDATA) &gt;<br />
&lt;!ELEMENT name (#PCDATA) &gt;<br />
&lt;!ELEMENT runway (heading, length, width?) &gt;<br />
&lt;!ATTLIST runway number (1|2|3|..) #REQUIRED&gt;<br />
&lt;!ELEMENT heading (#PCDATA) &gt;<br />
&lt;!ELEMENT length (#PCDATA) &gt;<br />
&lt;!ELEMENT width (#PCDATA) &gt;
</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">Step 3<br />
Created another button in the form and added following code(from msdn site) to parse the xml files with dtd.<br />
Guess the main difference here is use of ValidationType.DTD and use of XmlReader class instaed of XmLTextREader.<br />
Both airportDTD.xml and airport.xml gave the same result when parsed as expected.</p>
<p class="MsoNormal" style="margin:0;">private void button5_Click(object sender, EventArgs e)<br />
        {<br />
            //http://msdn.microsoft.com/en-us/library/z2adhb2f.aspx<br />
            // Set the validation settings.<br />
            XmlReaderSettings settings = new XmlReaderSettings();<br />
            settings.ProhibitDtd = false;<br />
            settings.ValidationType = ValidationType.DTD;<br />
            settings.ValidationEventHandler += new ValidationEventHandler(ValidationCallBack);<br />
            // Create the XmlReader object.<br />
            XmlReader xtr = XmlReader.Create(@&#8221;C:\UNI\ITC565\XML_Workshop\XmlWorkShop\airportsDTD.xml&#8221;, settings);<br />
            // Parse the file.<br />
            while (xtr.Read())<br />
            {<br />
                if ((xtr.HasValue) &amp; (xtr.NodeType == XmlNodeType.Text))<br />
                { listBox1.Items.Add(xtr.Value); } <br />
            };<br />
        }</p>
<p class="MsoNormal" style="margin:0;">        // Display any validation errors.<br />
        private  void ValidationCallBack(object sender, ValidationEventArgs e)<br />
        {<br />
            listBox1.Items.Add(e.Message + &#8220;\n&#8221;);<br />
        }
</p>
<p class="MsoNormal" style="margin:0;">        }</p>
<div></div>
<p><span style="font-family:Calibri;"></p>
<p class="MsoNormal" style="margin:0;"> </p>
<div></div>
<p></span></span><span style="font-size:small;"></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p> </p>
<p> </p>
<p></span></span>
</p>
<p class="MsoNormal" style="margin:0;"> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mranaw01.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mranaw01.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mranaw01.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mranaw01.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mranaw01.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mranaw01.wordpress.com&amp;blog=3888185&amp;post=24&amp;subd=mranaw01&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mranaw01.wordpress.com/2008/06/15/xml-workshop-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46c106d1dc3594161aecda15cd25288b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mranaw01</media:title>
		</media:content>
	</item>
	</channel>
</rss>
