Live Mesh Tech Preview: First Impression
At last, I saw the news that Mesh is accessible for public now. Manage to get to the login screen pictured above but my Internet connection is too slow to see anything cool on Live Desktop.
Still showing the Loading… message after 30 minutes.
So I click on Add Device to install the Live Mesh client on my laptop.
There is a choice for 32 or 64 bit but surprising the client for Windows Mobile is not available yet. I heard someone mentioned there is a client for WM out there.
Now got to wait for the client to be installed. During the setup it will ask you for your Windows Live ID and goes thru the Vista’s UAC request.
Once setup I have a Messenger like app sitting at my taskbar.
My laptop is now visible on my Mesh website
When I click connect to my laptop they prompt me to install Live Mesh ActiveX. Looks like this going to work in IE only.
Haha… since I am using my laptop to connect to my laptop, it prompt an message.
Thinking of this, when the Mobile client is available, I can leave my laptop on my desk and take my HTC Diamond to meeting.
Above is my Mesh desktop.
Lets create a new folder.
I thought this is an app on my laptop, but its actually on Mesh’s desktop. Got this Vista look and feel.
No drag and drop yet, got to select files to upload.
So go back to my work but if you want to find out what’s so nice about Live Mesh, check out Fai’s blog here. He is one of the few secret testers for Mesh for the pass few months and the guy with Live Mesh client on his Windows Mobile!
Beam me up to my Live Dekstop and all my devices!!!
Here is a tutorial on Live Mesh P2P IE Favorites sync
Thoughts on C# 4.0
Yes yes… meet the design team on C# 4.0. C# 3.0 was out with Visual Studio 2008 so it is natural to start look at the future of the language now. This is an interesting team as they got guys from different background i.e. SQL Server, VB, IronPython and even Javascript. We continue to have the father of C# Anders Hejlsberg in the talk here.
http://channel9.msdn.com/posts/Charles/C-40-Meet-the-Design-Team/
Not blogging today. Busy with my new HTC Touch Diamond
Just got my new HTC Touch Diamond phone today so I guess I will be busy configuring it and skip blogging for a day or two.
Moonlight 0.7 ships! Silverlight’s homepage rendered in Linux
There you have it, Novell ships Moonlight 0.7 and now it works perfectly in Firefox ver2.0 and 3.0 as well. If you followed my workaround for Moonlight 0.6 here, you have to disable to script.
Above its a screenshot of Moonlight 0.7 working in Ubuntu 8.04 with Firefox 3.0.
Go here for the download.
MOSS 2007 BDC Definition Editor gotchas
What is Business Data Catalog(BDC)?
The BDC is essentially a catalog of business applications that are of interest to SharePoint Server 2007 users, and it bridges the gap between the portal and business applications by bringing in key data from various applications to SharePoint sites, lists, search, and user profiles. The BDC is the key infrastructural component around which most of the other business data features of SharePoint Server 2007 are built. Administrators can register business applications in the BDC, after which the data in the application is immediately available to SharePoint through the business data features described below. A key requirement for each registered business application is an XML-based metadata model that describes the application programming interfaces (API) of the application or the schema of the database that maps to business objects (e.g. customer) and properties (e.g. name) that a SharePoint user can understand. These metadata models can be easily created by DBAs or database developers.
For example you can expose a table in a SQL Server database
On to a Business Data List webpart in MOSS 2007.
Creating an application definition use to be a pain because you have to define every properties and entities inside a XML file without the help of any tools. Then came BDC Man to over this problem but it comes with a pocket burning price tag. So somewhere early this year, SharePoint SDK update includes a simple BDC Definition Editor. Now you can have (almost) all the features found in BDC Man for free!
Connecting to a database is easy, fire up DBC Def Editor
On the Add LOB System window, you can connect to a DB or Webservice, for this I click on Connect to Database
Key in the connection string and click Connect
After that on the right you can see 2 new buttons, I click on Add Table to bring in a table now
I select the table Currency and drag in over to the blue blank space.
For this I going to use 1 table only, so I click at the bottom.
Now the definition has been created. Logically I can click Export and upload it to MOSS. The exported Application Definition is a XML file shown below
[sourcecode language='xml']
xsi:schemalocation="http://schemas.microsoft.com/office/2006/03/BusinessDataCatalog BDCMetadata.xsd"
type="Database" version="1.0.0.0" name="currency">
Imagine you have to do this manually even for a single database table!!
So now go to your Shared Service Admin site to upload the def file. Click on Import application definition
Choose the file and click Import on the next screen.
There you go, no problem reported.
So now with the app def imported I go back to my SharePoint site to add the Business Data list webpart.
To bind my Currency table to the part, I open up the webpart editor. At the Type textbox click on the telephone book icon.
To my surprise, when I open up the Business Data Type Picker, it reported There are no Business Data Type loaded in the Catalog! So what went wrong? The Currency Add Def indeed imported.
Actually the def editor left out a couple of things which need the user to manually configure which I found out later.
First one, the Business Data List webpart uses a Finder method instance of the app def to list the data. The def editor by default only create the SpecificFinder and the IdEnumerator method instances.
To verify this, open up your Event Viewer and you will see errors in Application log.
To create another method instance, right click on Methods and click Add Method
Change the name of the new method to List
On RdbCommandText, copy the one from the SpecificFinder but remove the where clause
Then add a new Return parameter. Right click on Parameter and choose Add Parameter.
Change the name to @Currency
Now right click @Currency and select Create Root TypeDescriptor
Cut the story short, you now continue to construct the parameter as per the one on Find_Currency method. Only thing is you do not need to create the input parameter @Name.
Right click Instances and choose Add Method Instance, select the radio button ‘Finder’ on the Create Method Instance window. The Return TypeDescriptor should be Reader.
After that go over to Currency Entity, fill in the name of the Title field. The purpose of the Title field is to tell MOSS later which column to display the action menu.
Having mentioned action menu, I won’t be created any Action for this entity but instead use the default ‘View Profile’ action menu.
Now update the version number to 1.1 else BDC will complain version conflict. After that export the definition to xml file and import it to MOSS.
Double confirm the version number is 1.1 now.
Then go back to my SharePoint site, funny thing is now you need to remove the blank web part and insert a new Business Data List webpart. Then open the webpart editor and you will see your Currency table there.
Add that to the editor and exit the edit mode. You can now see the Currency table listed here.
