Microsoft .NET and Mono library for the Vuzit Document Web Services API Released
August 5, 2009 – 2:02 pm by Brent Matzelle
Printable Version
![]()
Vuzit just released a developer code library for the Microsoft .NET Framework and Mono called Vuzit.Net. The Vuzit.Net library allows developers to directly access the Vuzit Web Service API to automate the upload, download and removal of documents within the Vuzit DocuPub Platform. You can use this library through any .NET enabled language such as C#, Visual Basic.NET (VB.NET), JavaScript (JScript.NET), LUA, Pascal or Python to name a few.
As with our other code libraries it’s just a couple lines of code to perform any action. Here’s an example:
Vuzit.Service.PublicKey = "YOUR_PUBLIC_API_KEY";
Vuzit.Service.PrivateKey = "YOUR_PRIVATE_API_KEY";
string path = @"c:\path\to\document.pdf";
Vuzit.Document doc = Vuzit.Document.Upload(path);
Console.WriteLine("Document id: {0}", doc.Id);
Getting Started
To get up and running you download Vuzit.Net and add the DLL to your project. You can see detailed instructions on the official Vuzit.Net wiki.
Below are some other helpful links for getting started:
Do you have Vuzit.Net in my Programming Language?
Right now we support the following programming languages:
- Javascript – (tutorial)
- PHP
- Ruby
- Command-line (for any programming language)
If you’re interested in a library for your programming language then let us know. If you want to try to write your own then also let us know and we’ll do everything we can to help you build it. The languages on our short list are Java and Python.
