Thursday, February 5, 2009

Merapi is the bridge between Web and Desktop software


The Merapi Project

Merapi is the bridge between Web and Desktop software 


Merapi, a project run by the team at Roundarch Labs, has been a long time in the making, but on July 14th, 2008 the initial Merapi Alpha release candidate was distributed to the Merapi Alpha community of users.
On Wednesday, May 20th, Merapi is officially Open Source! After almost a year of  heavy development, we have finally released Merapi's Java-to-AIR bridge framework as Open Source, and are hosting the project on Google Code.
Merapi is a technology that can be used as a messaging bridge between applications that run in the Adobe Flash player or Adobe AIR and applications written in Java.
This is really exciting to the Java, Adobe Flex and Adobe AIR development communities and everyone on the Merapi team is excited as can be to start working with this larger community group to uncover bugs, add features and shape the concept of Merapi into the backbone of killer applications across the globe. Since the initial release, the community has provided a lot of feedback to the Merapi team, and the industry has started to take notice of what we are doing, and what Merapi can be used for.
While we are working hard to improve the core functionality and developer experience when using Merapi, members of the Merapi project team are constantly out an about at conferences, user groups, talking to developers,  analysts and members of the "Web" media about what we are doing and about how Merapi can be used to create fundamental changes in the way we design and develop software applications.
For more information about Merapi, how you can use it, how it is being used, and what it means for the future of Web and Desktop software development, we suggest you check out the information posted on this Web site, by searching Google,  reading through the Merapi Project forums, or by checking out some of the Merapi project member's own personal Web sites: Adam Flater (founder, architect) - adamflater.net, Dave Meeker (chief project instigator) - whatanexperience.org, orthese other blogs/postings.
To learn more about Roundarch, check out our old (and soon to be re-launched) Web site - roundarch.com.
We will soon be re-designing this Web site, and encourage you to still sign up and create an account. Doing so will allow us to provide you with updates on Merapi and other next-generation technologies developed/supported by Roundarch Labs. Tosign up as a member of the Merapi Project Web site. Once we receive your request, we will approve your account and you will get an automated email with your account credentials and other information.



How to Get Merapi Code


So, you've read all about it and want to jump in and become part of the future of the Web, huh?
We have spent the last year working on Merapi, talking to users, developers, software companies and others in the community to get feedback on how Merapi should work, how it might be used and what people really want out of a next-generation technology such as this. With the generous support of Roundarch, Merapi has made it out of the private alpha stage and we've released Merapi as Open Source.
To help simplify things, we have decided to host the Merapi source code, examples and message boards on the Google Code Web site. You can access the project files, etc. at the following URLS:

We will be updating the Merapi Project Web site (this Web site) in the coming weeks, and encourage you to still sign up for an account so that we can notify you of updates to the project and keep you up to date on the latest news related to Merapi, RIA development and the future of Web & Desktop integration.
Don't be shy. We'd love to have you participate.
Once we receive your submission, we will review it and approve your account.




Why Merapi was Created


Merapi was created to extend the capabilities of applications built on the Adobe AIR™ platform.

Adobe AIR™ has been recognized a revolutionary step forward in "next generation" software design and development.

With AIR's launch, the massive community of Flash, Flex and AJAX Web developers were provided the ability to build desktop applications using the tools and technologies with which they are already familiar. Using the Adobe AIR™ API, their "Web" applications can become integrated with the user's desktop operating system.

The Merapi Project

AIR is a framework that does most of the hard work for you. It enables applications to run locally, connect to Internet services, store data locally, and access information stored on the usre's file system. It's great, and the team that founded the Merapi project are huge proponents of the Adobe AIR™ platform, as well as Flash, Flex and other Adobe technologies.

We are passionate software designers and developers, with a primary goal of pushing the possibilities of user experiences.

In order to provide the best user experiences, we often find ourselves in a postion to try and push the limits on available technologies. When coming up with ideas about cool applications that could be build on the Adobe AIR™ platform, some of the most innovative concepts for "Rich, Connected" desktop applications were even outside the capabilities that AIR™ was able to provide.

One of the biggest benefits of Rich applications developed using Adobe technologies is the ability to provide killer user interfaces and what we consider to be "next generation" user experiences. Professionally, most of the members of the Merapi Project team do this every day for clients.

While AIR™ is a huge jump by itself, we found ourselves asking:
  • Could we connect an AIR™ application to a wii remote?
  • Could we use AIR™ to talk to a phone plugged in via USB?
  • What if we wanted to do TWAIN Capturing of Video or Images from a camera or scanner?
  • Could we control robots with an AIR™ application?
  • What about sending MIDI signals to instruments over a network using an AIR™ application?
  • Could I build a social-networking AIR™ application that controlled hardware devices?

Adobe AIR™ doesn't allow for these things natively. We realize that Adobe might do this in the future, and make Merapi obsolete. While it would represent an end to the value our open source project, it would be for the best! It would mean that we could build bigger, badder, and bolder desktop applications using Flex, Flex Data Services, LiveCycle, and other Adobe products... and we'd be able to do so without having to "build the bridge" to the OS, which is what we've done with Merapi.



Building a Bridge between Adobe AIR and Java (OS)


Merapi is a Java™ application, intended to run on a user's (client) computer. Merapi connects other Java™ applications on the user's computer to Adobe AIR™ applications that the user has installed.

It isn't magic. You have to develop your Adobe AIR™ application in a way that allows it to connect to Merapi. Merapi acts as a "middle man", passing objects between your AIR™ application and your Java™ application.

