
A while back I did a webcast titled Introduction to Vault Programming, which you can download from our webcast archive. However, I noticed that the two live demo parts don't show up properly. So I decided to re-record the demos.
Demo 1: Writing a simple Vault Client
In this demo, I create a simple EXE that connects to the Vault server and lists out all the files in the Vault. The code for this demo can be found in the VaultList SDK sample.
https://justonesandzeros.typepad.com/Videos/CreateDemos/swfobject.js
// <![CDATA[
<![CDATA[
var so = new SWFObject( "http://justonesandzeros.typepad.com/Videos/Vault_2011_SDK_Tour/Vault2011-blogformat.swf", "csSWF", "400", "318", "8", "#1a1a1a");
so.addParam( "quality", "best" );
so.addParam( "allowFullScreen", "false" );
so.addParam( "scale", "noscale" );
so.addParam( "allowScriptAccess", "always" );
so.addVariable( "autostart", "false" );
so.write("media");
// ]]>
// ]]>
Demo 2: Writing a simple Vault Explorer Command
In this demo, I create a simple DLL that adds a command to Vault Explorer. When clicked on, the command pops-up a message saying "Hello World". The code for this demo can be found in the HelloWorld SDK sample.

Leave a Reply