<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html" />
  <link rel="self" type="application/atom+xml" href="http://www.insideria.com/atom.xml" />
  <id>tag:www.insideria.com,2009://34/tag:blogs.oreilly.com,2008:/insideria//34.22660-</id>
  <updated>2009-11-05T20:26:48Z</updated>
  <title>Comments for Anatomy of an Enterprise Flex RIA Part 1: The Tools You&#8217;ll Want (http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html)</title>
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.21-en</generator>
  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660</id>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://blogs.oreilly.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=34/entry_id=22660" title="Anatomy of an Enterprise Flex RIA Part 1: The Tools You&amp;#8217;ll Want" />
    <published>2008-01-15T15:19:29Z</published>
    <updated>2008-10-01T01:40:40Z</updated>
    <title>Anatomy of an Enterprise Flex RIA Part 1: The Tools You&#8217;ll Want</title>
    <summary>In this series, we&#8217;ll look at a small application that integrates the technologies of LCDS and EJB 3.0, and we&#8217;ll cover some timesaving tools as well as discuss how to use them to achieve a lightweight development environment for integrating an RIA with an enterprise environment.   Ready to get started?  First, a look at the tools a developer needs to follow along at home&#133;</summary>
    <author>
      <name>Tony Hillerson</name>
      
    </author>
    
    <category term="Features" />
    
    <content type="html" xml:lang="en" xml:base="http://www.insideria.com/">
      <![CDATA[<div class="ap_r" style="margin: 16px;"><a href="http://www.insideria.com/upload/2008/01/anatomy_of_an_enterprise_flex/riaseries_part1.jpg" class="highslide" onclick="return hs.expand(this)"><img src="http://www.insideria.com/upload/2008/01/anatomy_of_an_enterprise_flex/riaseries_part1.jpg" alt="riaseries_part1.jpg" title="Click to enlarge" width="148"/></a></div>In this installment of the series Anatomy of an Enterprise Flex RIA we're doing a little grunt work and installing some tools we'll be using later. Download them and read up a bit on what they do. These tools are some common &#8220;enterprise software&#8221; development tools that we'll need to get the example software up and running.

<div class="ap_r" style="width:180px;"><a href="http://www.oreilly.com/catalog/9780596514402/?CMP=ILC-dm_nav_related-books" target="_blank"><img border="0" src="http://www.oreilly.com/catalog/covers/9780596514402_cat.gif" width="180" height="233" /></a>
<div class="apcaption"><a href="http://www.oreilly.com/catalog/9780596514402/?CMP=ILC-dm_nav_related-books" target="_blank">Get your copy of Tony Hillerson's Enterprise Application Development with Flex.</a></div></div>

<p><br />
Inside <span class="yellowinlinecode"><em>src</em></span> is a directory for the main source of the project, called <span class="yellowinlinecode"><em>main</em></span>. At the same level is a folder for test code, called <span class="yellowinlinecode"><em>test</em></span>. The code goes in the <span class="yellowinlinecode"><em>main</em></span> and <span class="yellowinlinecode"><em>test</em></span> directories and is organized by the type of language&#8212;in this case, a <span class="yellowinlinecode"><em>java</em></span> directory holds the Java code in the data project directory, and a <span class="yellowinlinecode"><em>java</em></span> and <span class="yellowinlinecode"><em>flex</em></span> directory in the web project.  <br />
In this series, we&#8217;ll look at a small application that integrates the technologies of LCDS and EJB 3.0, and we&#8217;ll cover some timesaving tools as well as discuss how to use them to achieve a lightweight development environment for integrating an RIA with an enterprise environment.   Ready to get started?  </p>

<p><br />
<strong>Tools</strong></p>

<p>In this section, I&#8217;ll list the tools we&#8217;ll be using. Follow along and install them (or the listed alternatives) if you don&#8217;t have them already.</p>

<p><br />
<strong>MySQL</strong></p>

<p>MySQL is an open source, cross-platform, enterprise-quality, database server. I suggest that you use MySQL as your database server for these examples, although you can use another one if you prefer.</p>

<p>To install MySQL, go to <span class="redinlinecode"><a href="http://dev.mysql.com/downloads/mysql/" target="_blank">http://dev.mysql.com/downloads/mysql/</a></span>, download, and follow the instructions there. A few additional tools you may want are available at <span class="redinlinecode"><a href="http://dev.mysql.com/downloads/gui-tools/" target="_blank">http://dev.mysql.com/downloads/gui-tools/</a></span>.</p>

<p><br />
<strong>Java</strong></p>

<p>Java is a language and platform tailored to writing business applications. It was the first popular object-oriented language to gain almost ubiquitous support in the business community because of its powerful platform features, its virtual machine approach to platform independence, and its relatively easy-to-learn C-like syntax. Java is a prerequisite of most of these other tools.</p>

<p>To install Java go to <span class="redinlinecode"><a href="http://www.java.com/en/download/" target="_blank">http://www.java.com/en/download/</a></span>, download, and follow the instructions there for your platform. Make sure Java is in your path by typing <span class="redinlinecode">`java -version`</span> at a command line.</p>

<p><br />
<strong>Ant</strong></p>

<p>Ant is a Java-based build and automation tool. With Ant, it&#8217;s easy to quickly describe a set of tasks that perform such jobs as compilation, system execution, or simply copying or moving of files on the system.<br />
To install Ant go to http://ant.apache.org/, download, and follow the site&#8217;s instructions for your platform. Make sure you follow the instructions to put Ant in your path. Test by calling <span class="redinlinecode">`ant -version`</span>.</p>

<p><br />
<strong>Maven</strong></p>

<p>Maven is like Ant in some ways, but with a lot of other features and some philosophy thrown in. Maven&#8217;s creators felt that projects have many aspects which make them the same from a build process perspective; therefore, why should you have to write common tasks or processes every time you start a new project? Maven is a build process management tool, not just a tool for automating a build. Maven is also a code project management tool, and it has some good ideas about how our project should be structured.</p>

<p>Maven also has a good dependency management system for Java. That means all you have to do is list which JARs your project depends on, and Maven will find those JARs online, as well as any dependencies those JARs have. All of those will be available at compile time and, if needed, will be packaged with any artifacts your project produces.</p>

<p>Maven does a lot of what we need, but for some specific tasks, we&#8217;ll use Ant to quickly script parts of the process as well. Luckily, it&#8217;s easy to extend Maven with Ant.</p>

<p>To install Maven go to <span class="redinlinecode"><a href="http://maven.apache.org/download.html" target="_blank">http://maven.apache.org/download.html</a></span>, download, and follow the site&#8217;s instructions for your platform. Make sure Maven is in your path, and test by calling <span class="redinlinecode">`mvn -v`</span> from a command line.</p>

<p><br />
<strong>DDLUtils and DBUnit</strong></p>

<p>We will use DDLUtils and DBUnit to help us manage the structure of our database, as well as the data it contains. DDLUtils is a project that will let us define our database schema in a database-agnostic form, and automate the updates to the schema across our team as part of the build process.</p>

<p>DBUnit is a test framework for data. It will allow us to define data sets in XML, load them during testing, and make sure the data ends up in our process where we think it should be.<br />
DBUnit will be fetched by Maven. </p>

<p>The DDLUtils libraries are included with the Maven library package.</p>

<p><br />
<strong>TestNG</strong></p>

<p>TestNG is a Java test framework. It will allow us to write unit tests for the Java code we&#8217;re going to write.</p>

<p>Maven will also fetch TestNG for us. Why, thanks, Maven!</p>

<p><br />
<strong>EJB 3.0</strong> </p>

<p>EJB 3.0 is one of the stars of our project. It&#8217;s going to let us persist Java objects to the database quickly and easily with a minimum of configuration.</p>

<p>The EJB 3.0 libraries are included with the Maven library package.</p>

<p><br />
<strong>JBoss and Embedded JBoss</strong></p>

<p>JBoss is an open source J2EE application server that supports the EJB 3.0 spec. We&#8217;ll also use a JBoss project, called Embedded JBoss, to run the persistence tests without having to run them in the server along with the extra hassle that causes.</p>

<p>To install JBoss go to <span class="redinlinecode"><a href="http://labs.jboss.com/jbossas/downloads" target="_blank">http://labs.jboss.com/jbossas/downloads</a></span>, download, and follow the site&#8217;s instructions for your platform. </p>

<p>The Embedded JBoss libraries are under the source code installation instructions.</p>

<p><br />
<strong>Eclipse and Flex Builder</strong></p>

<p>Eclipse is an industry-standard IDE platform that offers powerful Java development features. Adobe&#8217;s Flex Builder is a plug-in for the platform, and it is the easiest way to develop with Flex. It&#8217;s not required, though, because the Flex SDK has command-line tools for compiling Flex. We&#8217;ll discuss developing with both, using Ant and Maven to automate the compilation of Flex resources.</p>

<p>To install Eclipse go to <span class="redinlinecode"><a href="http://www.eclipse.org/downloads/ " target="_blank">http://www.eclipse.org/downloads/ </a></span> and get the latest Eclipse SDK, not a bundle. Download and follow the site&#8217;s instructions for your platform.</p>

<p>To install Flex Builder (a 30-day trial), go to <span class="redinlinecode"><a href="http://www.adobe.com/products/flex/flexbuilder/ " target="_blank">http://www.adobe.com/products/flex/flexbuilder/ </a></span> and follow the instructions to download, then follow the instructions to install the Flex Builder plug-in, not the standalone version. This will allow you to work with Flex alongside Java.</p>

<p><br />
<strong>Flex</strong></p>

<p>The other star of our project, Flex is a declarative language for Flash interface design. In my opinion, it is the language and platform that offer the best balance between power, ease of use, and platform independence for developing RIAs.</p>

<p>You don&#8217;t need the SDK if you have Flex Builder installed. If you don&#8217;t have Flex Builder, go to <span class="redinlinecode"><a href="http://www.adobe.com/products/flex/sdk/" target="_blank">http://www.adobe.com/products/flex/sdk/</a></span>, follow the download and installation instructions, and test by calling <span class="redinlinecode">`mxmlc --version`</span> from a command line. </p>

<p><br />
<strong>LiveCycle Data Services</strong></p>

<p>LCDS is a Java and Flex library that works with a J2EE application to provide Flex with a powerful and easy way to connect to and communicate with an enterprise system. It provides services such as data management, which allows Flex to automatically send changes to data on the frontend to the backend for possible persistence; conflict management, to govern and help synchronize changes from occasionally connected clients; and support for connecting to document services provided by LCDS.</p>

<p>The LCDS libraries are available in the Maven library package.</p>

<p><br />
<strong>Cairngorm</strong></p>

<p>Cairngorm is the hard-to-pronounce but easy-to-use micro-framework for Flex. Cairngorm provides a number of patterns to help architect your Flex application in a manner that promotes modularity and a standard application design. When a developer is familiar with Cairngorm, it&#8217;s easy for him to come up to speed on any other Cairngorm project. The modularity also makes it easy for a team to work on Flex projects together.</p>

<p>Cairngorm is included with the source code for the sample application.</p>

<p><br />
<strong>Cairngen</strong></p>

<p>Cairngorm has been accused of being verbose by some. Each command requires an event class, a command class, and a modification of the controller class. I think Cairngorm is hardly verbose compared to, say, EJB 2.1, but it is tedious to build all those classes by hand, especially if you&#8217;re doing a lot of commands at once, as you will in the beginning of a project. A code generator such as Eric Feminella&#8217;s Cairngen (<span class="redinlinecode"><a href="http://www.ericfeminella.com/blog/cairngen/" target="_blank">http://www.ericfeminella.com/blog/cairngen/</a></span>) is an easy way to cut down on the tedium. </p>

<p>Cairngen is included with the sample application.</p>

<p><br />
<strong>FlexUnit and FlexUnit Ant Tasks</strong></p>

<p>FlexUnit is a test framework for Flex, available at <span class="redinlinecode"><a href="http://code.google.com/p/as3flexunitlib/" target="_blank">http://code.google.com/p/as3flexunitlib/</a></span>. Peter Martin of Adobe Consulting has some <span class="redinlinecode"><a href="http://weblogs.macromedia.com/pmartin/archives/2006/06/new_flexunit_an.cfm" target="_blank">Ant tasks</a></span> that make it possible to run FlexUnit tests with Ant, provided there&#8217;s a way to run a <span class="yellowinlinecode">.swf</span> file from the command line, such as with a browser. We&#8217;ll use the Ant tasks to run FlexUnit tests during the test phase of the sample project&#8217;s Maven build.</p>

<p>FlexUnit is included with the source code, and the Ant tasks library is available with the Maven library package.</p>

<p><a href="http://www.insideria.com/2008/01/running-the-sample-code-last.html">In the next installment</a>  we'll have a look at the sample code we'll be covering throughout this series.  You can always find the entire series <a href="http://www.insideria.com/series-anatomy-flex.html">here</a>.</p>]]>
      
    </content>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014302</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014302" />
    <title>Comment from hardik on 2008-01-21</title>
    <author>
        <name>hardik</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>waiting for next installment to come, thanks for posting this...</p>]]>
    </content>
    <published>2008-01-21T20:00:16Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014307</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014307" />
    <title>Comment from bartek on 2008-01-21</title>
    <author>
        <name>bartek</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Great start!<br />
