<?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"
	>

<channel>
	<title>Goutamdey.com</title>
	<atom:link href="http://goutamdey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://goutamdey.com</link>
	<description>Web development blog from Kolkata(Calcutta),India</description>
	<pubDate>Fri, 27 Jun 2008 17:27:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Integrating Prototype Ajax engine with Struts Application</title>
		<link>http://goutamdey.com/2006/12/12/integrating-prototype-ajax-engine-with-struts-application/</link>
		<comments>http://goutamdey.com/2006/12/12/integrating-prototype-ajax-engine-with-struts-application/#comments</comments>
		<pubDate>Tue, 12 Dec 2006 18:11:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=4</guid>
		<description><![CDATA[You can achieve Ajax effect in any struts application (Struts1.x ) with prototype in a very simple way. 
In normal Struts application we generally use DispatchAction to make our web app and life easy. In general struts controller gets a request and delegates it to corresponding action/dispatchAction subclasses. Depending on the method name parameter our [...]]]></description>
			<content:encoded><![CDATA[<p>You can achieve Ajax effect in any <a href="http://struts.apache.org/">struts</a> application (Struts1.x ) with prototype in a very simple way. </p>
<p>In normal Struts application we generally use <a href="http://struts.apache.org/1.x/struts-extras/apidocs/org/apache/struts/actions/DispatchAction.html">DispatchAction</a> to make our web app and life easy. In general struts controller gets a request and delegates it to corresponding action/dispatchAction subclasses. Depending on the method name parameter our target method gets invoked and after processing of some business/domain objects finally forwards a mapping(configured in struts-config.xml) towards the view tier and a JSP gets rendered in our thin client as a response. </p>
<p>Now when we think of Ajax in this kind of application model, we can consider two types of implementation of Ajax: Partial Page Rendering and Partial Response update. </p>
<p><strong>Problem</strong>: A form based application has too many fields to be filled in by the user but majority of the fields or group of fields are optional and it takes time to render those fields and thus the entire page. <span id="more-16"></span></p>
<p><strong>JSP Solution</strong>: Break the optional fields and mandatory fields in two separate groups. And Break the JSP page in two and use JSP:INCLUDE to save some jsp rendering time. You can save approximately 5-7% of your loading time. </p>
<p><strong>Ajax Solution&nbsp; </strong>Have a different method in your DispatchAction for example renderOptionFields(â€¦â€¦.) </p>
<p>And return a different forward mapping and in turn return a different JSP but a partial one which render only the optional fields. </p>
<p>And in that partial JSP page you just only include your necessary TLDs and render all the struts html tags with name attribute mentioned. </p>
<p>And now in your main JSP have a button called option fields having a javascript function call to render the option fields.</p>
<p>Including <a href="http://prototype.conio.net/" target="_blank">prototype</a>.js is obvious and have the code as follows:<br /> 
<pre>    <code>    &lt;input type=&quot;button&quot; value=&quot;Optional Fields&quot; onClick=&quot;renderOptionalFields()&quot;/&gt;    &lt;div id=&quot;optionalFieldsContainer&quot;&gt;&lt;/div&gt;    </code></pre>
<pre>&lt;script&gt;function  renderOptionalFields(){	var url =&quot;/appcontext/yourDispatch.action?method=   renderOptionFields&quot;;	var params =&quot;&quot;;	var updatePage = new Ajax.Updater(''optionalFieldsContainer'',url,		{			method:''get'',			parameters:params,			onFailure:reportError		}	);}function reportError(request) {	alert(&quot;Error Updaing Page&quot;);}&lt;/script&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/12/12/integrating-prototype-ajax-engine-with-struts-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java way of doing Ruby on Rails</title>
		<link>http://goutamdey.com/2006/12/11/java-way-of-doing-ruby-on-rails/</link>
		<comments>http://goutamdey.com/2006/12/11/java-way-of-doing-ruby-on-rails/#comments</comments>
		<pubDate>Mon, 11 Dec 2006 18:19:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Ruby On Rails (ROR)]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=6</guid>
		<description><![CDATA[New kid on the J2EE blocks, RomaFramework, no not another new framework for confusing you by adding your framework bookmarks. 
Inspired by Ruby on Rails a new java based framework for Ajaxified Web based application development framework thatâ€™s can turn your heads with some cool features:

Roma it&#8217;&#8217;s totally based on POJO (Plain Old Java Objects) [...]]]></description>
			<content:encoded><![CDATA[<p>New kid on the J2EE blocks, <a href="http://romaframework.xwiki.com/xwiki/bin/view/Main/" target="_blank">RomaFramework</a>, no not another new framework for confusing you by adding your framework bookmarks. </p>
<p>Inspired by Ruby on Rails a new java based framework for Ajaxified Web based application development framework thatâ€™s can turn your heads with some cool features:
<ul>
<li>Roma it&#8217;&#8217;s totally based on <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/POJO">POJO</a></b> (Plain Old Java Objects)  </li>
<li><strong>True Object Oriented vision</strong> in all aspects: from the model to the view and to the repository/database </li>
</ul>
<ul>
<li>Encourage the use of the <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/DDD">Domain Driven Model (DDD)</a></b> approach: let&#8217;&#8217;s think to the <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/Domain">Domain</a></b>: the other things are secondary <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/Aspects">Aspects</a></b> </li>
<li>It works with <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/Conventions">Conventions</a></b> ala <b><a href="http://www.rubyonrails.org/">Ruby On Rails</a></b>: much less code to write and maintain and more uniformity in projects  </li>
<li>Applications are <strong>fully portable across frameworks</strong> since the application is developed using POJOs. For example you can switch between JDO and EJB3 PersistenceAspect without changing code unless you use directly the aspect implementation (see below)  </li>
<li>Allow to makes things dirty: you can use <strong>directly</strong> the target framework taking the full advantage of the implementation power  </li>
<li>You can use the already developed <b><a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/Modules">Modules</a></b> (CRUD, User&amp;Profiles, etc.) and extend their if you need  </li>
<li>The <strong>skill</strong> requested to build application can be lower than required for modern Java Web Applications: minor cost of development  </li>
<li>Roma is based on <b><a href="http://www.springframework.org">Spring Framework</a></b> as <a href="http://today.java.net/pub/a/today/2004/02/10/ioc.html">IoC container</a>, but you can use another one if you want.  </li>
<li>The supported frameworks and tools are continuously update on <a href="http://romaframework.xwiki.com/xwiki/bin/view/Doc/Modules">Modules</a> page. </li>
</ul>
<p>You can have the pleasure of Ajax web front-end with the help of Echo framework and if you are too much conservative and do not want to break out your tie with JSP you can do that too with this framework. </p>
<p>Itâ€™s worth checking this framework before going for any other RAD framework in J2EE space.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/12/11/java-way-of-doing-ruby-on-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ria and Java Enterprise Application Part-3</title>
		<link>http://goutamdey.com/2006/11/21/ria-and-java-enterprise-application-part-3/</link>
		<comments>http://goutamdey.com/2006/11/21/ria-and-java-enterprise-application-part-3/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 19:32:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=9</guid>
		<description><![CDATA[Enterprise App and Ajax 
When implementing Ajax based RUI in enterprise app there are very few options to choose from; 

Developing RIA from scratch 
Plumping various RUI widgets available from open source community 
FLEX (Flash Plug-in dependent) need FA-Bridge 
Open Laszlo Flash based RICH UI (XUL based like Flex) 

Developing from scratch makes no sense [...]]]></description>
			<content:encoded><![CDATA[<h3>Enterprise App and Ajax </h3>
<p>When implementing Ajax based RUI in enterprise app there are very few options to choose from; </p>
<ul>
<li>Developing RIA from scratch </li>
<li>Plumping various RUI widgets available from open source community </li>
<li>FLEX (Flash Plug-in dependent) need FA-Bridge </li>
<li>Open Laszlo Flash based RICH UI (XUL based like Flex) </li>
</ul>
<p>Developing from scratch makes no sense at all. Because time required developing various widgets it takes too much of time to deliver an enterprise ready version of it. Then an entire framework of Ajax engine makes no sense when too many well-tested versions are available (Dojo, prototype, DWR etc). </p>
<p><span id="more-14"></span>
<p>Readily available RUI widgets are available from various open source projects like YUI, Scriptaculous etc. But yes, you have to tweak here and there to develop your desired one. </p>
<p>Flex has many advantages over other two options. Because you get support from ADOBE itself, have large community and more of all you get a well tested IDE which is definitely a plus. </p>
<p>Flex has a Licensing cost which you have to consider beforehand like Backbase which has a readily available struts compatible tag-libraries which is rich enough to meet the enterprise requirements. </p>
<p>Open Laszlo is another good option to explore, it is an open source solution having two way supports, single declarative UI with flash or JS based RUI. </p>
<p>But again before starts with any of the options we should define the scope and analyze the expectation of the user, and accordingly go with best possible options available.</p>
<h3>Struts and Ajax how to?</h3>
<p>Struts itself has absolutely nothing in this area up to 1.2.x, Struts 2 is coming up in big way with the in built features of Ajax. (Webworks2.x). </p>
<p>Prior to Struts 2 you have to re-align your existing server side code base according to your plan of providing RUI solution. And in doing this DWR , dojo, scriptaculous can become very helpful if you are implementing JS based RUI. In case of Flex you probably have to re-align your server side code a little bit more. Though there are some open source helper toolkits available. </p>
<p>Flex and Js based solution both are surprisingly easy to integrate with struts. Both are Servlet based solution. </p>
<p>In JS based solution Struts Tiles can plays a major role in shortening your development time. </p>
<p>Ajaxanywhere Tag-library and Ajax-display tag can be very helpful, and there are some other open source tag-libraries to explore.</p>
<h3>Resources</h3>
<p><a href="http://ajaxtags.sourceforge.net/">http://ajaxtags.sourceforge.net/</a><br /><a href="http://ajaxanywhere.sourceforge.net/">http://ajaxanywhere.sourceforge.net/</a><br /><a href="http://javawebparts.sourceforge.net/">http://javawebparts.sourceforge.net</a><br /><a href="http://www.getahead.ltd.uk/dwr/">http://www.getahead.ltd.uk/dwr/</a><br /><a href="http://www.nextapp.com/products/echo2/">http://www.nextapp.com/products/echo2/</a><br /><a href="http://sweetdev-ria.ideotechnologies.com/sweetdev-ria-gettingStarted-1.1-RC3//">http://sweetdev-ria.ideotechnologies.com/sweetdev-ria-gettingStarted-1.1-RC3//</a><br /><a href="http://dojotoolkit.org/">http://dojotoolkit.org/</a><br /><a href="http://flex.org/">http://flex.org</a><br /><a href="http://www.openlaszlo.org/">http://www.openlaszlo.org/</a><br /><a href="http://labs.macromedia.com/wiki/index.php/Flex_Framework:FABridge">http://labs.macromedia.com/wiki/index.php/Flex_Framework:FABridge</a><br /><a href="http://prototype.conio.net/">http://prototype.conio.net/</a><br /><a href="http://www.openrico.org/">http://www.openrico.org/</a><br /><a href="http://script.aculo.us/">http://script.aculo.us/</a><br /><a href="http://karaszewski.com/tools/ajaxlib/">http://karaszewski.com/tools/ajaxlib/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/21/ria-and-java-enterprise-application-part-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ria and Java Enterprise Application Part-2</title>
		<link>http://goutamdey.com/2006/11/19/ria-and-java-enterprise-application-part-2/</link>
		<comments>http://goutamdey.com/2006/11/19/ria-and-java-enterprise-application-part-2/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 19:31:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=8</guid>
		<description><![CDATA[Problem still remains
For enterprise builders Ajax solved many problem of responsiveness of UI but problem of overall development methodologies using Ajax still remains with lot of contradictions and conflicts among the developers. When using Ajax in an Enterprise Application main problem faced by the developers are where to start and how to start. The major [...]]]></description>
			<content:encoded><![CDATA[<h3>Problem still remains</h3>
<p>For enterprise builders Ajax solved many problem of responsiveness of UI but problem of overall development methodologies using Ajax still remains with lot of contradictions and conflicts among the developers. When using Ajax in an Enterprise Application main problem faced by the developers are where to start and how to start. The major problem faced by the enterprise developers and architect in implementing Ajax based UI solutions in existing application.  </p>
<p>No software solution is beyond the scope of SDLC actually, but in general found missing when implementing Ajax based solutions in an enterprise app. Ajax by nature has some tremendous side effects if practiced unethically (from SDLC perspective) and by overuse. <br /><span id="more-13"></span><br />
<h3>Where is the Silver bullet?</h3>
</p>
<p>In Ajax oriented solutions there is no silver bullet till date. Ajax is not a technology itâ€™s more of a technique. And the success of Ajax oriented approach depends upon the proper study of requirements. If you take wrong move at beginning you tend to suffer in later stage of your development cycle.  </p>
<p>There is no short cut at all in development of Ajax oriented Rich UI based presentation layer development, itâ€™s a full blown development cycle. Yes there are many toolkit, utilities, tag-libraries to help you develop Rich UI which is Ajax based but development effort of front end, server side code and architecture re-aligning is always be there to be estimated.<br />
<h3>Where to start?</h3>
</p>
<p>As I mentioned before, prior to know where to start and how start better you should know what to do first and your user expectations you are going to meet. Define the scope of Ajax based UI and usability options you are going to provide to your end-users.  </p>
<p>But again to remind you that there is no silver bullet which can provide you hassle free Rich UI development in a minutes/hours for enterprise app. It needs extensive planning; architecting and testing that age-old mantra for developing Aax based Rich UI for enterprise app.  </p>
<p>In Ajax based approach there are two pattern in development; Dom Manipulation and Partial Updation. <a href="http://struts.apache.org" target="_blank">Stuts2(Webworks2+)</a> promised to provide some inbuilt features for both of them. But as of now in struts, up to 1.2.9 (I have evaluated up to this version of1.2.x) there are no Ajax materials to help.  </p>
<p>So depending on the pattern you are going to use in your enterprise app you have to decide and design accordingly to develop your RUI.  </p>
<p>To help your development of Ajax RUI you can use <a href="http://getahead.ltd.uk/dwr/" target="_blank">DWR</a>, <a href="http://dojotoolkit.org/" target="_blank">Dojo toolkit</a> and <a href="http://script.aculo.us/">SCRIPTACULOUS</a> (All based upon prototype lib), Yahoo UI library is good enough to get some readymade widgets out of the box. But you are the person who will be the king of your Ajax app because of your customized need of your very own RUI.  </p>
<p>Do not hesitate to take help from ajaxpattern.org for taking right design decision to negate the future disasters as I mentioned earlier.  </p>
<p>If you have framed the scope of your UI enhancement try using Ajaxanywhere tag-library, it is really a good one and can shorten your development time in very effective way. Using pre-build Ajax tag-library can really reduce the development efforts, and there are so many to do so. Check out the resource section for that.</p>
<p>Check the first part of this article <a href="http://www.goutamdey.com/blog/2006/11/13/ria-and-java-enterprise-app-part-1/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/19/ria-and-java-enterprise-application-part-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RIA and Java Enterprise App Part - 1</title>
		<link>http://goutamdey.com/2006/11/14/ria-and-java-enterprise-app-part-1/</link>
		<comments>http://goutamdey.com/2006/11/14/ria-and-java-enterprise-app-part-1/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 19:28:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=7</guid>
		<description><![CDATA[The Evolution of RIA
Web application has its own advantages over the age old Client Server Applications, and thus large enterprises adopted it as their prime choice whenever they tend to develop a new applications. And not only new application but stared to migrate their existing client server based enterprise application to web based application. HTTP [...]]]></description>
			<content:encoded><![CDATA[<h5>The Evolution of RIA</h5>
<p>Web application has its own advantages over the age old Client Server Applications, and thus large enterprises adopted it as their prime choice whenever they tend to develop a new applications. And not only new application but stared to migrate their existing client server based enterprise application to web based application. <a href="http://www.w3.org/Protocols/" target="_blank">HTTP</a> the base layer has not been changed a lot to cope up with the <a href="http://en.wikipedia.org/wiki/Enterprise_application" target="_blank">enterprise</a> userâ€™s expectations. </p>
<p>Gradually form based applications started facing problems in meeting the userâ€™s expectation and responsiveness of the applications started coming up as major issues. Usability of an application came up strongly and XML-RPC became popular in large enterprise applications and been there for long time to meet the user expectations to some extends. </p>
<p><a href="http://www.adobe.com/products/flash/flashpro/" target="_blank">Macromedia FLASH</a> and the new technology called <a href="http://www.adobe.com/products/flashremoting/" target="_blank">FLASH-Remoting</a>, opened up new possibilities of Rich User Interface in thin clients. Enterprise App builders started thinking of various possibilities of using Rich User Interfaces in their Enterprise App. And <a href="http://java.sun.com/" target="_blank">java</a> space tried to play their age old <a href="http://java.sun.com/products/jfc/" target="_blank">SWING</a> card in various ways but unfortunately SWING was unable to gain the momentum. But developer community started thinking of Rich UI using <a href="http://www.w3.org/Graphics/SVG/" target="_blank">SVG</a>, SWING etc. but in a different approach, because till then enterprise builders have realized that <a href="http://en.wikipedia.org/wiki/Model-view-controller" target="_blank">MVC</a> actually unable to separate the VIEW layer as they expected. Thus <a href="http://www.mozilla.org/projects/xul/" target="_blank">XUL</a> has arrived in the scene. Still some declarative swing application project (XUL based) are still live in SF. </p>
<p>But thin client limitation was still a hitch for UI. Google came up with age old technique of MSDN on demand tree menu loading in a new package (Google Suggestion) and developer community acted promptly and <a href="http://en.wikipedia.org/wiki/Ajax_(programming)" target="_blank">AJAX</a> was suddenly became the most HYPED buzzword in the developer community. But Macromedia has come up with XUL based (MXML) RIA development framework <a href="http://www.adobe.com/products/flex/" target="_blank">FLEX</a>. Beta was a huge hit among the designer community but unable to attract the developer community because of the lack of support of PHP the most popular scripting language of WEB development. They come up with FLEX 1.5 with limited support of SOA which some how managed get the attention of the developer community. But designer community was thrilled because of the introduction of eclipse based IDE for designing FLASH web sites in hours. Laszlo open sourced their <a href="http://www.laszlosystems.com/" target="_blank">Laszlo</a> systems(Flex counterpart) and RIA became hit. Yahoo joined the RIA party and developer and designer community join the party. CSS gained the momentum as well and join hands with the developers because of AJAX. Standard based web development became a popular practice and gave platform to shout for the designers and to establish a new term of WEB-Architect which is becoming poplar day by day. </p>
<p>As RIA became popular and lot of new Ajax oriented toolkit has came up, like <a href="http://dojotoolkit.org/" target="_blank">dojo</a>, <a href="http://getahead.ltd.uk/dwr" target="_blank">DWR</a>, <a href="http://www.modernmethod.com/sajax/" target="_blank">Sajax</a> <a href="http://www.djangoproject.com/" target="_blank">Django</a> etc. Lot of tag-libraries for java space has also come up like <a href="http://ajaxanywhere.sourceforge.net/" target="_blank">ajaxanywhre</a>, <a href="http://ajaxtags.sourceforge.net/" target="_blank">ajaxtags</a> etc. </p>
<p>In my next post&nbsp;I will try to convey the problems of RIA and Ajax implementations and some resources.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/14/ria-and-java-enterprise-app-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RIA Widgets working draft from W3C</title>
		<link>http://goutamdey.com/2006/11/13/ria-widgets-working-draft-from-w3c/</link>
		<comments>http://goutamdey.com/2006/11/13/ria-widgets-working-draft-from-w3c/#comments</comments>
		<pubDate>Mon, 13 Nov 2006 19:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=10</guid>
		<description><![CDATA[Finally we got an initiatives from W3C, a working draft of Widgets packaging and development spec is published on 9th of this month(November,2006). If this draft comes live and gets real supports from widgets providers like Yahoo, Google,MSN, whole developer community will be very happy and web2.0 and RIA development on Javascript  will not [...]]]></description>
			<content:encoded><![CDATA[<p>Finally we got an initiatives from <a href="http://w3c.org">W3C</a>, a working draft of Widgets packaging and development spec is published on 9th of this month(November,2006). If this draft comes live and gets real supports from widgets providers like <a href="http://developer.yahoo.com/yui/">Yahoo</a>, <a href="http://code.google.com/webtoolkit/">Google</a>,<a href="http://msn.com">MSN</a>, whole developer community will be very happy and <a href="http://www.oreillynet.com/go/web2">web2.0</a> and <a href="http://en.wikipedia.org/wiki/Rich_Internet_application">RIA </a>development on Javascript  will not remains a nightmare anymore for web developers. Yes there are lot of scope to improve the working draft and we all hope that it will get a better shape very soon with active participations of big brothers.So as per W3C &#8220;<b>Widgets are web applications which use the browser as an environment to run in, but which do not have the usual browser chrome. They are installed on a local client, and have several features that are not available to regular web applications, such as a more explicit security model to allow them to perform a wider range of tasks easily, and a persistent information store apart from cookies</b>.&#8221;Every Widgets must contain information to initialization of  the widget and some other optional meta informations. <b>index.html</b> will be the main document for the widget itself. And this html file are allowed to access/uses external  contents like scripts,CSS files and images but are not limited to that only. SVG and XHTML are also under considerations. So lets hope for the healthy and easy life for widget spec to come out from it&#8217;&#8217;s mothers&#8221; womb.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/13/ria-widgets-working-draft-from-w3c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox Extensions for Web developers</title>
		<link>http://goutamdey.com/2006/11/11/firefox-extensions-for-web-developers/</link>
		<comments>http://goutamdey.com/2006/11/11/firefox-extensions-for-web-developers/#comments</comments>
		<pubDate>Sat, 11 Nov 2006 19:36:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=11</guid>
		<description><![CDATA[Everybody know about Firefox Extensions but there are some extensions which are worth mentioning. Every web developer  go through the debugging phase of WDLC, and it is really very hard to identify the validation errors and correct it, here comes the extension for Firefox and it works within your very own Firefox. Picking color [...]]]></description>
			<content:encoded><![CDATA[<p>Everybody know about Firefox Extensions but there are some extensions which are worth mentioning. Every web developer  go through the debugging phase of WDLC, and it is really very hard to identify the validation errors and correct it, here comes the extension for Firefox and it works within your very own Firefox. Picking color from a web page a normal job for any designer and you got it Firefox has an extension for it. You need to check your developed web site in IE for Cross browser compatibility testing, yes Firefox has the solution to do it without getting out of Firefox. Like these there are many useful Firefox Extensions which I use in my projects and decided to share those with you guys. So here come the links of those above mentioned Firefox must have Extensions for web developers :
<ul>
<li><a href="https://addons.mozilla.org/firefox/60/">Web Developer</a></li>
<li> <a href="https://addons.mozilla.org/firefox/684/">FireFTP </a></li>
<li> <a href="https://addons.mozilla.org/firefox/1419/">IE Tab</a></li>
<li><a href="https://addons.mozilla.org/firefox/271/">ColorZilla</a></li>
<li><a href="https://addons.mozilla.org/firefox/539/">MeasureIt </a></li>
<li><a href="https://addons.mozilla.org/firefox/1843/">FireBug</a></li>
<li> <a href="https://addons.mozilla.org/firefox/1146/">Screen grab</a></li>
<li><a href="https://addons.mozilla.org/firefox/220/">FlashGot</a></li>
<li><a href="https://addons.mozilla.org/firefox/2104/">CSSViewer</a></li>
<li><a href="https://addons.mozilla.org/firefox/2897/">XML Developer Toolbar</a></li>
</ul>
<p>Technorati Tags: <a href="http://technorati.com/tag/Firefox" rel="tag">Firefox</a>, <a href="http://technorati.com/tag/extensions" rel="tag">extensions</a>, <a href="http://technorati.com/tag/webdevelopment" rel="tag">web development</a>, <a href="http://technorati.com/tag/web design" rel="tag">web design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/11/firefox-extensions-for-web-developers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy Wordpress Blogging with Firefox Extension - Performancing</title>
		<link>http://goutamdey.com/2006/11/10/easy-wordpress-blogging-with-firefox-extension-performancing/</link>
		<comments>http://goutamdey.com/2006/11/10/easy-wordpress-blogging-with-firefox-extension-performancing/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 19:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Nice to Know]]></category>

		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=12</guid>
		<description><![CDATA[I was just exploring the extension/add-on page of FF and found this an add-on tool Perfomancing for easy blogging specialy for me like lazy bloggers. it&#8217;&#8217;s really cool and I found it very easy to configure with Wordpress even. Give it a try and you will love it.
]]></description>
			<content:encoded><![CDATA[<p>I was just exploring the extension/add-on page of FF and found this an add-on tool <a href="http://performancing.com/firefox">Perfomancing </a>for easy blogging specialy for me like lazy bloggers. it&#8217;&#8217;s really cool and I found it very easy to configure with <a href="http://wordpress.org/">Wordpress</a> even. Give it a try and you will love it.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/11/10/easy-wordpress-blogging-with-firefox-extension-performancing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DOM caching without AJAX</title>
		<link>http://goutamdey.com/2006/05/12/dom-caching-without-ajax/</link>
		<comments>http://goutamdey.com/2006/05/12/dom-caching-without-ajax/#comments</comments>
		<pubDate>Fri, 12 May 2006 19:56:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Caching]]></category>

		<category><![CDATA[DOM]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=15</guid>
		<description><![CDATA[In my present company we are having huge enterprise java web app for our client. In the web UI of this app. we have provided them a good â€œOO Javascriptâ€ for their dropdown navigation.
Dropdown navigation system was written in such a way so that it can fetch navigational data from database after implementation of proper [...]]]></description>
			<content:encoded><![CDATA[<p>In my present company we are having huge enterprise java web app for our client. In the web UI of this app. we have provided them a good â€œOO Javascriptâ€ for their dropdown navigation.</p>
<p>Dropdown navigation system was written in such a way so that it can fetch navigational data from database after implementation of proper access control.</p>
<p><span id="more-8"></span>
<p>And after 2 years the navigation data are huge (over 5 level deep with so many children). And as a result for each request and response phase it has to re render all the elements dynamically and thus slowing down page rendering process.</p>
<p>We had very few option at this point of the project life cycle. We were caching the menu tree at server-side (session) but no other option to cache the rendering process.</p>
<p><!--more-->
<p>We were looking for some technique to cache the rendering process ( DOM creation) in rendering the response phase except using frame based navigation. But for a Dropdown navigation system we have developed non-frame based navigation.</p>
<p>So options may be Flash based menu or Ajax call to server. Flash option was not a good solution because anyway we had to re-render the thing on every page refresh.</p>
<p>So the option remains is Ajax. But we were not in a position to take the risk of changing server side code and for security reason unable to introduce DWR for enabling Ajax.</p>
<p>So finally an old trick paid off. Frame is there as â€œtop barâ€ for other notification system and so.</p>
<p>So I have started exploring the code and found that after first rendering menu code is generating elements which is cacheable (container.innerHTML) but the problem is when you attach events dynamically to an object it is not going to have any foot-print in your rendered DOM.</p>
<p>So we have just cached the DOM tree in the top frame and used it next time onwards with few â€œdynamic event attachmentâ€ codes with it.</p>
<pre>    if(!top.topFrame.menubarcache.length){ // check for first time rendering from server            }else {         createMenuBarAndChildrenContainer(); // create the containers        var obj1= document.getElementById(''s1'');         var obj2= document.getElementById(''menuChildren'');                 obj1 = top.topFrame.menubarcache; // storing from cache        obj2 = top.topFrame.menuchildrencache; //stroing from cache        attachevents(obj1); // attach events dynamicaaly        attachevents(obj2); // attach events dynamicaaly    } </pre>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/05/12/dom-caching-without-ajax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Atlassian Confluence Web Theme development</title>
		<link>http://goutamdey.com/2006/04/22/atlassian-confluence-web-theme-development/</link>
		<comments>http://goutamdey.com/2006/04/22/atlassian-confluence-web-theme-development/#comments</comments>
		<pubDate>Sat, 22 Apr 2006 19:41:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=13</guid>
		<description><![CDATA[Atlassian Confluence an Enterprise Wiki is not only a collaboration platform for easy documentation or manage/share your organizational knowledge, you can use it as a web-site for your org.
Confluence also provides you a development platform for your web development needs.You can actually build web sites with the help of confluence with its development features like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://atlassian.com/software/confluence/">Atlassian Confluence</a> an Enterprise <a href="http://wiki.org/wiki.cgi?WhatIsWiki" target="_blank">Wiki</a> is not only a collaboration platform for easy documentation or manage/share your organizational knowledge, you can use it as a web-site for your org.</p>
<p>Confluence also provides you a development platform for your web development needs.You can actually build web sites with the help of confluence with its development features like plug-ins (<a href="http://java.sun.com/products/servlet/" target="_blank">Servlets</a>, <a href="http://confluence.atlassian.com/display/DOC/Theme+Plugins" target="_blank">theme</a>, <a href="http://ws.apache.org/xmlrpc/">XML-RPC</a> etc.).</p>
<p>If you explore this development platform of confluence you will be amazed by its power and flexibility. But you should not expect the out-of the box solution for your web needs with professional looking user interface.</p>
<p>Default web themes which come along with the Confluence distribution will not suit you for an easy customization as an end user. But if you are a developer and looking for an easy development framework for rapid development I think Confluence could be a right choice with bit higher price tag. But it worth convincing your client in favor of using confluence because of its integrated change management system, extensibility and scalability.</p>
<p>You can implement virtually any kind of <a href="http://www.w3.org/TR/xhtml1/">XHTML</a> sites you can think off by just developing a simple web theme and velocity macros. And by doing this you are done with the features like CMS, Message Board, <a href="http://www.searchtools.com/robots/goodurls.html" target="_blank">Search Engine Friendly URLs</a>, <a href="http://www.cruftbox.com/cruft/docs/trackback.html" target="_blank">Track Back Systems</a>, Administration panel, <a href="http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html" target="_blank">RSS</a>, Site Search etc.</p>
<p>I have developed a <a href="http://64.174.140.9:8080/cms/display/reprodemo/Home">web theme</a> for my <a href="http://www.anshinsoft.com">company</a> which you can visit and feel the power of it, but obviously after visiting the core confluence to make your judgment an unbiased one.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/04/22/atlassian-confluence-web-theme-development/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
