How UcompOS Flash/Flex Applications are Sandboxed in the UcompOS Portal
There are numerous paradigms for launching UcompOS Applications in the UcompOS Portal.
In many instances, the UcompOS Application itself will be a non-visual entity thought of as perhaps the Model and Controller in an MVC style implementation and then the UcompOS Application would launch individual sub-applications in UcompOS Window, UcompOS Browser Window, or UcompOS Artifact instances which could be considered the View in the MVC implementation.
A UcompOS Application can also be an AIR application running on the desktop launched by the UcompOS Portal and also, a UcompOS Application can be launched immediately into a UcompOS Window or UcompOS Browser Window instance by implementing specific attributes in the root of the UcompOS Application’s application manifest.
The specific implementation details of SWF-based UcompOS content being loaded as a UcompOS application or sub-application into the UcompOS Portal warrants discussion.
If you’re an experienced Flash/Flex developer, you may come to the UcompOS RXF with a pre-conceived idea about how things are implemented and how you would go about building rich experiences.
There are 3 different scenarios where SWF content will be loaded directly into the UcompOS Portal:
- The SWF content represents a UcompOS Application that is loaded into the UcompOS Portal run-time. In this case the SWF content is a non-visual entity. It gets loaded into a SWFLoader with its visible property set to false that is attached directly to the UcompOS Portal as a child. This application then likely is involved with launching sub-applications into UcompOS Window, UcompOS Browser Window, or UcompOS Artifact instances.
- The SWF content represents a UcompOS sub-application that is loaded into a UcompOS Window instance. In this case, the SWF content is a visual entity. It gets loaded into a SWFLoader and the SWFLoader is attached as a child to a UcompOS Window instance. A UcompOS Window instance is derived from a class that extends the MDIWindow class from the mdi package in the FlexLib project. And of course MDIWindow extends Panel.
- The SWF content represents a UcompOS sub-application that is loaded into a UcompOS Artifact instance. In this case, the SWF content is a visual entity. A UcompOS Artifact is actually a VBox implementation that gets attached to the UcompOS Portal and then the SWFLoader is attached as a child to the VBox instance. The UcompOS Portal is a Flex 4 application with the Halo theme compiled so that is how I am using VBox here.
Here’s the important thing to understand about the SWFLoader instances implemented in all 3 of the above scenarios. They are implemented in one of two “sandboxed” configurations.
If you are creating a Rich Portal Application and your intentions are to load two separate UcompOS Applications into the UcompOS Portal and then do some sort of coding where your accessing something like FlexGlobals.topLevelApplication, this will not work.
All communication with other entities in the UcompOS RXF should be accomplished exclusively via the communication protocols in the UcompOS SDK using implementations such as Proxy Components and public API methods exposed in Services Dictionaries.
The goal is to keep the UcompOS Portal as “dumb” as possible and enable it to focus exclusively on being really good at its base core objectives which are:
- An MDI (Multiple Document Interface)
- Style and aesthetic presentation management
- Artifact model for widget-like implementation
- UcompOS Application run-time
- Event Dispatchment architecture
The classes UcompOSArtifactProxy and UcompOSWindowProxy each have Boolean sandbox parameters. Also, the root <application/> element in an application manifest has a sandbox attribute which accepts values of true or false.
The default condition if you don’t set the sandbox parameter is true.
From an implementation point of view, all SWFLoader instances attached to the UcompOS Portal have the trustContent set to true. This may be something I rethink when moving the UcompOS RXF project to Beta but at least in my main UcompOS RXF application I am building, the domain that I serve the UcompOS Portal from will be the exclusive thing I serve from that domain as I am interested in creating the a strong degree of disaggregation. (Of course you should have a solid understanding of policy files (such as crossdomain.xml)).
In the case where the sandbox property is set to true (the default condition), the SWFLoader’s loadForCompatibility property is also set to true.
This creates a situation where the loaded SWF application is loaded into a sibling ApplicationDomain relative to the UcompOS Portal SWF application.
The loadForCompatibility property addresses the need for a SWF to be able to load child SWFs created with different versions of Flex.
For instance, if you tried to load a Flex 3 UcompOS application or sub-application into the UcompOS Portal with its sandbox set to false, you’ll get run-time errors.
So then when or why would you want to load a UcompOS SWF application or sub-application with its sandbox property set to false?
Primarily only in instances when you wanted to implement drag and drop functionality across the boundaries of a UcompOS sub-application.
If all the drag and drop functionality is within the boundaries of the SWF, then the sandbox setting is irrelevant.
However, suppose you have two UcompOS SWF sub-applications loaded into UcompOS Window instances and you want to enable items to be dragged and dropped back and forth between them. This would require you to set the sandbox property to false. Also, this would require you to build your applications with Flex 4 (although I admittedly have yet to try implementing drag and drop across two different non-sandboxed Flash CS5-created applications).
In an upcoming tutorial, I’ll show a demo of building a UcompOS-based file management system like the one I have built for Educator 2 that enables drag and drop between multiple UcompOS Window instances as well as drag and drop from a UcompOS Window instance to a UcompOS Artifact instance.
The key fact to ascertain here is that strong command of the UcompOS SDK and how it is utilized to send information back and forth between entities in the UcompOS Continuum is compulsory to your developing the most powerful and effective Rich Experiences.
The UcompOS Event Propagation Model
The other day, I wrote a blog posting describing how the UcompOS RXF implements the MVC design pattern.
This implies that there is an event-driven architecture that has been facilitated in the UcompOS Continuum and that is indeed the case.
In this blog posting, we have to roll our sleeves up and really dig into the UcompOS SDK so that I can help you understand how the UcompOS RXF Event Architecture works. If you have full command of the UcompOS RXF’s event architecture, it will help you build the most engaging and interactive rich experiences for your Rich Portal Applications.
The architecture at first glance is necessarily complex and involved and this will probably likely be just one of many blog postings I’ll make in reference to this topic and as time passes, I am going to work hard to make the event architecture simpler, more transparent, and as close as possible to best practice. Of course developer feedback will be a crucial part of that mission.
CommandObject Transactions
If you’ve read my other postings, you have a very basic understanding of Proxy Components and Services Dictionaries.
Simply put, a UcompOS entity exposes its internal functionality to other UcompOS entities by publishing a Services Dictionary and a UcompOS entity contacts functionality in another entity by using a Proxy Component.
By strict convention, ALL communication between entities in the UcompOS Continuum should occur via the SDK class SDKClient and its send(); method. (NOTE: There is a very esoteric exception to this that is handled behind the scenes by the UcompOS RXF that would involve two UcompOS entities participating in drag and drop interactions but that is beyond the scope of my article here and will be covered in an upcoming tutorial.)
The UcompOS SDK has both client and server infrastructure implemented. Therefore, each UcompOS entity is capable of serving both as a server capable of receiving commands from other entities as well as a client capable of sending commands to other entities simultaneously.
The UcompOS RXF implements an asynchronous event dispatchment model.
When an entity needs to access a public API command in another entity, it (usually with the assistance of a Proxy Component) creates a CommandObject instance that is packaged into a DataPackage instance and sends it to the target entity via the SDKClient send(); method. All these details are masked by the call(); method of AbstractProxyComponent which all Proxy Components must inherit from.
The server(); method of the SDKServer class is the first spot in the target entity to come in contact with the DataPackage.
DataPackages sent across the SDK Tunnel are encoded into compressed ByteArrays.
The server implementation in the SDK decodes the DataPackage and passes it to one of a couple different polymorphic constructs in the SDK: CommandObjectHandler or EventObjectHandler
In the scenario where one entity is contacting the public API method of another entity, the DataPackage will contain a CommandObject and thus the DataPackage will be passed to the CommandObjectHandler in the SDK.
This will pass the data Object to the internal implementation code in the target entity.
By strict convention, any method that is capable of being targeted by another entity must accept exactly one parameter of type Object and return an item of type Object.
In order to understand the full event cycle in the UcompOS RXF, we must study what happens when this public API method returns this Object. Where does this Object go from here? How does it get back to the calling entity?
CommandObjectHandler passed the DataPackage to the internal implementation method and is returned the Object return from the method.
At this point, CommandObjectHandler turns from a server implementation to a client implementation and it creates a new DataPackage, puts an EventObject instance into it, and then sends the DataPackage back to the original entity. So the original entity then becomes a server.
When the DataPackage with the EventObject packaged into it gets back to the SDKServer implementation in the calling entity, it is passed to the EventObjectHandler class.
The EventObjectHandler class then passes it to any event handlers that have been attached to the Proxy Component that made the initial public API call in the first place.
This is in fact why AbstractProxyComponent, which all Proxy Components extend from, inherits from EventDispatcher – so we can implement addEventListener(); thus implementing a paradigm many Flex and Flash coders are much more accustomed to.
When a public API method returns its required Object, an eventType property can be set to it. If you do not explicitly set this, then CommandObjectHandler will set this for you as the constant SDKEvent.COMPLETE.
This eventType property is important as it has implications as far as how events get passed to a Proxy Component’s event handlers.
Suppose I have the following Services Dictionary class in a UcompOS application:
package { import com.ucompass.ucompos.sdk.server.AbstractServicesDictionary; public class ServicesDictionary extends AbstractServicesDictionary { _map = { 'Greeting.sayHello': { static:true, classRef:api, method:'sayHello', description:'Returns a greeting' } }; } }
Let’s suppose I have the following public API method that maps to Greeting.sayHello in my Services Dictionary example above:
public static function sayHello(data:Object):Object { return {eventType:"Hello",greeting:"Hello there, "+data.name+"!"}; }
Now let’s suppose my Proxy Component located in another entity that will contact the Greeting.sayHello method above looks something like this:
package { import com.ucompass.ucompos.sdk.client.AbstractProxyComponent; import com.ucompass.ucompos.sdk.model.SDKModel; public class Greeting extends AbstractProxyComponent { public function Greeting() { super._destination = SDKModel.getInstance().parent; } public function getGreeting(name:String):void { call("Greeting.sayHello",{name:name}); } } } }
In my entity that will call Greeting.sayHello, I may see the following:
var g:Greeting = new Greeting(); g.getGreeting("Edward");
Now how do I get the greeting back from the entity that is exposing the public API method Greeting.sayHello?
Because AbstractProxyComponent extends EventDispatcher, and because my Greeting Proxy Component extends AbstractProxyComponent (a strict requirement of all Proxy Components), I can add an event listener to it.
g.addEventListener("Hello",greetingHandler); private function greetingHandler(event:SDKEvent):void { var greeting:String = event.data.greeting; }
Notice my event handler is passed an instance of SDKEvent. This is universal for all Proxy Components.
The SDKEvent instance will have a data property which will be the data Object returned by the remote public API method in the contacted entity.
Therefore, the eventType property in the return Object of a public API method determines which Proxy Component event handlers are passed an SDKEvent instance.
UcompOS Continuum Events
The above example shows a very simple example of an asynchronous request-response phase of a Proxy Component – public API method transaction.
There is another type of event in the UcompOS RXF called a Continuum Event.
The UcompOS Portal sponsors a public API method named GlobalManager.dispatchEvent. This is accessed through the UcompOSGlobalManagerProxy Singleton class in the UcompOS SDK and its dispatchContinuumEvent(); method which accepts as input two parameters: type:String, and data:Object
When this method is accessed, every entity in the entire UcompOS Continuum is dispatched the event.
The implications of this is that you can monitor activity across the boundaries of different applications. For instance, maybe you have a UcompOS Chat Application and when you receive an instant message from an individual user, you automatically want a separate UcompOS Address Book Application to open to that user’s Address Book entry.
Targeted EventObject Instances
The BroadcastEvent Singleton class in the UcompOS SDK has a dispatchEvent(); method. This lets you send an EventObject on the fly to a single target entity.
For instance, the UcompOS SDK has a Proxy Component, that is the interface to various public API methods in the UcompOS Portal, called UcompOSWindowProxy. The UcompOSWindowProxy’s add(); method attaches an MDI window to the UcompOS Portal.
Internal to the UcompOS Portal implementation, it wants to notify the entity that created the UcompOS Window instance when certain user-driven activities occur such as when the window is moved, closed, minimized, maximized, etc.
Let’s look at a very simple example with some code.
Let’s suppose I have a UcompOS Application and I want to create a UcompOS Window, then I want to know when the user has closed the window.
In my application, the code I’d use to form the UcompOS Window could look like this:
var w:UcompOSWindowProxy = new UcompOSWindowProxy(); w.add("http://desktop.ucompass.com/MySubApp.swf","My Sub Application",500,500,100,100);
This will load the content at http://desktop.ucompass.com/MySubApp.swf into a UcompOS Window of dimensions 500 x 500 positioned at (100,100) from the upper-left origin point of the UcompOS Portal.
Now suppose I want to know when that window has closed.
No problem:
w.addEventListener(UcompOSWindowProxy.CLOSE,closeHandler); private function closeHandler(event:SDKEvent):void { // the window has closed }
The reason why this works this way is that internal to the UcompOS Portal, there is a call to the UcompOS SDK static method BroadcastEvent.dispatchEvent(); that dispatches an EventObject (encapsulated in a DataPackage of course) to the entity that created the UcompOS Window.
As another example, consider the UcompOSMenuBarProxy class. I haven’t covered the UcompOS Menu Bar in any tutorials quite yet, but the UcompOSMenuBarProxy class has a setMenuBar(); method that lets you attach an XML model that will be used as the dataProvider for the Menu Bar on the UcompOS Portal while the application in scope is in focus.
You could do something like this:
var menuModel:XML = new XML("<menu><menuitem label='File'><menuitem label='Open' data='1'/><menuitem label='Close' data='2'/></menuitem></menu>"); var m:UcompOSMenuBarProxy = UcompOSMenuBarProxy.getInstance(); m.setMenuBar(menuModel); m.addEventListener(UcompOSMenuBarProxy.CHANGE,menuBarHandler); private function menuBarHandler(event:SDKEvent):void { var chooseString:String = "User chose "+event.data.label+" whose data property is "+event.data.data; }
Summary
The event architecture in the UcompOS RXF is indeed complex at first glance. There is no getting around that. I am going to continue to work to simplify it, improve the documentation surrounding it, and get the implementation details as close as possible to a true best practice MVC implementation.
A Framework for Easily Managing UcompOS Applications
As I’ve worked with the UcompOS platform since its Public Alpha release, I have come to be impressed with its flexibility in bringing a lot of different applications together into one portal system. However, as I built and tested various applications, it became very apparent that I needed to take a few steps back and think about a framework for deploying applications or risk becoming engaged in a never-ending battle with the following tasks:
- Editing static dock manifest files
- Keeping application manifest files between applications straight
- As the number of applications increases, easily finding the files I need to change without worrying about breaking another application becomes a challenge
- Deploying updated versions of the UcompOS runtime without accidentally deleting or overwriting application content
- Managing permissions to applications for different users
These issues were tackled in a fairly systematic manner. My first logical step was to get rid of the static dock manifest and move that to some application code that generates the dock manifest from a database. For my UcompOS implementation, information for applications that go on the dock menu is pulled from a very simple table that looks like this:

The Application_ID field is just a numerical value indicating the identifier of the application. It is the primary key for the database and auto increments as new applications are installed. The Application_Descriptor field is very simple, in function to the “title” attribute in your application manifest. The Background and Default_State fields contain the values each application should have when they are added to the dock manifest file dynamically. The Directory_Path field requires a bit of explanation. What I’ve done is create a folder called “applications” in my UcompOS implementation where all applications reside:

The Directory_Path field is the name of the folder where each of my UcompOS applications is launched from. The final field, Is_Global, is a field that indicates whether or not the application should be globally accessible to all users of my UcompOS Portal or not. Note that if this field is set to false, I have another database table that contains the list of users who have access to the application.
This database is managed through a front-end that grants/denies access to applications based on the selection of a checkbox (Checking a box calls an AJAX function that automatically adds/removes permissions to various applications) like in the screenshot below:

With all this in mind, the script that generates the UcompOS dock manifest file performs the following actions:
- Add all of the global applications in my applications table to the dock manifest
- Retrieve the list of which applications the user has access to, and add those applications to the dock manifest
- Return the entire dock manifest file to the UcompOS main container
You will notice above that I did not provide a filename for each application’s manifest file (just a directory path). This was an intentional decision, as I chose to have a convention where the name of the application manifest file would be in a sub-folder called “manifest” under each application’s folder, and that the application manifest filename would be the same for each application. This makes it very easy for me to easily identify the application manifest for each application, and helps maintain consistency across my UcompOS applications.

In my case, this application manifest for each of my UcompOS applications is named “getAppManifest.php”, and it is a simple script that returns the XML application manifest for the application. In it, the file does a security check to make sure that the user is logged in and that they have permission to access the application (if the application isn’t global). If everything checks out, then gatAppManifest.php spits out the application manifest for the application.
I should note that, for very practical reasons, I chose not to place the information for each application manifest file into a database table. While this was certainly a consideration, the realization I came to was that this was going to be just too cumbersome, especially if you factor in the possibility of multiple languages. Also, I considered the fact that this file is fairly static in nature, and wouldn’t need to be managed all that often. Ultimately, I felt that there wasn’t going to be much of a difference time-wise between managing this manually or through a database interface. For my framework that stresses ease of use, managing the application manifest via straight XML presented a far more straightforward path.
Before I close, I wanted to briefly touch on the file structure I have in place for my implementation. By having each application compartmentalized in its own subfolder, it is much easier to troubleshoot and find issues with each application without worrying about breaking anything else. Further, it allows me to do a simple drag and drop operation to deploy new applications in my UcompOS framework (I have a simple function in my application manifest file that adds the new application to the Application database if it doesn’t exist, and sets up any auxiliary tables needed for the application. I also have been able to create several reusable templates I can leverage or when I begin work on a new UcompOS application). Ultimately, the framework I’ve put into place solves all of the issues I mentioned above and greatly simplifies the application deployment process, allowing me to focus on application functionality instead of the mechanics of application deployment, which for me, is what it’s all about.
A Simple HTML Digital Camera Browser
In this tutorial, we will look at a variety of core UcompOS Rich Experience Framework concepts, and in particular we will explore the mechanics of adding a desktop component to your UcompOS Rich Portal Application.
It is recommended you download the source of the application we’ll build in this tutorial at the link below so you can follow along and there is also a video demonstration of the application we are going to build in this tutorial.
Download the Simple HTML Digital Camera Browser Source Code
This tutorial assumes you have at least a basic working knowledge of:
- Adobe AIR 2.0
- Adobe Flash Builder
- ActionScript 3.0
- HTML
- JavaScript
- You should have read my blog posts or watched my video tutorials about UcompOS Proxy Components and Services Dictionaries
The goals for our application are as follows:
We want to build a simple digital camera browser that lets the user browse through and view images from their digital camera in a Rich Portal Application implementation.
We are going to keep the application as deliberately simple as possible and we are not going to address its cosmetics or aesthetics so that we can focus on providing instruction on specific UcompOS concepts and principles.
To further define the specifications for our application, we want to build a UcompOS Application that prompts the user to connect their digital camera to their computer. We want our application to be able to know when their digital camera has been connected. Then when the digital camera has been connected, we want to display the contents of their camera to them. The user should be able to easily browse through their camera’s contents and they should be able to click on a file on the camera to view it. Also, the file should be opened in the native photo-viewing application on their computer versus simply displayed in the browser.
Again, we are going to focus on a very simple implementation and will not focus on aesthetics or presentation so that we can focus more on the core UcompOS mechanics we are leveraging to build our application.
Our UcompOS application is comprised of the following components:
- An AIR 2.0 UcompOS Application built with Adobe Flash Builder 4
- An HTML UcompOS Sub Application
We’ll walk through the process of setting up and building the different pieces of the application fairly linearly and then tie it all together at the end with a screenshot of our application.
Implementation Details
The way I want to design our program, I want a UcompOS Application to load on the UcompOS Application Dock entitled “My Camera”. When this application is opened, we want it to launch our UcompOS AIR 2.0 application. I want that application to prompt the user to connect their digital camera.
When the user connects their digital camera, I want to instantly launch a UcompOS Window instance in the UcompOS Portal that displays the contents of the camera to the end user and allows them to browse through any folder structures housed on the camera and then I want to allow them to select a file to be viewed in their default photo viewing application on their computer.
When the camera is disconnected, I want to shut down the application.
Setting up the AIR 2.0 Application
While I could use a number of different technologies to build our AIR application, I am going to use Adobe Flash Builder 4. The minimum required version for a UcompOS AIR application is AIR 2.0. You can learn more about AIR 2.0 and access its run-time and SDK at http://labs.adobe.com/technologies/air2/.
The first step is to set up a Flash Builder project for my AIR application.
My project is called Camera_Example. Pictured at left is the fully expanded project in Flash Builder with all its files. 
Our main class in our AIR application is Camera_Example.mxml.
Notice in my libs folder is the file UcompOSAIRSDK.swc. This is the UcompOS SDK file for AIR applications. This file is found in the UcompOS Developers Package in the sdk/air folder that is created when you unzip the UcompOSSDK.zip file contained in the package.
Simply drag and drop that file into the libs folder of any Flash Builder (or Flex) based UcompOS AIR application.
You can also incorporate the UcompOS AIR SDK into Flash-based and HTML-based AIR applications (the SDK has no Flex dependencies) but the techniques for doing so are outside the scope of this tutorial.
Ideally, my goal is for the end user to not even have any knowledge that an AIR application is involved other than the initial install process. I want the user to operate entirely within the web browser here and my rationale for this in this tutorial is with the goal in mind of showing how multiple technologies are fusing together to create a seamless rich experience.
Of course, AIR needs to be involved because AIR is what we use to do most of the heavy lifting in our application including detecting the camera attachment/detachment, browsing through the camera’s contents, and opening individual pictures on the desktop.
From an implementation point of view, an AIR application can only be launched from the web browser following a user-initiated event such as a mouse click.
When an AIR application is configured as the base source code for a UcompOS Application, and this application appears on the UcompOS Application Dock, when the user clicks the icon in the application dock, that user event is what triggers the launching of the AIR application.
I’ll add that it is possible to implement UcompOS AIR sub-applications and the best practice for doing this is to leverage the UcompOSArtifactProxy class. This topic will be covered in a future tutorial in the near future.
Our AIR Application’s Descriptor File
Our Camera_Example-app.xml file needs a very crucial adjustment.
By default, you’ll see this XML element commented out:
<!-- <allowBrowserInvocation></allowBrowserInvocation> -->This needs to be uncommented and issued a true value:
<allowBrowserInvocation>true</allowBrowserInvocation>
This tells the AIR runtime that your application is allowed to be launched from the web browser.
If you try to instantiate the UcompOS AIR SDK in an AIR application that does not have its descriptor set up in this manner, you’ll get a compile-time error and you won’t be able to package your application.
Even though we do want our AIR application to be as innocuous as possible, if a user does stumble upon it on their main OS’ dock or in the folder on their computer where it’s been installed, I want them to see the custom icon at left and this icon and other varieties in different sizes are in the assets_embed/png folder.
Therefore in my app-descriptor file, I have implemented the following:
<icon> <image16x16>assets_embed/png/image16x16.png</image16x16> <image32x32>assets_embed/png/image32x32.png</image32x32> <image48x48>assets_embed/png/image48x48.png</image48x48> <image128x128>assets_embed/png/image128x128.png</image128x128> </icon>
AIR Application Code
Since I want the user to know as little as possible, if anything, about the presence of the AIR application, I want it to be invisible. Therefore, I’ll give the visible property in the root WindowedApplication tag a value of false. This will suppress any windows from being displayed.
Next, I want to instantiate the UcompOS SDK.
This should happen once the main application dispatches its applicationComplete event.
My root MXML tag looks like this:
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" applicationComplete="start();" visible="false">
Now let’s take a look at the private variables I am declaring in my main class. We’ll cover the purpose of each of these variables further in the tutorial:
private static var _cameraRoot:String; private var _h:UcompOSHTMLProxy; private var _d:UcompOSDockProxy;
Now let’s take a look at my start(); method:
private function start():void { AIRSDKClient.getInstance(this,new ServicesDictionary()); AIRSDKClient.getInstance().addEventListener(SDKClient.SDK_READY,ucompos_init); implementStorageVolumeListeners(); }
The instantiation of the UcompOS AIR SDK is very similar to the instantiation of the UcompOS Flex/Flash SDK that targets browser-based content with a few key exceptions:
- The Singleton class AIRSDKClient is leveraged versus the SDKClient class
- We pass this as the first parameter to the getInstance(); method and an optional Services Dictionary as the second parameter. We’ll look at the Services Dictionary for this application below.
- Internal to the AIRSDKClient class, the SDKClient class is instantiated. Once it is instantiated, it dispatches an Event of type SDKClient.SDK_READY and only then can you safely instantiate and use any of the Proxy Components built into the SDK so you must listen for this event and implement any Proxy Component-related startup code in the event handler for this event
In our start(); method, we have a call to implementStorageVolumeListeners();
Let’s take a look at the implementStorageVolumeListeners(); method:
private function implementStorageVolumeListeners():void { StorageVolumeInfo.storageVolumeInfo.addEventListener(StorageVolumeChangeEvent.STORAGE_VOLUME_MOUNT,mountHandler); StorageVolumeInfo.storageVolumeInfo.addEventListener(StorageVolumeChangeEvent.STORAGE_VOLUME_UNMOUNT,unmountHandler); }
This method leverages AIR 2.0 capabilities. StorageVolumeInfo is a Singleton class in AIR 2.0 that can have an event listener attached to it to handle StorageVolumeChangeEvent.STORAGE_VOLUME_MOUNT and StorageVolumeChangeEvent.STORAGE_VOLUME_UNMOUNT events. These events are dispatched whenever a new mount point is introduced to the base Operating System or whenever a mount point is removed. Our handlers for these events are mountHandler(); and unmountHandler(); respectively.
Before we take a look at mountHandler(); and unmountHandler();, let’s take a look at the ucompos_init(); method that is invoked once our UcompOS AIR SDK has been fully initialized and we are ready to interact with it fully:
private function ucompos_init(event:Event):void { _h = new UcompOSHTMLProxy(); _h.alert("Please connect your digital camera to your computer"); _d = UcompOSDockProxy.getInstance(); }
In this method, we are creating an instance of UcompOSHTMLProxy. This class has a number of methods that let us execute common JavaScript methods such as alert();, prompt();, and confirm(); in the UcompOS Portal’s HTML wrapper file.
I am choosing to use a regular JavaScript alert to prompt the user to connect their digital camera to their computer.
I am also going to create a reference to the UcompOSDockProxy Singleton and my reasons for doing this will become clear below.
Now, let’s take a look at the mountHandler(); method.
private function mountHandler(event:StorageVolumeChangeEvent):void { _d.setAlert(true); _cameraRoot = event.rootDirectory.nativePath; w = new UcompOSWindowProxy(); w.add("http://desktop.ucompass.com/Camera_Example/Camera_Browser.html",event.rootDirectory.name,400,400); var object:Object = API.getFiles({}); }
This method is invoked when the user attaches a new storage volume to their computer. It is worth mentioning at this time that the simple example being developed here could be used to browse any type of removable storage. We just happen to be focusing on a scenario that would involve a digital camera.
The implementation details of mountHandler(); are straightforward. First, we want to call the setAlert(); method of the UcompOSDockProxy instance and pass a value of true to it. This makes the icon associated with this application on the UcompOS Portal Application Dock “Chirp” and glow drawing the user’s attention to it.
Then, we want to set the _cameraRoot property to event.rootDirectory.nativePath. The StorageVolumeChangeEvent contains a rootDirectory property which is of type File and represents the file location on the file system where the base of the mount point is located.
Next we create an instance of UcompOSWindowProxy of 400 x 400 and load our HTML sub-application into it. Our HTML sub-application will be the actual camera browser that the end user interacts with and we’ll review that later.
Our unmountHandler(); method is extremely simple:
private function unmountHandler(event:StorageVolumeChangeEvent):void { w.close(); UcompOSGlobalManagerProxy.getInstance().quitApplication(); }
This calls the close(); method on our UcompOSWindowProxy instance and then quits out of the application once the camera is removed.
Way back when we instantiated the UcompOS AIR SDK, we passed a new instance of ServicesDictionary to the instantiation method.
There are two public API methods we need our AIR application to sponsor and we are calling them Camera.getFiles and Camera.openFile.
Camera.getFiles will take the path to a given folder on the file system and return a list of the contents of that folder.
Camera.openFile will take the path to a given file on the file system and open it up with the application on the computer that the file is associated with.
First, let’s take a look at our ServicesDictionary:
package cameraexample { import com.ucompass.ucompos.sdk.server.AbstractServicesDictionary; public class ServicesDictionary extends AbstractServicesDictionary { public function ServicesDictionary() { _map = { 'Camera.getFiles': { static:true, classRef:API, method:'getFiles', description:'Lists files in a folder' }, 'Camera.openFile': { static:true, classRef:API, method:'openFile', description:'Opens a file in its native application' } } } } }
As you can see, both of our public API methods are housed as static methods in an API class.
Here is the method that corresponds to the Camera.getFiles public API method:
public static function getFiles(data:Object):Object { var folder:String = data.folder; if(!folder) { folder = Camera_Example.cameraRoot; } var file:File = new File(folder); var files:Array = []; for(var i:uint = 0;i<file.getDirectoryListing().length;i++) { var _file:File = file.getDirectoryListing()[i] as File; files.push({name:_file.name,isDirectory:_file.isDirectory}); } return {eventType:"files",files:files,folder:folder}; }
The Camera.getFiles public API method expects a folder property to be on the Object parameter passed to the method. If it’s not, it retrieves the contents at the base of the camera.
Back in our base application, we have a static getter function that retrieves the value of cameraRoot (which is why we established the value of _cameraRoot in the mountHandler(); method).
Our method simply builds an Array of Objects each having a name property and a Boolean to indicate if the item is a directory.
In our return Object, we return the eventType property set to files as well as our Array of files and a reference to the folder whose contents were retrieved. We’ll learn more about the purpose of this eventType property when we look at our HTML sub-application.
Our public API method Camera.openFile is extremely simple:
public static function openFile(data:Object):Object { var file:File = new File(data.file); file.openWithDefaultApplication(); return {}; }
That’s it for our AIR application. We are ready to package it with adt or the compiler built into Flash Builder.
I am packaging it into a file named Camera_Example.air and it will be reachable at a network URL of http://desktop.ucompass.com/Camera_Example/Camera_Example.air
Our HTML Sub-Application
Now we are ready to build our HTML sub-application which will be the interface the end-user actually interacts with.
The URL of our application will be at http://desktop.ucompass.com/Camera_Example/Camera_Browser.html. This is the URL passed to the add(); method of our UcompOSWindowProxy instance of our mountHandler(); method in our AIR application.
We want this application to be extremely simple.
We just want it to list out the contents of our digital camera and present them as files or folders.
When the user clicks on a folder resource, we want to display the items in that folder. When they click on a file resource, we want to open that file in the application that the file is associated with on their computer.
From an implementation point of view, when we click a folder, we are going to call our AIR application’s public API method Camera.getFiles and when we click a file we are going to call Camera.openFile.
The first thing we are going to do in our HTML sub-application is implement the UcompOS JavaScript SDK:
<script type="text/javascript" src="/UcompOSSDK.js"></script>
While it is not a requirement, best practice recommends you place the UcompOS JavaScript SDK and SWF files in the root directory of your webserver.
Here are two variables we initialize:
var camera; var d;
When the UcompOS JavaScript SDK has initialized, it looks for a start(); method in the application its implemented into.
Our start(); method is as follows:
function start() { d = new UcompOSDockProxy(); camera = new Camera(); camera.addEventListener("files",filesHandler); camera.getFiles(); }
We are creating an instance of UcompOSDockProxy which we’ll use to suspend the Dock alert we set in our AIR application.
More importantly, we are creating an instance of Camera, and adding an event listener to it and calling its getFiles(); method.
Camera is a Proxy Component we have built in our HTML sub-application. A Proxy Component is an interface to the public API methods located in other entities.
In our case, the Proxy Component Camera in our sub-application is the interface to the Camera.getFiles and Camera.openFile public API methods sponsored by our AIR application.
Let’s take a look at our Proxy Component Camera and walk through it as the mechanics of Proxy Components are very important to understand:
function Camera() { this.setDestination(parentConnectionId); this.getFiles = function(folder) { this.call("Camera.getFiles",{folder:folder}); } this.openFile = function(file) { this.call("Camera.openFile",{file:file}); } } Camera.prototype = new AbstractProxyComponent(); Camera.prototype.constructor = Camera;
The last two lines of the class would be analogous to saying Camera extends AbstractProxyComponent in ActionScript 3.0. Any Proxy Component must extend AbstractProxyComponent (in ActionScript as well as JavaScript).
In our class implementation, we pass the parentConnectionId property to the setDestination method of our class (which is a method inherited from AbstractProxyComponent).
Since our sub-application was launched by our AIR application, in the context of the UcompOS Continuum, we know that our AIR application is the parent of the sub-application in scope and we can safely use the UcompOS JavaScript SDK global variable parentConnectionId (this is analogous to the public property SDKModel.getInstance().parent in the UcompOS AIR/Flash/Flex SDK).
Our Camera class also implements two methods: getFiles(); and openFile();. As you can see by referring to the class code, both of these call the public API methods in our AIR application Camera.getFiles and Camera.openFile by using the call(); method in our class that is inherited from AbstractProxyComponent.
Another very important point, in our start(); method, refer again to this command:
camera.addEventListener("files",filesHandler);
This tells our instance of our Camera class to pass any SDKEvent’s of type “files” to the method filesHandler.
If you refer to our AIR application public API method Camera.getFiles, you’ll recall its return Object sets an eventType property to “files“.
The return Object of the public API method Camera.getFiles is passed to our filesHandler(); method.
Here is the code of our filesHandler(); method:
function filesHandler(data) { var e = document.getElementById('files'); e.innerHTML = '<p><a href="javascript:void(0);" onclick="getFiles();">Camera Root</a><p/><hr/><p/><u>Current folder: '+data.folder+'</u>'; for(var i = 0;i<data.files.length;i++) { if(data.files[i].isDirectory) { e.innerHTML+='<p/><img src="icons/folder.gif"/> <a href="javascript:void(0);" onclick="getFiles(\''+data.folder+'/'+data.files[i].name+'\');">'+data.files[i].name+'</a>'; } else { e.innerHTML+='<p/><img src="icons/file.gif"/> <a href="javascript:void(0);" onclick="openFile(\''+data.folder+'/'+data.files[i].name+'\');">'+data.files[i].name+'</a>'; } } }
Notice we are referencing the files and folder properties of the Object passed to filesHandler();. We iterate on the files property which we know from our inspection of our AIR application’s public API method Camera.getFiles is an Array and we further know that each Object in this Array has a name:String and isDirectory:Boolean property.
We create simple HTML that displays the name of the files and folders with the appropriate icons and calls the methods getFiles(); for folders and openFile(); for files.
These methods appear below:
function getFiles(folder) { d.setAlert(false); camera.getFiles(folder); } function openFile(file) { camera.openFile(file); }
In getFiles(); as well as openFile();, notice we are calling the setAlert(); method of the UcompOSDockProxy and passing it a value of false. This is to cancel the Dock alert we set on the UcompOS Portal’s Application Dock that we set in the AIR application the first time the user clicks on a resource.
That’s all there is to our HTML sub-application.
Configuring Everything as a UcompOS Application
Now we need to set up our application manifest for our simple Digital Camera browser application.
This should be very straightforward if you’ve reviewed some of my other UcompOS tutorials but for AIR applications, there are some special configurations you need to make:
<application> <source> <base>http://desktop.ucompass.com/Camera_Example/Camera_Example.air</base> <params> <param> <name>appId</name> <value>Camera-Example</value> </param> <param> <name>publisherId</name> <value>0E5CA255707A7E3F70F12D38B16B8D2A4C17413C.1</value> </param> </params> </source> <titles> <title locale="en_US" default="true">My Camera</title> </titles> <icons> <icon locale="en_US" default="true">http://desktop.ucompass.com/Camera_Example/icons/camera.png</icon> </icons> </application>
Notice the appId and publisherId parameters you must include in the <params/> element of the manifest.
IMPORTANT: At the time I am authoring this tutorial, the evening of December 27, 2009, the publisherId field faces an uncertain future in AIR 2.0 and may be deprecated. At present, you can find your publisherId by looking in the $APP/Contents/Resources/META-INF/AIR/publisherid file in the application installation directory for your installed application. The appId and publisherId parameters must be included otherwise, the UcompOS Portal will not be able to successfully launch your UcompOS AIR application. Any changes to the AIR 2.0 implementation specifics for publisherId will be blogged about here and updates will immediately be made to the UcompOS RXF accordingly.
Next we’ll take a very quick peak at my Dock Manifest:
<applications> <application> http://desktop.ucompass.com/Camera_Example/manifest.xml </application> </applications>
In this case, I obviously just have a single application I am loading into my UcompOS Portal implementation that is our simple Digital Camera browser example.
Screenshot of the Application
Conclusion
In this tutorial, we created a deliberately simple application to demonstrate a number of core UcompOS RXF concepts and principles – particularly integrating the desktop into a UcompOS Rich Portal Application implementation.
The UcompOS RXF Implements the MVC Design Pattern
The Model-View-Controller (MVC) design pattern is a classic design pattern often used by applications that need the ability to maintain multiple views of the same data.
The internals of the UcompOS Portal application (which is a Flex 4 application) were created strictly following the MVC Design Pattern.
In addition, the overall UcompOS Continuum (I refer to the UcompOS Continuum as the UcompOS Portal and all the UcompOS applications and sub-applications it launches that work together collectively to create a Rich Experience) takes on an implementation style that closely resembles MVC.
When a UcompOS application is launched by the UcompOS Portal, the application is invisibly loaded into the UcompOS run-time. It has no visual presentation. You can launch a UcompOS application immediately into a UcompOS Window or UcompOS Browser Window by adding the selfLoading=’true’ attribute to the application’s root Application Manifest element (which will launch the content in a UcompOS Window) and the newWindow=’true’ attribute (which will launch the content in a UcompOS Browser Window). Even in these scenarios though, a “helper” UcompOS Application is loaded into the UcompOS run-time which then is given the task of launching your application’s base content into a UcompOS Window or UcompOS Browser Window instance. So technically, in these scenarios, your UcompOS base application code is actually a sub-application.
In a best practice implementation, you can think of the base source code of your overall UcompOS Application (that gets loaded invisibly into the UcompOS run-time) as serving as the Model and Controller for your UcompOS Application and the sub-applications that are launched into UcompOS Window, UcompOS Browser Window, or UcompOS Artifact instances as the View from an MVC implementation point of view.
From a terminology point of view, I have been internally referring to the content that is loaded invisibly into the run-time as the Portlet Manager, and the visual code launched into UcompOS Browser Windows, UcompOS Windows, or UcompOS Artifacts as the Portlets. I have refrained from making this the official terminology however. This project, necessarily, has a lot of jargon associated with it and I want to be very judicious and careful with the terms used to describe the various aspects and features of the framework.
In the implementations I have been building, I delegate any network responsibilities as far as retrieving data from a remote data source or updating a remote model to the Portlet Manager. The Portlet Manager also implements listeners to the artifacts, windows, and browser window instances it spawns and launches and manages other Portlets based on user interactivity with said artifacts, windows, and browser window instances.
In a Portlet instance, there will obviously be functionality that involves manipulating or working with data presentations that correspond to the Model in the overall application. My standard practice is to dispatch any model changes to the Portlet Manager by using a Proxy Component class housed in the Portlet instance and a public API method exposed in the Portlet Manager’s Services Dictionary.
One thing I haven’t talked about in my postings yet is the Event Dispatchment architecture in the UcompOS RXF. This topic is worthy of and will receive thorough coverage in the near future.
As a very generic foreshadowing to this, the AbstractProxyComponent class is in the UcompOS SDK and it is the class all Proxy Components must extend.
AbstractProxyComponent itself extends EventDispatcher and therefore, any Proxy Component has the addEventListener(); method available to it.
The event type you can register with a Proxy Component is of type SDKEvent which is also a class built into the UcompOS SDK.
As a very simple example, consider the following example code implemented in a UcompOS Application:
var w:UcompOSWindowProxy = new UcompOSWindowProxy(); w.add("http://www.google.com","Google",800,600,100,100);
This will open a UcompOS Window in the UcompOS Portal of dimensions 800 x 600 at 100,100 relative to the upper-left origin point.
Now, consider the following:
w.addEventListener(UcompOSWindowProxy.CLOSE,closeHandler); private function closeHandler(event:SDKEvent):void { // the window was closed! }
I’ll devote my entire next posting to the SDKEvent class which is extremely important in terms of building highly interactive Rich Portal Applications with the UcompOS RXF and I’ll walk through the data flow and event propagation model involved with the simple example above.
A UcompOS Entity’s UUID
In my last two blog postings, I described Services Dictionaries and Proxy Components which together describe the implementation model of two disparate UcompOS RXF entities engaging in asynchronous communication with each other. A Proxy Component is a client interface to the functionality in another entity exposed in that entity’s Services Dictionary.
As I described in my blog postings about UcompOS HTML Applications and UcompOS AIR 2.0 Applications, the Flash Player’s LocalConnection infrastructure is the basis of the medium used in the UcompOS Continuum for messages to pass from one entity to another while the AIR 2.0 ServerSocket class is the basis for inbound messages received by a UcompOS AIR 2.0 Application.
Each entity in the UcompOS Continuum that is capable of participating in transactions with other entities will have the UcompOS SDK implemented.
The UcompOS SDK has a Singleton class called SDKModel which has a public connectionId property.
This connectionId is a UUID (Universally Unique Identifier) in the context of the UcompOS Continuum.
Connection Ids are hierarchically structured, so by looking at the connectionId property of one entity, you can decipher the connectionIds of all the ancestors of that entity up to the root entity which is the UcompOS Portal.
Each time an entity launches another entity as a UcompOS Application, UcompOS Window, UcompOS Artifact, or UcompOS Browser Window, that launched entity is given its connectionId by the launching entity and the mechanics of creating the connectionId is handled seamlessly by the UcompOS SDK.
Suppose the UcompOS Portal had a connectionId of A, then it launched an application. This application may have a connectionId of A/B. Then suppose that application launched a sub-application in a UcompOS Window. That sub-application may have a connectionId of A/B/C. Now suppose that sub-application launched a sub-application in a UcompOS Artifact. That sub-application may have a connectionId of A/B/C/D. And so on….
In the SDKModel class, there is also a public property parent that is the connectionId of the entity that launched the entity in scope.
In addition, there is a root property which would be the connectionId of the root entity in the UcompOS Continuum which is the UcompOS Portal.
From an implementation details point of view, the connectionId is used by an entity as the connectionName property passed to the connect method of the LocalConnection instance that the entity uses to send and receive messages from other UcompOS entities.
The SDKClient Singleton class in the SDK has a public send(); method which handles the task of dispatching a DataPackage instance (also a class in the SDK) to a target entity via a LocalConnection target connectionId.
What we’ll learn soon when I start blogging about the UcompOSAIRProxy class is that UcompOS AIR applications have a string appended to their connectionId in the form of:
socket-host-validation port-operation port
For instance this may be a simplified example of a UcompOS AIR application’s connectionId:
A/B/C/D-socket-127-0-0-1-1024-1025
I’ll talk about the semantics of this in the near future and shed more light on the implementation details of an AIR 2.0 UcompOS entity.
The hyphens are used in the host address as periods are not permissible characters in the connectionName parameter passed to a LocalConnection instance’s connect method.
When the SDKClient’s send(); method encounters the string “socket” followed by the host, validation port, and operation port in the syntax shown here, instead of sending the DataPackage to the AIR UcompOS entity via LocalConnection, it establishes a socket connection to the server socket endpoint broadcasting in the AIR application and sends the DataPackage over a socket connection.
Understanding the concept of the connectionId of a UcompOS entity is an important part of understanding how to build Proxy Components.
For instance, if you were to check the SDK source out of the UcompOS Project SDK SVN Repository, and inspect the code in the com.ucompass.ucompos.sdk.proxycomponents package, these are the Proxy Components built into the SDK that are client apparatus’ to the public API methods sponsored by the UcompOS Portal.
What you would see in the constructor for each of these Proxy Components is the following:
super._destination = _sdkModel.root;
All Proxy Components must extend the SDK abstract class AbstractProxyComponent which has a protected property _destination.
This _destination property indicates the UUID of the entity that contains the functionality being targeted by the Proxy Component.
This property can be set on the fly dynamically but in the case of the Proxy Components built into the SDK, they all target the UcompOS Portal so the _destination in these Proxy Components is always the connectionId of the root entity in the UcompOS Continuum – i.e. the UcompOS Portal. The connectionId of the root entity in the UcompOS Continuum is always found on the public property root on the SDKModel Singleton in the SDK.
When you build your own Proxy Components, you’ll need a strategy that sets the _destination property either at the time of instantiation of the Proxy Component, or dynamically as it is possible for a single Proxy Component class to target numerous different entities simultaneously.
Proxy Components are Client Interfaces to Public API Methods
In my blog posting yesterday entitled A Services Dictionary Publishes a UcompOS Entity’s Public API Methods we learned that a UcompOS entity exposes functionality to other entities by publishing a Services Dictionary at the time the UcompOS SDK is instantiated.
The Services Dictionary can be thought of as a map that maps the name of a public API method to its internal implementation within that entity so as to not have to divulge the internal implementation details of the entity and its class structure.
This is the same concept as in a webserver configuration file. You generally do not expose the internal absolute path of a virtual host, rather translate a domain or subdomain to resolve to an internal path on the local file system.
In the entity that originates a call to the public API method of another entity, the UcompOS SDK’s client infrastructure is leveraged.
Any data that is to be sent is packaged in an instance of an SDK class called a CommandObject which is then packaged into an instance of an SDK class called DataPackage which is the exclusive format of data that travels between entities in the UcompOS Continuum.
While it is certainly permissible to manually construct CommandObjects and DataPackages and then send them to the send(); method of the SDKClient Singleton (AS3 SDK documentation is available to help with this), it is far more convenient to set up a Proxy Component to handle this.
In advanced cases, you may find the need to call up functionality in a remote entity that is NOT exposed in the ServicesDictionary. You can still do this but of course it requires knowledge of the remote entity’s internal implementation details and you have to specify the class path and associated method in the target entity. This scenario does require the manual construction of a CommandObject and DataPackage and then a call to the SDKClient Singleton send(); method.
Proxy Components allow you to add more practical interfaces to the functionality exposed by a remote entity.
For instance, by strict convention, all methods that participate in UcompOS Continuum activity must receive one parameter of type Object.
You could create a Proxy Component however that masks this implementation requirement.
As I explained in my posting yesterday, the UcompOS SDK is packaged with a number of Proxy Components that represent the client interfaces to the public API methods exposed by the UcompOS Portal.
The UcompOS Portal is just another entity with the SDK installed in the context of the UcompOS Continuum.
As an example, we looked at the UcompOSWindowProxy class and specifically, its add(); method.
Let’s look at a simple example here to help explain this.
Suppose we have two UcompOS entities loaded into the UcompOS Portal. One will expose a public API method, the other will call that public API method.
In the Services Dictionary of the entity being contacted, we may see a property that looks something like this:
'API.someMethod':{ static:true, classRef:APIClass,method:'testMethod',description:'A test API method'}The classRef is the internal class path that houses the target implementation method, testMethod. Notice there is also a requirement to articulate whether the method is static or not.
Let’s suppose our internal testMethod(); implementation looks like this:
public static function testMethod(data:Object):Object { return {value:data.value*data.value}; }
Again, by strict convention, any public API method must receive exactly one parameter of type Object as input and return a value of type Object. In this extremely simple method, we return the square of the value property of the Object passed to the API method.
In the entity that will call this public API method, we could create a Proxy Component.
All Proxy Components by strict convention MUST extend the SDK class AbstractProxyComponent.
Our Proxy Component class may look something like this:
package { import com.ucompass.ucompos.sdk.client.AbstractProxyComponent; public class TestProxyComponent extends AbstractProxyComponent { public function TextProxyComponent() { super(); super._destination = _sdkModel.parent; } public function squareNumber(value:Number):void { call("API.someMethod",{value:value}); } } }
Some things to point out:
- The call method in our Proxy Component requires exactly two parameters – the public API method name in the remote entity and the Object instance to be passed to the method – this is the strict convention to be employed in Proxy Components
- In the constructor of our Proxy Component, we are setting the value of the protected property _destination – this concept will be covered in a follow-up posting in the near future but for now I’ll point out that all entities have a universally unique identifier associated with them (UUID) that can easily be determined dynamically
- In this case, since the _destination property is being sent to _sdkModel.parent, the implementation scenario would involve the entity that is publishing the public API method ‘API.testMethod‘ has launched the sub-application that will call the public API method – thus the target entity is the parent in this context and its UUID is accessible on the public property parent on the _sdkModel instance that is inherited from AbstractProxyComponent
And then to invoke the squareNumber(); method, you’d see something like this:
var p:TextProxyComponent = new TestProxyComponent();
p.squareNumber(5);
The call(); method of the AbstractProxyComponent class that all Proxy Components extend masks the implementation details of CommandObjects and DataPackages from the developer. call(); provides a direct interface to the SDKClient Singleton send(); method that sends a DataPackage instance into the UcompOS Continuum bound for the target entity.
In tomorrow’s posting, I’ll talk about how you actually get data back from the public API method. In other words, how we actually get the result from the squareNumber(); method in our Proxy Component.
This has to do with the asynchronous event handling implementation model in the UcompOS RXF that is modeled after the MVC (Model-View-Controller) design pattern. (Is MVC really a Design Pattern? Lott and Patterson seem to think so in their book Advanced ActionScript 3 with Design Patterns).
A Services Dictionary Publishes a UcompOS Entity’s Public API Methods
As I discussed in my posting yesterday, each application, sub-application, and the UcompOS Portal itself is considered an entity in the context of the UcompOS Continuum.
For an entity to play a meaningful role in the Continuum, it must have the UcompOS SDK installed and there is an SDK for Flash/Flex, AIR, and JavaScript UcompOS applications.
The SDK enables each entity to serve as both a client as well as a server as far as its ability to send requests to and receive requests from other entities.
The implementation details of the UcompOS SDK are well hidden from the developer, however, to build the most engaging and interactive experiences with the UcompOS RXF, a command of the core mechanics of the UcompOS SDK will serve you very well.
Before I continue, I recommend you take a look at the Video Tutorials entitled Services Dictionaries and Proxy Components that will provide a foundation for the client-server paradigm of a UcompOS entity.
Messages are sent back and forth between entities in the UcompOS Continuum in a format called a DataPackage. DataPackage is a class in the UcompOS SDK. Full SDK documentation is online for ActionScript and JavaScript developers.
The SDK class SDKClient is the interface to the UcompOS Continuum for outbound DataPackage instances and the class SDKServer is the interface to the UcompOS Continuum for inbound DataPackage instances.
The functionality an entity makes publicly available to other entities are considered that entities Public API Methods. The list of Public API Methods that an entity sponsors are published in an instance of a class known as a Services Dictonary.
A Services Dictionary by strict convention will extend the abstract class AbstractServicesDictionary which is built into the SDK.
AbstractServicesDictionary furnishes a protected variable _map, which will be overridden in the extending Services Dictionary class instance.
_map is a simple Object where each property is an Object whose key is the name of a public API method and whose value is an Object that points to the internal implementation location of the functionality.
For instance, in the UcompOS Portal Services Dictionary, you’ll see the following property in the _map Object:
'MDI.addWindow':{ static:false, classRef:com.ucompass.ucompos.controller.api.commands.MDI, method:'add', description:'Forms a new MDI window on the UcompOS Main Container' }
MDI.addWindow is then considered a Public API Method sponsored by the UcompOS Portal.
You can sort of think of a Services Dictionary as being analogous to a web server configuration file where virtual hosts are analogous to public API method names and the local directory they resolve to are analogous to the mapping to the internal functionality that is leveraged when the public API method is contacted.
When the UcompOS SDK is instantiated, the static getInstance() method of the SDKClient class is passed a reference to the main application class (an extension of MovieClip or Sprite in a Flash application or an implementation of Application or WindowedApplication in a Flex application).
The syntax to instantiate the UcompOS SDK client is as follows:
SDKClient.getInstance(this);
and this command is generally going to be in the application’s main class either in the constructor of the main Document class in a Flash application, or in a private event handler in the main MXML document of a Flex application being called AFTER the applicationComplete event is fired.
The instantiation of the UcompOS SDK Client can accept a second parameter as well which would be a new instance of a Services Dictionary. So suppose in my entity my Services Dictionary was a class named ServicesDictionary. I would instantiate the UcompOS SDK as follows:
SDKClient.getInstance(this,new ServicesDictionary());
Once I do this, any other entity can easily target my entity’s public API methods.
I will add at this point that by strict convention, any public API method must be configured to accept exactly one parameter of type Object and return a value of type Object. Any data that needs to be sent to a particular public API method must be encapsulated within the single Object parameter passed to it.
Also, the UcompOS SDK has been kept deliberately as simple as possible. There are no Flex dependencies in it which is why you can use the SDK interchangeably in Flash as well as Flex applications so keep this in mind when packaging data for transmission across the UcompOS Continuum. For instance, sending an ArrayCollection from a Flex application to the public API method of a Flash application will obviously not work.
An entity can target functionality in another entity even if that functionality is not exposed in the target entity’s Services Dictionary. However in this case, obviously, the calling entity requires intimate knowledge of the internal implementation details of the target entity.
In my blog posting tomorrow, I’ll focus on the other side of a UcompOS transaction between two entities and I’ll introduce Proxy Components. A Proxy Component is a client to the public API method in another entity. As a brief foreshadowing, the UcompOSWindowProxy’s add(); method in the UcompOS SDK can be considered a client to the example UcompOS Portal public API method above, MDI.addWindow.
Further, packaged into the UcompOS SDK are a host of Proxy Components that represent the client interface to all the public API methods that are exposed by the UcompOS Portal.
More on this crucial topic tomorrow.
The Mechanics of HTML Applications in the UcompOS RXF
When I set out to build the application (the Educator 2 E-Learning Enterprise Management System) that led me to build the UcompOS RXF, I was operating under some very simple premises.
One such premise is, to the maximum extent possible, I didn’t want to be handcuffed exclusively to any one particular technology.
While I did make the decision to make the UcompOS Portal (i.e. the “Main Container”) a Flex 4 application (and I am very comfortable with this decision), as far as the sub-applications that would be launched inside or alongside the UcompOS Portal, I simply felt I absolutely needed to be able to work with as wide of a canvas as possible and for me this includes Flex, Flash, HTML/JavaScript/CSS, Adobe AIR for desktop UcompOS applications and even Microsoft Silverlight.
But any of these technologies need be able to interact with each other seamlessly such that what particular technology a UcompOS application or sub-application was constructed with was irrelevant in the context of the overall UcompOS Continuum.
In a full-fledged UcompOS implementation that has multiple UcompOS Applications all working in conjunction with each other, each application, sub application, and the UcompOS Portal itself is a player I refer to as an entity.
For an entity to be able to talk to other entities or execute API commands on other entities, it must have the UcompOS SDK installed. The download for the UcompOS SDK contains 3 resources for Flash/Flex, AIR, and JavaScript developers.
The Flash/Flex SDK is a SWC that has no Flex dependencies so you can use it interchangeably in Flash as well as Flex applications, however, the Flash/Flex SDK is based on ActionScript 3 and at this point I don’t yet have any intention to release an ActionScript 2 SDK (though there still are ways to involve ActionScript 2 applications in UcompOS implementations and that will be covered in a future posting).
The AIR SDK is a SWC file that has some AIR 2.0 dependencies so that will only compile in an application that has the AIR 2.0 SDK at its disposal.
The JavaScript SDK is comprised of 2 files: UcompOSSDK.js and UcompOSSDK.swf. UcompOSSDK.js needs to be included in a UcompOS HTML Application <SCRIPT/> element and the file can be placed on any webserver – even on a domain different than the domain hosting the UcompOS Application.
However, the UcompOSSDK.swf file MUST be served on the SAME domain as the domain that is serving the UcompOS HTML Application.
By default, the UcompOS SDK will look for the UcompOSSDK.swf file in the root of the webserver – i.e. at an absolute path of /UcompOSSDK.swf. This however can be changed by setting the basePath variable in your HTML Application’s JavaScript code to a relative or absolute path – for instance:
basePath = ‘./’;
would tell the UcompOS SDK that the UcompOSSDK.swf file can be found in the same directory as the HTML Application.
In my post yesterday I discussed the fact that for browser based content, UcompOS applications use the LocalConnection infrastructure of the Flash Player as their communication medium (UcompOS AIR Applications use the new AIR 2.0 ServerSocket implementation).
So if the UcompOS Continuum is based on the LocalConnection which is a Flash Player implementation, how then do UcompOS HTML Applications participate in UcompOS transactions?
The answer is using the UcompOSSDK.swf as a Proxy to the UcompOS Continuum.
When the UcompOSSDK.js file is implemented into a UcompOS HTML Application, the UcompOSSDK.swf file is loaded as an invisible element into the page via DHTML.
The UcompOSSDK.swf file is actually a UcompOS Application with the UcompOS SDK incorporated into it.
The UcompOSSDK.swf application utilizes a Proxy Component (more on Proxy Components in a future post) called JavaScriptCommand. The UcompOS JavaScript SDK serves as a traffic manager between a UcompOS Application’s internal implementation and the UcompOSSDK.swf application. Then the UcompOSSDK.swf application and its JavaScriptCommand Proxy Component serves as a proxy to the UcompOS Continuum.
If all this sounds complicated, well, it is. It took a lot of time to think through the implementation details and to develop, test, and perfect them. But once you get your head around it, it is very easy to implement.
For the most part, the mechanics involved with leveraging the UcompOS JavaScript SDK are very similar to those involved with the UcompOS AIR and Flash/Flex SDK.
ActionScript 3 and JavaScript are different languages though. For starters, ActionScript 3 is a strongly typed language and JavaScript is not. Also, implementing Object Oriented design patterns in JavaScript is more convention than strict procedure so there are subtle differences I’ll cover in this blog as the project evolves.
To get started building simple UcompOS HTML applications, you really only need to know a very basic amount of JavaScript. To build full fledged powerful UcompOS HTML applications however that implement Services Dictionaries and Proxy Components (I’ll devote separate postings to each of these exciting topics in the next week), you do need to invest some time into learning Object Oriented Programming conventions in the JavaScript programming language.