Looking forward to it</p>]]>
    </content>
    <published>2008-01-21T21:22:16Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014341</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014341" />
    <title>Comment from David Stockton on 2008-01-22</title>
    <author>
        <name>David Stockton</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>A couple of tools I'd not heard of here. Thanks!</p>

<p>David</p>]]>
    </content>
    <published>2008-01-22T11:07:25Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014353</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014353" />
    <title>Comment from Leviduncan on 2008-01-22</title>
    <author>
        <name>Leviduncan</name>
        <uri>http://www.dvdgrafx.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dvdgrafx.com">
        <![CDATA[<p>Very Cool. Eager to continue...</p>]]>
    </content>
    <published>2008-01-22T15:37:12Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014358</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014358" />
    <title>Comment from Tony Hillerson on 2008-01-22</title>
    <author>
        <name>Tony Hillerson</name>
        <uri>http://thillerson.blogspot.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://thillerson.blogspot.com">
        <![CDATA[<p>Thank you, guys. The nature of serialization means that the content will be spread out over the next few weeks, but I'm glad there's already some enthusiasm.</p>

<p>I'll try to provide some  running commentary in the comments to any questions you may have. See you here next time!</p>]]>
    </content>
    <published>2008-01-22T16:28:24Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014435</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014435" />
    <title>Comment from Seun Ojo on 2008-01-23</title>
    <author>
        <name>Seun Ojo</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>Nice One!</p>

<p>I often hear of some of these tools, but have not exactly seen it put to work in a practical environment, where there suitability and the efficiency they add to the development process are clearly amplified.</p>

<p>Im chilling eagerly...</p>

<p>Thanks</p>]]>
    </content>
    <published>2008-01-23T08:48:32Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014670</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014670" />
    <title>Comment from Austin Dimmer on 2008-01-24</title>
    <author>
        <name>Austin Dimmer</name>
        <uri>http://www.polarstorm.net</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.polarstorm.net">
        <![CDATA[<p>Dude,</p>

<p>Seems like this will be a great article, I'm pretty much starting out on the RIA journey so much of what your talking about will go over my head. I appreciate the fact that you're spending the time to put the post together. I'll be tuned in! Thanks<br />
</p>]]>
    </content>
    <published>2008-01-25T00:53:30Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014723</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014723" />
    <title>Comment from Rostislav Siryk on 2008-01-28</title>
    <author>
        <name>Rostislav Siryk</name>
        <uri>http://en.flash-ripper.com/</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://en.flash-ripper.com/">
        <![CDATA[<p>Very nice start, seems like you prepared something pretty serious for the developers. I'm tuned in, subscribed, thinking about translation this series into Russian — would you mind?</p>]]>
    </content>
    <published>2008-01-28T13:37:40Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2014750</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2014750" />
    <title>Comment from David Welch on 2008-01-28</title>
    <author>
        <name>David Welch</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p>After looking through the enterprise-flex-code.zip, I have to admit that this is truly an impressive undertaking, given the "lightweight development environment" of using EJB and Cairngorm.</p>

<p>I suppose the author(s) are used to writing EJB's, but, let's get realistic here.  The Java world is NOT writing EJB's anymore unless they have to.  Everyone's moving back to manageable architectures, even POJO is now more popular and supportable.  </p>

<p>I can only think one is trying to "flex" their Java muscle (excuse the pun) needlessly here.  Developers don't want to learn how to fit an EJB solution with Flex...they want to learn the best integration methods for Flex and their associated data services, which, most likely, will not be EJB.</p>

<p>I like the thoroughness, but, implementing a complex EJB layer in an "best practices" example certainly does NOT promote learning "Enterprise" RIA.<br />
</p>]]>
    </content>
    <published>2008-01-29T04:11:39Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2016097</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2016097" />
    <title>Comment from Chris Brind on 2008-03-24</title>
    <author>
        <name>Chris Brind</name>
        <uri>http://techy.brindy.org.uk</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://techy.brindy.org.uk">
        <![CDATA[<p>Hi David,</p>

<p>You make some interesting comments there and I would be inclined to agree.  </p>

<p>I would even go so far as to question why someone would implement a green field project using an RDBMS when there are technologies such as db4o around.  </p>

<p>I used to allocate about 30% of my development estimates to having to deal with the database layer, and that certainly didn't change with EJB3.0.  EJB 2 was messy, but I had code generators (e.g. WSAD) so I'm not saving much, if anything, with the new "streamlined" version of EJB.</p>

<p>For my current project I am using an OODBMS (db4o) for data storage and as a result my "database" estimate has been so low it hasn't even been worth putting it in to our plan.</p>

<p>With regards to Flex, when the developer is used to working with objects anyway it seems to me as though building RDBMS schema and implementing a complicated data services layer is a massive overhead in terms of learning curve and development effort.</p>

<p>Cheers,<br />
Chris<br />
</p>]]>
    </content>
    <published>2008-03-24T16:59:10Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2016243</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2016243" />
    <title>Comment from Eric Feminella on 2008-03-31</title>
    <author>
        <name>Eric Feminella</name>
        <uri>http://www.ericfeminella.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.ericfeminella.com">
        <![CDATA[<p>The Cairngen Project has been moved to Google Code:<br />
<a href="http://code.google.com/p/cairngen/">http://code.google.com/p/cairngen/</a></p>

<p>Thanks,<br />
Eric</p>]]>
    </content>
    <published>2008-03-31T21:26:22Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2016472</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2016472" />
    <title>Comment from Andy on 2008-04-10</title>
    <author>
        <name>Andy</name>
        <uri>http://www.busycode.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.busycode.com">
        <![CDATA[<p>Busycode Inc. helps you to build Adobe Flex applications with very low hourlyrate.<br />
Want to outsource a project? <br />
Please visit <a href="http://www.busycode.com.">http://www.busycode.com.</a><br />
My email is: cogoing@gmail.com<br />
</p>]]>
    </content>
    <published>2008-04-10T09:36:39Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2016957</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2016957" />
    <title>Comment from Peter Delaney on 2008-05-06</title>
    <author>
        <name>Peter Delaney</name>
        <uri>http://www.putnam.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.putnam.com">
        <![CDATA[<p>Hello;</p>

<p>I originally had all of the tools already installed on this project but had problems building the boogie-ui portion of the project.   I installed the latest versions of all the tools and tried again, but keep having the same problem.</p>

<p>Here is my problem when trying to build the project like the instructions say:  mvn package</p>

<p><strong><br />
mvn -Dmaven.test.skip=true package I turned testing off because test fail.  I am not concerned about them right now just want to launch the application.<br />
This then builds the bookie-data, which is fine then the bookie-ui, which is where I am having my problem.   Here is my error<br />
[INFO] Error executing ant tasks<br />
Embedded error: The following error occurred while executing this line:<br />
C:\Temp\FlexExample\code\bookie-ui\build.xml:33: Execute failed: java.io.IOException: CreateProcess: C:\tools\flex3\bin\mxmlc -context-root /bookie -load-config C:\Temp\FlexExample\code\bookie-ui\src\main\bookie.war\WEB-INF\flex\flex-config.xml -services C:\Temp\FlexExample\code\bookie-ui\src\main\bookie.war\WEB-INF\flex\services-config.xml index.mxml error=193<br />
</strong></p>

<p>It is the ant build.xml script line 33 where it tries to build the flex files.  I tried performing this on the command line with the mxmlc compiler using the same switches as defined in the build.xml, but I still get the same error.</p>

<p>If anyone has seen this problem or could point me in the right direction that would be awesome.  I am trying to get my company to move towards the RIA/Java technology and this example is what our architecture will look like.  <br />
Much help would be appreciate;<br />
Thanks<br />
Peter</p>]]>
    </content>
    <published>2008-05-06T15:17:35Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2017485</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2017485" />
    <title>Comment from Peter on 2008-06-01</title>
    <author>
        <name>Peter</name>
        <uri></uri>
    </author>
    <content type="html" xml:lang="en" xml:base="">
        <![CDATA[<p><br />
For any one that is interested.  I found a very good tutorial on this same topic that in my mind is much easier to follow and I was actually able to follow the instructions and build it.</p>

<p><a href="http://sebastien-arbogast.com/2008/04/15/flex-spring-and-blazeds-the-full-stack-part-4/">http://sebastien-arbogast.com/2008/04/15/flex-spring-and-blazeds-the-full-stack-part-4/</a></p>

<p>Peter</p>]]>
    </content>
    <published>2008-06-02T00:14:52Z</published>
  </entry>

  <entry>
    <id>tag:blogs.oreilly.com,2008:/insideria//34.22660-comment:2017950</id>
    <thr:in-reply-to ref="tag:blogs.oreilly.com,2008:/insideria//34.22660" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html"/>
    <link rel="alternate" type="text/html" href="http://www.insideria.com/2008/01/anatomy-of-an-enterprise-flex.html#comment-2017950" />
    <title>Comment from Ahad Bokhari on 2008-06-17</title>
    <author>
        <name>Ahad Bokhari</name>
        <uri>http://www.blogspot.fluidnewmedia.com</uri>
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.blogspot.fluidnewmedia.com">
        <![CDATA[<p>Great start to the series!!  Will be reading through all of them !!</p>]]>
    </content>
    <published>2008-06-17T11:40:47Z</published>
  </entry>

</feed
