Hi,
We are using Teamsite 6.5 with SP 1 and OpenDeploy 6.0 on windows 2k3.
I have used both "iwodcmd start" & "iwodstart.ipl" and still not getting any error codes. The command is working fine. But in any scenario .... return value is null.
This is our code snippet.
sub openDeploy
{
($deployxml, $file_deploy) =
@_;
$logger->debug("file_deploy " . $deployxml);
$logger->debug("file_deploy " . $file_deploy);
my $iwodstart = "C:/Interwoven/OpenDeployNG/bin/iwodcmd start ";
my $command = $iwodstart . $deployxml . " -k file=" . $file_deploy;
$logger->debug("command" . $command);
my $cmd = `$command`;
$logger->debug("cmd " . $cmd);
return $cmd;
}
thnx in advance.