Using Merapi, Adobe AIR™ applications can "talk" to other software that the user has installed on their computer. In addition, Merapi allows AIR™ applications to serve as a user interface to just about anything that a Java™ application can do on a user's computer.


How Merapi Works



Merapi is a framework that bridges an AIR application with a Java application, both running on the desktop. This communication is accomplished through a class that exists in Java and ActionScript called merapi.Bridge.

The simplest way to interact from AIR to Java is by sending and receiving messages though the bridge.


Merapi: A Bridge between Adobe AIR and Java

Sending a message from ActionScript:


var message : Message new Message();
message.data = "Hello from Merapi Flex.";
message.type = "Reply";
Bridge.instance.sendMessage( message );


Sending a message from Java:


Bridge bridge = Bridge.getInstance();
Message message = new Message();
message.setData("Hello from Merapi Java.");
bridge.sendMessage(message);



Receiving a message in Flex:



id="bridge" result="handleResult(event)" />



private function handleResult( event : ResultEvent ) : void
{
var message : IMessage = event.result as IMessage;



Receiving a message in Java:

Bridge.getInstance().registerMessageHandler("Reply", messageHandlerInstance );
public void handleMessage( IMessage message )
{
System.out.println( message.getData() );
}

More advanced features are available in the framework for creating proxy objects in ActionScript or Java that automatically cause a mirrored instantiations and invocations on the corresponding side of the bridge. This functionality is essentially an abstraction of the basic messaging framework described above.

Merapi Videos

As we get more videos posted, we will be sure to add them to this page.

Hello World! Hello Merapi!!!!

Check out Adam Flater's "Hello World" example using Adobe Flex, Java and Merapi


Merapi and Physics - This is cool!

Prior to talking about Merapi at WebManiacs, Adam Flater put this tiny AIR application together. This application, designed to run on the Mac, uses a Java program to read the data that is being reported by the Mac's accellerometer. Java passes this value to the AIR application and...... Well, just watch the video. Cool? YES Indeed!



Merapi meets Robot!

With the help of our pal Jordan Snyder, Merapi is seen here enabling an AIR application to control a Lego Mindstorm Robot. This is done using the lego Mindstorm API, Java and Bluetooth. More of this to come!


 

Advanced SWF Screen Saver

Title : Advanced SWF Screen Saver

Description:
Advanced SWF Screen Saver has been developed using Flex where it is a desktop application working with an Adobe Air plug-in. It is used to have screen saver with advanced settings. user can have audio, video, animation, online data transfer using SWF (Adobe Flash)

Also see this links

I am getting money from this links after signing in for free. Don't wast time just join and earn without any hard word.....
Hello Friends,
     I want to tell you about great site I found. They pay me to read e-mail, visit web sites and much more.
JOIN A CERTIFIED LEGITIMATE ONLINE BIZ!!!!
Would you like to Earn money without spending even a single penny?
Now! It is possible..
No Registration Fee
No Credit Cards required
No Hassle
No Risk
Not Nesseary to Join others
It's free to join and easy to sign up! CLICK THIS LINK TO VISIT:
Earn money without Investment
Earn money for getting ads to u r cell phone numbers what u want to get.

1) http://earnbyads.co.in/PI1.aspx?RC=5ba4f5ae
2) http://www.mginger.com/index.jsp?inviteId=883819
3) http://www.youmint.com/network-ramu4all_31
4) http://www.sms2earn.com?refid=5713
5) www.sms2india.co.in/?user=ramu4all_31
6) http://www.admad.mobi/112411-ThulasiramS.admad
7) http://www.mgarlic.com/?invite=222242142
The more time you spend surfing, the more chances of earning money.
1) http://www.earnptr.com/pages/index.php?refid=ramu4all31
3. Each time you refer a new user, you earn 10% of their image views forever!
http://www.capitalmails.net/pages/index.php?refid=ramu4all31

capitalmails.net
http://www.homepagepublicity.com/?referer=166996
http://www.jaxtr.com/ramu4all_31
Earn money without Investments:
Login for free and Earn money without any investment by clicking the below links...
I really getting money from this websites
I just joined Shelfari to connect with other book lovers. Come see the books I love and see if we have any in common. Then pick my next book so I can keep on reading. See by clicking the below link...
http://www.shelfari.com/invite/RJNuEo$a2-E6REr8y2iIPQ
http://ramu4all31.sulit.com.ph
http://www.resource-a-day.net/member/index.cgi?ramu4all_31
Earn money for reading E-mails:
The easiest way to make more money is to let others make them for you. Cashfiesta pays you for your referrals up to the 8th level. See for yourself how much you can earn, click on the Fiesta Calculator.
http://www.cashfiesta.com/php/join.php?ref=ramu4all_31
http://rolex-mails.com/pages/index.php?refid=ramu4all31
rolex-mails.com
Get paid to take surveys! Get $6 after signing up! Get $1.25 per referred friend. Low Payout! Create your account absolutely free!

http://www.AWSurveys.com/HomeMain.cfm?RefID=ramu4all31

http://www.earnptr.com/pages/index.php?refid=ramu4all31
http://www.advercash.net/signup.php?ref=ramu4all_31
http://bux.to/?r=ramu4all_31
Payout : US$ 10.00
Per Click : US$ 0.01
Per Sign up : US$ 0.30
Referrals : 50%
http://www.masterbux.com/?r=ramu4all_31
http://www.bux3.com/?r=ramu4all31
http://www.just-click.us/?r=ramu4all_31
http://clix4coins.com/index1.php?ref=ramu4all_31

http://www.gjobsdataservice.com/affiliate/idevaffiliate.php?id=812