Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
I am trying to use the mksapi from MKS 2009 to drop a sandbox from a java application. I reviece an APIException that states "A value for "sandboxName" is required."
Here is the code that I am using.
Command mksDropSandbox = new Command(Command.SI,"dropsandbox");
mksDropSandbox.addOption(new Option("noconfirm"));
mksDropSandbox.addOption(new Option("delete","all"));
mksDropSandbox.addOption(new Option("Y"));
mksDropSandbox.addOption(new Option("cwd",sandbox.getParentFile().getAbsolutePath()));
mksDropSandbox.addSelection(sandbox.getName());
mksCommandResponse = mksCommandRunner.execute( mksDropSandbox );
Any help will be appreciated.
Hello Russell,
I've tried to take a look at this and haven't found anything so far. Does anyone else in the community have anything to share here?
Failing that, if you haven't already, you may want to open a case with our Integrity Support team, then sharing what you find out here.
Regards,
Kael
Hi Russel,
IMHO you could leave out the CWD option, as "sandbox.getName()" already gives the absolute path to the project.pj file you need (assuming that your sandbox object represents is a MKS API workitem object)
HTH Matthias
I agree that the CWD option could be omitted, but that is a peripherial issue. The core problem is that I am unable to specify the sandbox name, full path to the pj file. The code that I have returns APIException that states "A value for "sandboxName" is required."
Russell
Are you doing this as a client side integration, or a server side integration?
I am trying to do this as a client side integration.