Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Workflow Modeller Custom Instantiation page
CMSILuser
TeamSite 6.7.1 Windows 2003
I am trying to use Workflow modeller for my new workflow creation. I am successful until creating custom_instantiation.cfg (besides ipm). Everything works fine sofar. I am trying to use inline or call server calls from this custom_instantiation.cfg is even working fine. But when I am trying to pass parameters, it doesn't work. I am not getting any values into my ipl either thru callserver call or iniline. The following details must help in understanding the issue a little bit more.
-----------------------------------------------------
CallServer call:
Code in FormAPI: It works fine. I alerted the values with in JS.
paramaters.workarea = branchName;
paramaters.userid = userId;
IWDatacapture.callServer("/iw-bin/Test/LoadRevs.ipl", paramaters, true);
Code in the ipl: Here I am not getting any values.
use CGI;
my $cgi = new CGI;
my $userId = $cgi->param('userId');
my $branchName = $cgi->param('branchName');
-----------------------------------------------------
I have also tried to achive this thru an iniline call.
Inline call code:
code in custom_instantiation.cfg
Choose an Approver
/iw-perl/bin/iwperl.exe
/httpd/iw-bin/Test/LoadRevs.ipl'/>
Code in the ipl: Here I am not getting any values.
use TeamSite::CGI_lite;
use TeamSite::Config;
$|=1;
$cgi = TeamSite::CGI_lite->new();
$cgi->parse_data();
my $admin_user = $cgi->{form}{'user_name'};
my($branch123) = $cgi->{form}{'branch_name'};
-----------------------------------------------------
It is working fine from a regular template, but not from custom_instantiation.cfg. Once again, the issue is not about calls. Calling ipl is working fine either way. It is just about getting branch name and userid values in the ipl. It could be a small thing that I'm missing. I really appreciate all your inputs in this regard.
Thanks much in advance,
- R
Find more posts tagged with
Comments
There are no comments yet