I am working on an enhancement project which invloves Java/J2ee, Oracle PL_SQL, and TeamSite technologies. From the Java/J2EE web application a cgi file say abc.cgi is being called which displays a button to start the workflow (must be calling iwwft_instantiator.cgi). We need to create similar other cgi files but this abc.cgi is in binary format and is processing parameters received from jsp page. Although we have corresponding abc.ipl file which we can see and edit having same logic present in abc.cgi, but how to generate .cgi from .ipl if we create .ipl files referring to abc.ipl? I need some exe which can convert a .ipl to .cgi. Also I noticed one thing that size of abc.cgi is different from abc.ipl. I would be grateful if any kind of help or suggestions are provided. We are in a very critical phase of the project hence need to find resolution as soon as possible.Thanks-Piyush
#!/usr/bin/perluse strict;use warnings;print "Hello World!\n";exit 0;
% perlcc foo.ipl -o barpccnUNWH.c: In function 'perl_init_aaaa':pccnUNWH.c:15065: warning: this decimal constant is unsigned only in ISO C90
% ls -l foo.ipl bar-rwxr-xr-x 1 ghoti wheel 660700 Jan 25 06:47 bar-rwxr-xr-x 1 ghoti wheel 74 Jan 25 06:46 foo.ipl% ./barHello World!
CGI is just a wrapper for the IPL file.U can do as follows to create a mytest.cgi(iw-home\teamsite\httpd\iw-bin directory).1. Create a file called mytest.ipl(This is your perl file which has all the code)2. Copy an existing cgi(even supplied by Interwoven) to mytest.cgi [Please note that mytest.cgi is exact copy of other cgi but U renamed it..thats all).3. Now U can invoke mytest.cgi and it would in turn invoke mytest.ipl.