Message 1 of 2
Not applicable
08-25-2018
02:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I created a Vault plugin for Advance Steel (an AutoCAD extension). When I create a new Job to create a visualization file, the Job Processor returns an error "The default Inventor project file is not set or could not be found.". But since I don't work with Inventor, how can I specify the Inventor project.
Here is the C# code that shows how I create the Job:
FileIteration fileIteration = ... get some file from a vault ...
JobService jobService = Connection.WebServiceManager.JobService; if (!jobService.GetJobQueueEnabled()) jobService.SetJobQueueEnabled(true); jobService.AddJob("Autodesk.Vault.DWF.Create.dwg", $"DWF Create: {fileIteration.EntityName}", new[] { new JobParam { Name = "FileVersionId", Val = new FileVersion(fileIteration).Id.ToString() } }, priority: 10);
Here is the error that I get:
Solved! Go to Solution.