- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have followed the instructions in the video on the ones and zeros website for upgrading my vault plug-in to 2012. However when I launch vault, I just get the generic error: "Error loading extension Camlink". Any idea where to start looking?
Just a few questions yet too. The video did not say anything about compiling for .Net framework 4.0 instead of 3.5 but I suppose I need to do that. When I changed that I also had to add a few dll references that the video didn't mention.
Also, I didn't change my webservices code, I assumed the old code is still supported, did I assume wrong?
public void OnLogOn(IApplication application)
{
mDocSvc = new DocumentService();
mDocSvc.Url = application.VaultContext.RemoteBaseUrl + "DocumentService.asmx";
mDocSvc.SecurityHeaderValue = new Autodesk.Connectivity.WebServices.DocumentSvc.SecurityHeader();
mDocSvc.SecurityHeaderValue.Ticket = application.VaultContext.Ticket;
mDocSvc.SecurityHeaderValue.UserId = application.VaultContext.UserId;
}
public void OnLogOff(IApplication application)
{
mDocSvc = null;
}
Solved! Go to Solution.
