C:\Interwoven\OpenDeployNG\bin>iwodcmd start DDTutorial/ddconfig -k iwdd=deployment1I tried to execute this command as part of the workflow, but it didn't execute.my $dd1 = "C:/Interwoven/OpenDeployNG/bin/iwodcmd";my $dd2 = "start";my $dd3 = "DDTutorial/ddconfig";my $dd4 = "-k";my $dd5 = "iwdd=deployment1"; declare_task('datadeploy', name => "datadeploy", description => $localizer->format('deploy_task.description'), type => "externaltask", owner => $iw_areaowner, timeout => "+000001", # 1 minute areavpath => $iw_workarea, unlock => TRUE, command => "$dd1 $dd2 $dd3 $dd4 $dd5");If my approach is not proper ,pls specify the correct approach.
Before you ask someone else to do your QA work for you, why don't you test this and find if you have any problems. Then, after some tweaking on your part, if you're still having problems, update your post with specifics.
If any one knows the solution to the problem please guide me.
I guess so... personally, I appreciate the "STATUS: 2", etc. Hmm, when I got up this morning I didn't think I would eventually reminisce about iwodstart.ipl. Strange how that happens.
Perl script is invoked from the workflow using the following syntax. declare_task('datadeploy', name => "datadeploy", description => $localizer->format('deploy_task.description'), type => "externaltask", owner => $iw_areaowner, timeout => "+000001", # 1 minute areavpath => $iw_workarea, unlock => TRUE, command => "$iwperl $dd_script");where :my $dd_script = "$wft_dir/solutions/myWFDDfile.ipl";my $myiwperl = "c:/Product/Interwoven/TeamSite/iw-perl/bin/iwperl";
I tried to invoke the datadeploy using the perl script as the wrapper.This perl script further invoked the .bat file. The .bat file is having the command to invoke datadeply.And the perl script is invoked using external task within the workflow.Attached are the perl script & .bat file.
Yes the debug statements are written to the indus.txt file.Please can u provide me exact synatx i need to write in perl script.I am basically a java programmer working on Interwoven for the first time.I am having a hard time working on so many tools ( teamsite / datadeploy / opendeploy / workflow /form api) and reading the individual documentation for these.Regards,Sachin
I have been able to execute the datadeploy from my workflow.Thanx for all the help provided.Regards,Sachin