Today I'm quite satisfied of what I did. Because I can run and deploy Coldfusion Application in Google App Engine with OpenBlueDragon. It's cool that we don't need to buy Coldfusion Server if we want to host our Coldfusion project. It's 100% FOC just like PHP. Unfortunately, 10% of Coldfusion function and tags are not supported in OpenBlueDragon. I've developed RSS Feed reader project and hosted it in Google App Engine
2<cfhttp url="#source#" />
3<cfset myBlogXMLDoc = xmlParse(cfhttp.filecontent) />
4<cfset BlogNodes = xmlSearch(myBlogXMLDoc,'/rss/channel/item') />
Above coding stands for fetching data from my blog. In Adobe Coldfusion, to read data from RSS, we can use
2 <cfloop from="1" to="10" index="i">
3 <!---
4 The array contents need to parsed
5 so you can easily get '
6 at the child nodes children and attributes.
7 --->
8 <cfset BlogXML = xmlparse(BlogNodes[i]) />
9 <div id="title">#BlogXML.item.title.xmlText#</div>
10 <div id="date">#BlogXML.item.pubDate.xmlText#</div>
11 <div id="description">#BlogXML.item.description.xmlText#</div>
12 <div id="link"><a href="#BlogXML.item.link.xmlText#" target="_blank">Read More</a></div>
13 </cfloop>
14</cfoutput>
Above coding stands for displaying Blog entities from my blog. You can see example here. It's not my wordpress blog. It's just clone.

Android
Top of Page
#1 by Tim Leach on 9/8/10 - 11:41 AM
#2 by ppshein on 9/8/10 - 6:18 PM
I'll post how to deploy Coldfusion Code in Google App soon.
Best,
Pyae Phyoe Shein