<?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>ilsainteractive</title>
	<atom:link href="http://www.ilsainteractive.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ilsainteractive.com/blog</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 06 Jul 2011 11:57:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Agile Web Development with Rails &#8211; An Overview</title>
		<link>http://www.ilsainteractive.com/blog/?p=13</link>
		<comments>http://www.ilsainteractive.com/blog/?p=13#comments</comments>
		<pubDate>Wed, 15 Jun 2011 12:56:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ilsainteractive.com/blog/?p=13</guid>
		<description><![CDATA[Agile web development is a model for development of web applications. It is more efficient and powerful for a short timeline than other models. It incorporates face-to-face communication, and considers technical personnel as well as customers as part of the &#8230; <a href="http://www.ilsainteractive.com/blog/?p=13">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/agile.jpg"><img class="alignleft size-full wp-image-27" title="agile" src="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/agile.jpg" alt="" width="590" height="371" /></a>Agile web development is a model for development of web applications. It  is more efficient and powerful for a short timeline than other models.  It incorporates face-to-face communication, and considers technical  personnel as well as customers as part of the team. Agile web  development uses project managers and business analysts, and emphasizes  clear goals, planning and iterative delivery. Agile web development  ensures the successful completion of a product at the end of each  iteration. The Agile web development model follows planning, requirement  analysis, designing, coding, testing and documentation during  development. Successful interaction increases success of the application  because of the focus on customer involvement. This decreases problems  that come with the development team changing the product in a late stage  due to changes in requirements. Instead, both the development team and  the customers are informed, therefore customer confidence remains high  and there are minimal delays.  All tasks are performed at a previously  specified period, with just enough documentation to be effective.</p>
<p>Rails  is an open source web application framework for the Ruby programming  language. It is intended to be used with an Agile development  methodology, and is often utilized by web developers for its suitability  for short, client-driven projects.</p>
<p>Ruby on Rails is a framework  that makes it easier to develop, deploy and maintain web applications.  Soon after its initial release, Rails went from being an unfamiliar tool  to being a wide-reaching phenomenon. It has become the framework of  choice for the implementation of a wide range of Web 2.0 applications as  it is both simple and subtle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilsainteractive.com/blog/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating Flex and Rails</title>
		<link>http://www.ilsainteractive.com/blog/?p=11</link>
		<comments>http://www.ilsainteractive.com/blog/?p=11#comments</comments>
		<pubDate>Wed, 15 Jun 2011 12:55:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ilsainteractive.com/blog/?p=11</guid>
		<description><![CDATA[Since the release of Flex, large numbers of developers have been attracted to the idea of creating powerful web applications that integrate Flex and RoR. Previously we reviewed such applications successfully integrating Flex and RoR, and today we will discuss &#8230; <a href="http://www.ilsainteractive.com/blog/?p=11">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/flex-on-rails.jpg"><img class="alignleft size-full wp-image-29" title="flex-on-rails" src="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/flex-on-rails.jpg" alt="" width="590" height="393" /></a>Since the release of Flex, large numbers of developers have been  attracted to the idea of creating powerful web applications that  integrate Flex and RoR. Previously we reviewed such applications  successfully integrating Flex and RoR, and today we will discuss a new  technology that marries Flex with RoR applications by providing a means  of automating the communication between client and server.</p>
<p><em>The technology we will use for integration is &#8220;WebORB for Rails.&#8221; It is a free and open source (GPL) server made available by </em><a href="http://www.themidnightcoders.com/" target="_blank">Midnight Coders</a>.</p>
<p>Most of the articles available online are about integrating  Flex clients with Rails using raw XML over HTTP. This level of  integration is simple for the sake of a tutorial but soon it becomes  bulky as the application grows more complicated. With each new operation  on the server, a developer must spend valuable cycles serializing and  deserializing requests and responses.</p>
<p>WebORB relieves the burden of this &#8220;serialization tax&#8221; by  supporting the concept of remote objects, where Flex users can natively  invoke methods on the server and retrieve the responses all within  ActionScript, the object-oriented programming language used by Flex.</p>
<p><strong>First of all we need to install WebORB for Rails. </strong>WebORB  runs as a plug-in for Rails and is installed by simply running this  command within the root directory of a Rails application on Windows:</p>
<p><em>ruby script/plugin install</em><br />
<a title="http://themidnightcoders.net:8089/svn/weborb/" href="http://themidnightcoders.net:8089/svn/weborb/" target="_blank">http://themidnightcoders.net:8089/svn/weborb/</a></p>
<p><strong>After Installation we need to write an Application Using WebORB. </strong>The steps that are required to build a Flex-based RIA utilizing Rails are.</p>
<ul>
<li>Building the service class and drop into RAILS_APP/app/services</li>
<li>Adding an entry to RAILS_APP/config/WEB-INF/flex/remoting-config.xml for the remote service</li>
<li>Setting up a RemoteObject on the client-side using Flex that will communicate directly with the back-end service</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ilsainteractive.com/blog/?feed=rss2&#038;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Ecommerce Applications with Rails</title>
		<link>http://www.ilsainteractive.com/blog/?p=8</link>
		<comments>http://www.ilsainteractive.com/blog/?p=8#comments</comments>
		<pubDate>Wed, 15 Jun 2011 12:52:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ilsainteractive.com/blog/?p=8</guid>
		<description><![CDATA[E-Commerce is the buying and selling of products over the internet. Electronic commerce can either be Business to Business (B2B) or Business to Consumer (B2C), which is also known as e-tail or e-tailing. According to Wikipedia, Modern electronic commerce typically &#8230; <a href="http://www.ilsainteractive.com/blog/?p=8">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/ecommerce-application-development.png"><img class="alignleft size-full wp-image-31" title="ecommerce-application-development" src="http://www.ilsainteractive.com/blog/wp-content/uploads/2011/06/ecommerce-application-development.png" alt="" width="590" height="300" /></a>E-Commerce is the buying and selling of products over the internet.  Electronic commerce can either be Business to Business (B2B) or Business  to Consumer (B2C), which is also known as e-tail or e-tailing.  According to Wikipedia,</p>
<p style="text-align: justify;"><em>Modern electronic commerce typically uses the </em><a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank"><em>World Wide Web</em></a><em> at least at some point in the transaction&#8217;s lifecycle, although it can encompass a wider range of technologies such as </em><a title="E-mail" href="http://en.wikipedia.org/wiki/E-mail" target="_blank"><em>e-mail</em></a><em> as well. A large percentage of electronic commerce is conducted entirely electronically for </em><a title="Virtual" href="http://en.wikipedia.org/wiki/Virtual" target="_blank"><em>virtual</em></a><em> items such as access to premium content on a website, but most  electronic commerce involves the transportation of physical items in  some way. Online retailers are sometimes known as <strong>e-tailers</strong> and online retail is sometimes known as <strong>e-tail</strong>. Almost all big retailers have electronic commerce presence on the World Wide Web.</em></p>
<p style="text-align: justify;">E-tailing has never been easy for businesses. They have been  presented with challenges like improving their services, data security,  transaction security, electronic data interchange, internet marketing,  supply chain management, inventory management, security, electronic  funds transfer and much more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ilsainteractive.com/blog/?feed=rss2&#038;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

