Hello,
I’m working on a custom submitter for 3ds Max using the Python API (through the Web Service).
I’m having a bit of trouble with the submit function:
If I use the Web Service I get an error when submitting the scene file with the SubmitJobFiles()
:
connection.Jobs.SubmitJobFiles(jobInfoFilepath, pluginInfoFilepath, auxiliaryFiles)
where connection = Connect(SERVER_NAME, SERVER_PORT, True, CERTIFICATE_PATH, False)
the error is Error: could not find Auxiliary submission file: [path to 3ds Max file] (Deadline.Submission.DeadlineSubmissionException)
The problem is that the file is actually there (in my download folder C:\Users\username\Downloads\Scene.max)
But, if I use the command subprocess.call([DEADLINE_COMMAND, jobInfoFilepath, pluginInfoFilepath, sceneFilepath], shell=True)
it works!
Is this a bug or am I setting something the wrong way?
Thank you,
Enrico Lapponi