<?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>Mallu's Experiments with technology</title>
	<atom:link href="http://malludays.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://malludays.wordpress.com</link>
	<description>Mallu musings -A j2ee student</description>
	<lastBuildDate>Wed, 01 Oct 2008 08:12:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='malludays.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mallu's Experiments with technology</title>
		<link>http://malludays.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://malludays.wordpress.com/osd.xml" title="Mallu&#039;s Experiments with technology" />
	<atom:link rel='hub' href='http://malludays.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SubClassing in Struts</title>
		<link>http://malludays.wordpress.com/2008/10/01/subclassing-in-struts/</link>
		<comments>http://malludays.wordpress.com/2008/10/01/subclassing-in-struts/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 05:21:56 +0000</pubDate>
		<dc:creator>R Rohith</dc:creator>
				<category><![CDATA[Struts]]></category>
		<category><![CDATA[dispatch action and struts]]></category>
		<category><![CDATA[struts action subclasisng]]></category>
		<category><![CDATA[struts-ajax]]></category>

		<guid isPermaLink="false">http://malludays.wordpress.com/?p=33</guid>
		<description><![CDATA[This tutorial discusses about the need of  subclassing in Struts Action class. Have you ever been in trouble decribing tons of action classes to do  jobs which are related having same data to handle(a single formBean).And here is your answer. Consider a usual scenario Here you know that one action class can refer to only [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=33&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This tutorial discusses about the need of  subclassing in Struts Action class.</p>
<p>Have you ever been in trouble decribing tons of action classes to do  jobs which are related having same data to handle(a single formBean).And here is your answer.</p>
<p>Consider a usual scenario</p>
<div id="attachment_34" class="wp-caption alignnone" style="width: 310px"><a href="http://malludays.files.wordpress.com/2008/10/normal.jpg"><img class="size-medium wp-image-34" title="AddEditDelete" src="http://malludays.files.wordpress.com/2008/10/normal.jpg?w=300&#038;h=100" alt="AddEditDelete User" width="300" height="100" /></a><p class="wp-caption-text">Add Edit Delete User</p></div>
<p>Here you know that one action class can refer to only one formBean and you are using three action classes to define three functions add user,delete user,edit user which uses the same formBean</p>
<p>Now consider a restructuring in this way which you actually need</p>
<p><a href="http://malludays.files.wordpress.com/2008/10/gud.jpg"><img class="alignnone size-medium wp-image-35" title="Real way" src="http://malludays.files.wordpress.com/2008/10/gud.jpg?w=300&#038;h=80" alt="" width="300" height="80" /></a></p>
<p>Here You are using Action subclassing to achieve this format.</p>
<p>Now the changes in the action class.</p>
<p>1.Instead of extending action i am extending DispatchAction here.</p>
<p>And so there will be no execute method ,instead we can specify our own method name but the signature should be intact as that of an execute function</p>
<p>public ActionForward addUser(ActionMapping mapping, ActionForm form,<br />
HttpServletRequest request, HttpServletResponse response)<br />
throws Exception { }</p>
<p>public ActionForward deleteUser(ActionMapping mapping, ActionForm form,<br />
HttpServletRequest request, HttpServletResponse response)<br />
throws Exception { }</p>
<p>public ActionForward editUser(ActionMapping mapping, ActionForm form,<br />
HttpServletRequest request, HttpServletResponse response)<br />
throws Exception { }</p>
<p>These three functions do the specified jobs ,implied by their names.</p>
<p>For doing this subclassing you need to edit the struts-config file so that it can recognise which function to take based on the submit from a jsp page.</p>
<p>Inorder to do that we specify parameter attribute in our action class definition in the struts-config.</p>
<p>&lt;action name=&#8221;formBean&#8221; path=&#8221;/path&#8221; scope=&#8221;session&#8221; type=&#8221;dojeg.actions.Action&#8221; parameter=&#8221;func&#8221;&gt;</p>
<p>here my parameter value is func,now you are ready to do the subclassing.</p>
<p>But how to do it.</p>
<p>The Add User is called when the url is like</p>
<p>/path.do?func=addUser</p>
<p>The Edit User is called when the url is like</p>
<p>/path.do?func=editUser</p>
<p>The Delete  User is called when the url is like</p>
<p>/path.do?func=deleteUser</p>
<p>Hope you have understood this method</p>
<p>Now how to access these from  jsp page.</p>
<p>Simple: &lt;html:submit  property=&#8221;func&#8221; value=&#8221;addUser&#8221;&gt;&lt;/html:submit&gt;</p>
<p>and form  tag as:html:form action=&#8221;/path&#8221;&gt; where path is my action class name</p>
<p>Here when user clicks the Submit button addUser function is evoked</p>
<p>Thats the way to do it.<br />
We can use LookUpDispatchAction,MappingDispatchAction(Struts 1.2) to do the same.</p>
<p>LookupDispacthAction helps to specify the names separate from being hardcoded into jsp page.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malludays.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malludays.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malludays.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=33&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://malludays.wordpress.com/2008/10/01/subclassing-in-struts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab74c3167309f0c17fd524f1ee71fc77?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malludays</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/normal.jpg?w=300" medium="image">
			<media:title type="html">AddEditDelete</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/gud.jpg?w=300" medium="image">
			<media:title type="html">Real way</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax with Struts the Dojo Way</title>
		<link>http://malludays.wordpress.com/2008/10/01/ajax-with-struts-the-dojo-way/</link>
		<comments>http://malludays.wordpress.com/2008/10/01/ajax-with-struts-the-dojo-way/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 04:45:43 +0000</pubDate>
		<dc:creator>R Rohith</dc:creator>
				<category><![CDATA[Struts-Dojo]]></category>
		<category><![CDATA[ajax the dojo way]]></category>
		<category><![CDATA[ajax with dojo]]></category>
		<category><![CDATA[ajax with struts]]></category>
		<category><![CDATA[dojo ajax struts]]></category>
		<category><![CDATA[struts with ajax]]></category>

		<guid isPermaLink="false">http://malludays.wordpress.com/?p=22</guid>
		<description><![CDATA[Tutorial Requirements My Index.jsp Index.jsp My action class action class Here I am using my jsp from previous post.Hopefully you people have noticed the user() function and there lies the call to ajax from the widget.It just calls an action class function. Here with no prompting,I have used the DispatchAction method to execute my ajax [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=22&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tutorial Requirements</p>
<p>My Index.jsp <a href="http://malludays.files.wordpress.com/2008/10/sty3.doc">Index.jsp</a></p>
<p>My action class <a href="http://malludays.files.wordpress.com/2008/10/action.doc">action class</a></p>
<p>Here I am using my jsp from previous post.Hopefully you people have noticed the user() function and there lies the call to ajax from the widget.It just calls an action class function.</p>
<p>Here with no prompting,I have used the DispatchAction method to execute my ajax call(That doesnt matter here).I am concentrating on the ajax side.</p>
<p>My script containing function user is:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
function user(){<br />
dojo.xhrPost( {<br />
url: &#8220;/path.do?func=ajax&#8221;,<br />
handleAs: &#8220;text&#8221;,<br />
load: function(response) {<br />
alert(response);<br />
}<br />
}<br />
);}<br />
&lt;/script&gt;</p>
<p>here I will explain from</p>
<p>dojo.xhrPost which itself is a function</p>
<p>It submits a HTTP POST request asynchronously. Use xhrPost when you want to send form data to a website and the form doesn&#8217;t contain any file-input fields. (use dojo.io.iframe.send() instead)</p>
<p>[taken from:http://www.dojoforum.com/2007/10/11/dojo-example-xhrget-and-xhrpost]</p>
<p>Its arguments</p>
<p>url:to which url the request is forwarded:</p>
<p>In this case path.do is my action class ======&gt; /path</p>
<p>handleAs:text tells the response to be handled as a text</p>
<p>load:function(response) causes the function to be loaded directly on returning successfully from the servlet(our controller class and everything works fine).</p>
<p>Here i havent included any arguments in my url except the hardcoded func=ajax</p>
<p>(We can do so) specifying parameters as the second argument.</p>
<p>which selects the function to be called in the action class,wait I will explain about my action class shortly.</p>
<p>My action class</p>
<p>public ActionForward ajax(ActionMapping mapping, ActionForm form,<br />
HttpServletRequest request, HttpServletResponse response)<br />
throws Exception {<br />
ActionErrors errors = new ActionErrors();<br />
ActionForward forward = new ActionForward(); // return value<br />
FormBean formBean = (FormBean) form;</p>
<p>try {<br />
PrintWriter p=  response.getWriter();<br />
p.println(&#8220;Hi im using ajax&#8221;);</p>
<p>} catch (Exception e) {</p>
<p>errors.add(&#8220;name&#8221;, new ActionError(&#8220;id&#8221;));</p>
<p>}</p>
<p>if (!errors.isEmpty()) {<br />
saveErrors(request, errors);<br />
}<br />
forward = mapping.findForward(&#8220;success&#8221;);</p>
<p>return (null);</p>
<p>}</p>
<p>Now you have noticed we have returned null instead of the forward string,that does the trick.</p>
<p>PrintWriter p=  response.getWriter();<br />
p.println(&#8220;Hi im using ajax&#8221;); is used to output response .</p>
<p>Hope you have got a clear picture.</p>
<p>And now the result page is:</p>
<p><a href="http://malludays.files.wordpress.com/2008/10/str1.jpg"><img class="alignnone size-thumbnail wp-image-31" title="aJAX Response" src="http://malludays.files.wordpress.com/2008/10/str1.jpg?w=128&#038;h=52" alt="" width="128" height="52" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malludays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malludays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malludays.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=22&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://malludays.wordpress.com/2008/10/01/ajax-with-struts-the-dojo-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab74c3167309f0c17fd524f1ee71fc77?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malludays</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/str1.jpg?w=128" medium="image">
			<media:title type="html">aJAX Response</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Struts-Dojo Project in IBM RSA 7.0</title>
		<link>http://malludays.wordpress.com/2008/10/01/creating-a-struts-dojo-project-in-ibm-rsa-70-jsp/</link>
		<comments>http://malludays.wordpress.com/2008/10/01/creating-a-struts-dojo-project-in-ibm-rsa-70-jsp/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 03:50:27 +0000</pubDate>
		<dc:creator>R Rohith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dojo ajax]]></category>
		<category><![CDATA[dojo and ibm]]></category>
		<category><![CDATA[dojo and rad 7.0]]></category>
		<category><![CDATA[dojo and rsa 7.0]]></category>
		<category><![CDATA[dojo toolkit in jsp]]></category>
		<category><![CDATA[dojo with jsp]]></category>
		<category><![CDATA[dojo with struts]]></category>
		<category><![CDATA[jsp]]></category>

		<guid isPermaLink="false">http://malludays.wordpress.com/?p=4</guid>
		<description><![CDATA[This tutorail helps you to use dojo toolkit in your jsp pages using struts framework<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=4&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hope someday I could publish my experiments with Dojo .And this is the day.</p>
<p>Using IBM RSA 7.0</p>
<p>1.Create  a new dynamic web project with Struts support</p>
<p>2.Add dojo toolkit to project</p>
<p>Dojo toolkit can be obtained from:http://download.dojotoolkit.org/release-1.1.1/dojo-release-1.1.1.tar.gz</p>
<p>Details about Adding explained using screenshot</p>
<p><a href="http://malludays.files.wordpress.com/2008/10/try.jpg"><img class="alignnone size-full wp-image-5" title="Project  Explorer" src="http://malludays.files.wordpress.com/2008/10/try.jpg?w=450" alt=""   /></a></p>
<p>That means its included in the Webcontent. You can see tons of warning messages caused by silly test html pages inside the toolkit folder,just search around and delete the stuff. Basically it has nothing to do with a struts controller or so.But I just tried using jsp pages,instead of html just to check if we can include toolkit with no problems in the jsp page.</p>
<p>Things to notice.</p>
<p>.Struts link the property of element in the form with form bean.</p>
<p>Like:</p>
<p>&lt;html:text property=&#8221;beanprop&#8221;&gt;&lt;/html:text&gt;</p>
<p>Here beanprop is one property in the  form bean.</p>
<p>Here after succesfully deploying the code will be like</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;beanprop&#8221; size=&#8221;20&#8243;&gt;    in the html file we are viewing.</p>
<p>Now getting into details:</p>
<p>My JSP page:index.jsp  &gt;&gt; <a href="http://malludays.files.wordpress.com/2008/10/sty3.doc">Index.jsp</a></p>
<p>Here instead of putting property attribute in the text field element ,i have used name because if you are using property here in this jsp page ,your dojo parser wont recognise the tag and the purpose for introducing dojo is defeated.</p>
<p>So our aim is to:</p>
<p>1.retain the dojo functionality</p>
<p>2.Obtain the value from page to formBean</p>
<p>My widget is specified like:</p>
<p>&lt;input type=&#8221;text&#8221; id=&#8221;use&#8221; name=&#8221;username&#8221; size=&#8221;30&#8243;<br />
dojoType=&#8221;dijit.form.ValidationTextBox&#8221;<br />
required=&#8221;true&#8221;<br />
promptMessage=&#8221;Enter username&#8221;<br />
invalidMessage=&#8221;Username is required.&#8221;<br />
onchange=&#8221;user()&#8221;<br />
/&gt;</p>
<p>Here look at the name attribute its username,which is same as my bean property <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and your problem  is solved.The tag itself is self explainatory:</p>
<p>dojoType=&#8221;dijit.form.ValidationTextBox&#8221; &lt;&lt;Causes dojo parser to recognise it as a ValidationTextbox having validation features included to normal textbox</p>
<p>required=&#8221;true&#8221; specifies whether field is required( Hurray!U guessed;It helps the parser to recognise whether validation is enabled).(But that alone is not sufficient(We have to specify a regExpression or rule to accept the textbox value)</p>
<p>promptMessage=&#8221;Enter username&#8221; is the prompting message on clicking the form element it will be visible</p>
<p>invalidMessage=&#8221;user()&#8221; causes a javascript function user() to be called when text changes in text field.</p>
<p>So inorder to make this all happen,we have to include</p>
<p>&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;dojo-release-1.1.1/dojo/dojo.js&#8221;<br />
djConfig=&#8221;parseOnLoad: true&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
dojo.require(&#8220;dojo.parser&#8221;);<br />
dojo.require(&#8220;dijit.form.ValidationTextBox&#8221;);<br />
&lt;/script&gt;</p>
<p>inside your header</p>
<p>Tells dojoParser to load on document load and  parse the html before display</p>
<p>and dojo.require(&#8220;dijit.form.ValidationTextBox&#8221;) tells parser that  dijit.form.ValidationTextBox is used in the page here,index.html</p>
<p>Output screen</p>
<div id="attachment_18" class="wp-caption alignnone" style="width: 454px"><a href="http://malludays.files.wordpress.com/2008/10/op1.jpeg"><img class="size-full wp-image-18" title="Prompt" src="http://malludays.files.wordpress.com/2008/10/op1.jpeg?w=450" alt="Look at the prompt "   /></a><p class="wp-caption-text">Look at the prompt </p></div>
<p>Now if you have skipped the field this will be the result (beware)</p>
<div id="attachment_19" class="wp-caption alignnone" style="width: 311px"><a href="http://malludays.files.wordpress.com/2008/10/op2.jpg"><img class="size-full wp-image-19" title="Error" src="http://malludays.files.wordpress.com/2008/10/op2.jpg?w=450" alt="This is the error prompt"   /></a><p class="wp-caption-text">This is the error prompt</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/malludays.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/malludays.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/malludays.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=malludays.wordpress.com&amp;blog=4394012&amp;post=4&amp;subd=malludays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://malludays.wordpress.com/2008/10/01/creating-a-struts-dojo-project-in-ibm-rsa-70-jsp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab74c3167309f0c17fd524f1ee71fc77?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">malludays</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/try.jpg" medium="image">
			<media:title type="html">Project  Explorer</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/op1.jpeg" medium="image">
			<media:title type="html">Prompt</media:title>
		</media:content>

		<media:content url="http://malludays.files.wordpress.com/2008/10/op2.jpg" medium="image">
			<media:title type="html">Error</media:title>
		</media:content>
	</item>
	</channel>
</rss>
