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

<channel>
	<title>Goutamdey.com &#187; Web 2.0</title>
	<atom:link href="http://goutamdey.com/blog/web-development/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://goutamdey.com</link>
	<description>Web development blog from Kolkata(Calcutta),India</description>
	<lastBuildDate>Thu, 07 Jan 2010 20:54:02 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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[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 target [...]]]></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  </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:</p>
<pre>    <code>    &lt;input type="button" value="Optional Fields" onClick="renderOptionalFields()"/&gt;    &lt;div id="optionalFieldsContainer"&gt;&lt;/div&gt;    </code></pre>
<pre>&lt;script&gt;function  renderOptionalFields(){	var url ="/appcontext/yourDispatch.action?method=   renderOptionFields";	var params ="";	var updatePage = new Ajax.Updater(''optionalFieldsContainer'',url,		{			method:''get'',			parameters:params,			onFailure:reportError		}	);}function reportError(request) {	alert("Error Updaing Page");}&lt;/script&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/12/12/integrating-prototype-ajax-engine-with-struts-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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[RIA]]></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 at all. Because time required developing [...]]]></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>
<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>
		<slash:comments>0</slash:comments>
		</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[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></p>
<h3>Where is the Silver bullet?</h3>
<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.</p>
<h3>Where to start?</h3>
<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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIA and Java Enterprise App Part &#8211; 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[RIA]]></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 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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office on the web</title>
		<link>http://goutamdey.com/2006/02/27/office-on-the-web/</link>
		<comments>http://goutamdey.com/2006/02/27/office-on-the-web/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 18:14:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web-office]]></category>
		<category><![CDATA[web-tops]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=5</guid>
		<description><![CDATA[A new trend to collaborative enterprise wide working culture is catching up on the web. A new trend, all Blue-Giants are looking at. A trend to empower the common people to create, update and share there work in a collaborative fashion and enhance the overall team efficiency to a new high level.Global giants like Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>A new trend to collaborative enterprise wide working culture is catching up on the web. A new trend, all Blue-Giants are looking at. A trend to empower the common people to create, update and share there work in a collaborative fashion and enhance the overall team efficiency to a new high level.Global giants like Microsoft and Google are all ready on the race, though Microsoft is ahead of Google with it&#8217;&#8217;s beta version of products like Office Live at present. but Google is also catching up very fast with it&#8217;&#8217;s <a title="hosted email  service " href="http://gmail.com/" target="blank_">hosted email service </a>for organizations and there are <a title="signs" href="http://blogs.zdnet.com/Google/index.php?p=108" target="blank_">signs</a> of an impending Google Calendar product and <a href="http://pages.google.com" target="_blank">Page Creation</a> service.Sound interesting, then you can also try a few all ready on the web for FREE. Writely, NumSum, IRows, BaseCamp, Zimbra, Goowy to name a few of them. All Most all are trying to catch up the trend of collaborative CMS on the web.<span id="more-5"></span>We can categorized the Services as, <strong>Web Email, Word Processing, Spreadsheet, Calendar</strong>, <strong>Presentations, Project Management</strong> and some <strong>Mini-Suites.</strong><strong>Web Email.</strong>Though there are some hosted email application like <a title="Webmail.us" href="http://www.webmail.us/" target="blank_">Webmail.us</a> and <a title="Sproutit.com" href="http://www.sproutit.com/" target="blank_">Sproutit.com</a> but <a title="Gmail" href="http://gmail.com/" target="blank_"><span class="misspell">Gmail</span></a> is evolving as best choice for it&#8217;&#8217;s features like tagging, searching, IM and desktop client integration etc.<strong>Word Processing</strong>I would like to give 8 out of 10 to <a title="Writely" href="http://www.writely.com/" target="blank_"><span class="misspell">Writely</span></a> for it&#8217;&#8217;s features like import and export into Word format, embedded images, a WYSIWYG editor, drag and drop functionality, sharing documents, tagging, convert to PDF. Though there are some other services like <a title="Writeboard" href="http://www.writeboard.com/" target="blank_"><span class="misspell">Writeboard</span></a>, <a title="Rallypoint" href="http://www.rallypointhq.com/" target="blank_"><span class="misspell">Rallypoint</span></a>, and <a title="JotSpot Live" href="http://www.jotlive.com/" target="blank_"><span class="misspell">JotSpot</span> Live</a>.<strong>Spreadsheet</strong><a href="http://www.numsum.com/" target="_new"><span class="misspell">NumSum</span></a> and <a href="http://www.irows.com/"><span class="misspell">iRows</span></a> are good to check, and both provide collaborative editing. The other you can check are <a href="http://tracker.jot.com/"><span class="misspell">JotSpot</span> Tracker</a> and <a href="http://trimpath.com/project/wiki/TrimSpreadsheet"><span class="misspell">TrimSpreadsheet</span>.</a>.<!--more--><strong>Calendar</strong>In this service front you can find a lot of competing services like <a href="http://www.30boxes.com/">30 Boxes</a>, <a href="http://www.airset.com/"><span class="misspell">Airset</span></a> ,<a href="http://www.calendarhub.com/"><span class="misspell">CalendarHub</span></a>, <a href="http://www.techcrunch.com/2005/08/23/hula-possibly-a-new-ajax-calendar//">Hula</a>, <a href="http://joyent.com/"><span class="misspell">Joyent</span></a>, <a href="http://www.kiko.com/"><span class="misspell">Kiko</span></a>, <a href="http://www.planzo.com/"><span class="misspell">Planzo</span></a>, <a href="http://www.spongecell.com/"><span class="misspell">SpongeCell</span></a> and <a href="http://www.trumba.com/"><span class="misspell">Trumba</span></a>. But my bet is on <a href="http://www.calendarhub.com/"><span class="misspell">CalendarHub</span></a>.<strong>Presentations</strong>This is a category in which it is very hard to find out some really good services. <a href="http://www.meyerweb.com/eric/tools/s5/">S5</a> a service model is there as &#8220;A Simple Standards-Based Slide Show System&#8221;. It&#8217;&#8217;s based on XHTML, CSS, and JavaScript. But it&#8217;&#8217;s not a product. <a href="http://slideml.bitflux.ch/"><span class="misspell">SlideML</span></a> is an XML format for Slideshows. <a title="Anshinsoft " href="http://anshinsoft.com/" target="blank_"><span class="misspell">Anshinsoft</span> </a>has a product called <a title="REPro " href="http://202.54.74.123:8080/repro/startup.jsp" target="blank_"><span id="bad_word" class="misspell">REPro,</span> </a>which does not falls under collaborative hosted app model, but they have there Powerpoint format support in their reporting solution which could become a good alternative option for them who are really finding a pre-formatted presentation software on web.<strong>Project Management</strong>37Signal&#8217;&#8217;s <a href="http://basecamphq.com/"><span class="misspell">Basecamp</span></a> is only reliable services at the moment as far as my Googlying capability is concern.<strong>Mini-Suites</strong><a href="http://www.zimbra.com/"><span class="misspell">Zimbra</span></a> a collaborative communication suite with very impressive communication tools for enterprise with a heft API set for future development and integration. <a href="http://www.goffice.com/"><span class="misspell">gOffice</span></a> is a good choice also to start up for it&#8217;&#8217;s features like word processing, spreadsheet, presentation and Desktop publishing. <a href="http://webserver002.goowy.com/" target="_self"><span class="misspell">Goowy</span></a> is the alternative if you are keen on interface that you are working on.</p>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/02/27/office-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office Live Basics Beta &#8211; Free web hosting for you from Microsoft</title>
		<link>http://goutamdey.com/2006/02/26/microsoft-office-live-basics-beta-free-web-hosting-for-you-from-microsoft/</link>
		<comments>http://goutamdey.com/2006/02/26/microsoft-office-live-basics-beta-free-web-hosting-for-you-from-microsoft/#comments</comments>
		<pubDate>Sun, 26 Feb 2006 18:05:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://goutamdey.gdzine.net/?p=3</guid>
		<description><![CDATA[Don&#8221;t miss the opportunity to host your dream website for free. Host your personal site or business site, it does not matter to Microsoft, they are in mood to catch the netizens with the Microsoft Office Live Basics Beta offering. Microsoft Office Live Basics provides your company with its own domain name, hosting, Web site, [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8221;t miss the opportunity to host your dream website for free. Host your personal site or business site, it does not matter to Microsoft, they are in mood to catch the netizens with the Microsoft Office Live Basics Beta offering. <a title="Microsoft Office Live Basic" href="http://officelive.microsoft.com/OfficeLiveBasic.aspx" target="_blank">Microsoft Office Live Basics</a> provides your company with its own domain name, hosting, Web site, and e-mail accounts for free.Hosting features you can avail for free are as follows:</p>
<ul>
<li>Free hosting</li>
<li>30 MB of Web site storage</li>
<li>10 GB of bandwidth</li>
<li>No setup or hidden fees</li>
<li>Online customer support</li>
<li>Daily backup (data retained for 30 days)</li>
</ul>
<p>To use Microsoft Office Live Basics, you need the following:Â </p>
<ul>
<li>Internet Explorer 5.5 with Service Pack 4 (SP4) or later running on Windows 98,</li>
<li>Windows 2000, Windows XP, or Windows Server 2003</li>
<li>Internet access via dial-up or broadband</li>
<li>Super VGA (800 x 600) or higher-resolution display</li>
<li>Certain features require Microsoft Office 2000 or higher</li>
<li>Certain features require Internet Explorer 5.5 or later, Microsoft Office 2000 or later, and Windows XP</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://goutamdey.com/2006/02/26/microsoft-office-live-basics-beta-free-web-hosting-for-you-from-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.372 seconds -->
