Hi All,
I am using TeamSite 6.7.1. I created simple workflow.
start task -> URL Task -> end task
I created test.java file and put it in
/iw-home/local/config/lib/content_center/customer_src/src/p1
folder where p1 is package. and did a built from
/iw-home/local/config/lib/content_center/customer_src/
by command
/opt/teamsite/iw-home/iw-perl/bin/iwperl /opt/teamsite/iw-home/bin/make_toolkit.ipl
built is succesfull.
JAVA coad is
package p1;
public class test {
public static void main(String[] ss){
execute();
}
public static void execute(){
System.out.println("**** world");
}
}
in WF URL TAsk I did
Variable set to ClassName=p1.test
URI set to
http://$IW_SERVER/iw-cc/urlexternaltaskBut while running WF I am getting error in servletd_out.log as below
2010-06-30 05:15:33,964 [http-8080-Processor23] WARN com.interwoven.ui.datacapture.core.dcxp.DTDNodeOrderingStrategy (sumit.k.katre) - Error reading DTD
http://localhost/iw-cc/datacapture6.0.dtd. Message: At line 2, column 3: Unexpected token: LT(null)
I gone through the devnet and find the same issue faced by one user but did get exact sotion.
http://devnet.interwoven.com/forums_vb/showthread.php?t=32351&forumid=17&highlight=call+java+task+workflowThanks in advance
Regards
SUMIT