Hi Guys,I am using teamsite 6.5I have created workflow for approval process.But dont know how to use opendeploy using scripts to submit to satging and then to production.Is there any Interwoven examples that can be incorporated with my workflow .If there are any tutorial samples on opendeploy other than workflow Developers guide kindly adivse
...I have created workflow for approval process.But dont know how to use opendeploy using scripts to submit to satging and then to production.
BEGIN { $ENV{"IWODHOME"} = "hard-code the path to your IWODHOME directory";};
In your script, insert the following: BEGIN { $ENV{"IWODHOME"} = "hard-code the path to your IWODHOME directory";}; That's according to your error message, although I *think* the environment variable might be IWOD60HOME but try the code above first.Dave
Hi i inserted the code inside my tpl file i have another problem now.I am having error message as shown belowCan't access the OpenDeploy template file, 'C:InterwovenOpenDeployNG/conf/wft_opendeploy.xml' my IWODHOME IS C:/Interwoven/OpenDeployNG I dont know how the code changes the path to C:InterwovenOpenDeployNG/conf/wft_opendeploy.xmlKindly advise
Could you have missed that at concatenation of your path string in your script?how are you invoking deployment?if you could paste a snippet of what you are actually doing then someone might be able to help better.
Hi Guys,I am recieving an error in error log as belowThu Apr 20 16:07:59 2006 - System environment variable IWODHOME is not set.It must be set to the OpenDeploy home directory.To set, issue from a DOS window: set IWODHOME=pathToYourODHome Example: set IWODHOME=C:\iw-home\OpenDeployNGTo check, issue from a DOS window: echo %IWODHOME%I have set the IWODHOME but still not able to resolve kindly advise
PassEnv IWODHOME IWODRMIPORT
PassEnv IWOD60HOME IWODRMIPORT
Guys,I am able to do Opendeploy SSL through the Opendeploy administration.But dont know how to do using code.Actually i am using the existing "configurable_author_submit.wft " workflow example given by interwoven during installation.What are the things need to change to make it ssl compatible.Kindly advise.Is it ok change only the wft_opendeploy.xml or do i need to change something in the ipl.Kindly adviseThanks
set
PATH *is* the environment variable. It's saying that your od-home/bin directory should be included in the list of directories already in your PATH environment variable.You can see your environment variables in your shell on either Windows or Unix (I should say, MOST flavors of Unix respond to this command) by typing "set" at your command prompt. PATH is listed there.Are you on Windows or Unix?