<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Green Threading, Psuedo Threads, or AIR as a server?</title>
	<atom:link href="http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<lastBuildDate>Wed, 28 Dec 2011 05:30:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Rich Tretola</title>
		<link>http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/comment-page-1/#comment-39347</link>
		<dc:creator>Rich Tretola</dc:creator>
		<pubDate>Thu, 22 Jan 2009 14:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=850#comment-39347</guid>
		<description>Yes, Merapi would be a possible solution and I have worked with Merapi in the past. Unfortunately, you can not start Merapi from an AIR application.</description>
		<content:encoded><![CDATA[<p>Yes, Merapi would be a possible solution and I have worked with Merapi in the past. Unfortunately, you can not start Merapi from an AIR application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: todd</title>
		<link>http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/comment-page-1/#comment-39338</link>
		<dc:creator>todd</dc:creator>
		<pubDate>Thu, 22 Jan 2009 12:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=850#comment-39338</guid>
		<description>I should add that I had a client build their own AIR-like functionality for an application that only ran on Windows.  They embedded IE in a .NET application and ran all their application modules, which were SWF files that communicated with an embedded Python webserver for communicating to the file system.  It&#039;s similar to what Merapi does, but this pre-dates AIR by a couple of years. 

I&#039;m thinking for a software development house wanting to leverage the beauty of Flex or UI screens, but building high-level custom apps might be able to cobble up something like this without much difficulty.  You don&#039;t get the all the AIR, but you most likely don&#039;t need all the AIR APIs, and you get better control of the install.  The only thing I haven&#039;t looked into is on OS X what would be required to embed WebKit in a native OSX runtime.  The lightweight Python server should be able to be mostly cross-platform.

Again, I&#039;d stress this is for a software development house willing and who has the technical knowledge to pull this off, as opposed to a standard Web 2.0 company that wants to build a useful AIR application in the matter of a few weeks to integrate into existing services.   

(Writing about this is on a list of things I&#039;m supposed to do in the next 6 months.)

Anyway, I&#039;ll be anxiously watching your experiments as I&#039;m always looking for new ways to push the platform.</description>
		<content:encoded><![CDATA[<p>I should add that I had a client build their own AIR-like functionality for an application that only ran on Windows.  They embedded IE in a .NET application and ran all their application modules, which were SWF files that communicated with an embedded Python webserver for communicating to the file system.  It&#8217;s similar to what Merapi does, but this pre-dates AIR by a couple of years. </p>
<p>I&#8217;m thinking for a software development house wanting to leverage the beauty of Flex or UI screens, but building high-level custom apps might be able to cobble up something like this without much difficulty.  You don&#8217;t get the all the AIR, but you most likely don&#8217;t need all the AIR APIs, and you get better control of the install.  The only thing I haven&#8217;t looked into is on OS X what would be required to embed WebKit in a native OSX runtime.  The lightweight Python server should be able to be mostly cross-platform.</p>
<p>Again, I&#8217;d stress this is for a software development house willing and who has the technical knowledge to pull this off, as opposed to a standard Web 2.0 company that wants to build a useful AIR application in the matter of a few weeks to integrate into existing services.   </p>
<p>(Writing about this is on a list of things I&#8217;m supposed to do in the next 6 months.)</p>
<p>Anyway, I&#8217;ll be anxiously watching your experiments as I&#8217;m always looking for new ways to push the platform.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: todd</title>
		<link>http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/comment-page-1/#comment-39336</link>
		<dc:creator>todd</dc:creator>
		<pubDate>Thu, 22 Jan 2009 12:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=850#comment-39336</guid>
		<description>That&#039;s a lot of effort to get around a pretty big issue with AIR that separates it from real desktop toolkits.  Hopefully we&#039;ll see something to address this in the future because AIR still has the advantage of building beautiful apps that the other toolkits lack.

In AIR, I went through great lengths to scan a directory of images, recrop them, apply some image mask styling, etc...While I eventually got it working OK through event-chaining, the code was way more cumbersome than working with either .NET Callback threading or Java threading environments.

Would Merapi be able to facilitate your use-case (I heard a rumor they&#039;re supporting callbacks/responders now), or are you just doing something experimental to show another way of working around it?</description>
		<content:encoded><![CDATA[<p>That&#8217;s a lot of effort to get around a pretty big issue with AIR that separates it from real desktop toolkits.  Hopefully we&#8217;ll see something to address this in the future because AIR still has the advantage of building beautiful apps that the other toolkits lack.</p>
<p>In AIR, I went through great lengths to scan a directory of images, recrop them, apply some image mask styling, etc&#8230;While I eventually got it working OK through event-chaining, the code was way more cumbersome than working with either .NET Callback threading or Java threading environments.</p>
<p>Would Merapi be able to facilitate your use-case (I heard a rumor they&#8217;re supporting callbacks/responders now), or are you just doing something experimental to show another way of working around it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Douglas Knudsen</title>
		<link>http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads-or-air-as-a-server/comment-page-1/#comment-39023</link>
		<dc:creator>Douglas Knudsen</dc:creator>
		<pubDate>Wed, 21 Jan 2009 03:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/?p=850#comment-39023</guid>
		<description>This the topic?  http://360flex.uservoice.com/pages/general/suggestions/104726-building-an-air-video-recording-spy-camera-with-motion-detec   I&#039;ve voted for this, quite interested in your outcome on this as I&#039;m working with a application that has some heavy computations running for a moment and the UI gets the &quot;Not Responding&quot; message.  Using the psuedo threading at the moment.

peas

DK</description>
		<content:encoded><![CDATA[<p>This the topic?  <a href="http://360flex.uservoice.com/pages/general/suggestions/104726-building-an-air-video-recording-spy-camera-with-motion-detec" rel="nofollow">http://360flex.uservoice.com/pages/general/suggestions/104726-building-an-air-video-recording-spy-camera-with-motion-detec</a>   I&#8217;ve voted for this, quite interested in your outcome on this as I&#8217;m working with a application that has some heavy computations running for a moment and the UI gets the &#8220;Not Responding&#8221; message.  Using the psuedo threading at the moment.</p>
<p>peas</p>
<p>DK</p>
]]></content:encoded>
	</item>
</channel>
</rss>

