Hi ,Using TS 6.5 SP2 Want to know do we have iw-home/httpd/iw-bin/iwov_wrapper_cgisfile in TeamSite 6.7 or not ? Does TeamSite 6.7 supports this.We have this in 6.1 & 6.5.Regards,Rohit
Hi Ghoti,Yes the filename & path is correct. If you go to iw-home/httpd/iw-bin diryou will find this file.It exists in 6.1 & 6.5 .I am attaching this file. This file contains the list of cgi programs which can only be executed with user having MASTER role.But if you want that all the users should have permission to execute that script then you place in this file. I want to to initiate my workflow from my custom menu item ( say Action-->My WF ) . I have written following CGI script. [HTML]my $wft = TeamSite::WFtemplate->new(template => $wft_file); $wf_system->CreateWorkflow($wf_spec);$job->Invoke();[/HTML] Now when I initiate it from custom menu item , I get an error message "You must be a master to run iwjobc"So if i add my script name to this file then it will not give this error message & it will execute.Attached the 'iwov_wrapper_cgis' from 6.1 and also my sample CGI script to invoke workflow.Please let me know if there is some alternative to invoke workflow without having MASTER rights.Thanks in advanceRohit
I want to to initiate my workflow from my custom menu item ( say Action-->My WF ) . I have written following CGI script. [HTML]my $wft = TeamSite::WFtemplate->new(template => $wft_file); $wf_system->CreateWorkflow($wf_spec);$job->Invoke();[/HTML] [...]Now when I initiate it from custom menu item , I get an error message "You must be a master to run iwjobc"So if i add my script name to this file then it will not give this error message & it will execute.[...]Please let me know if there is some alternative to invoke workflow without having MASTER rights.