Hi,
I had created a test_tbo 6.5 env. Now when I have written some DFC TBO code to just check the working of TBO's. I have over-ridden doCheckout method and tried to add some lines in the log using sysout and DfLogger.
But it is not reflecting..in log file it is not showing anything
1) created class and implemented IDfBusinessObject && created jar file
2) Then in Composer i had created the jar Definition
3) After that created the module with name test_tbo..This is an object_type
4) After that in Api Tester i exicuted this command "publish_dd,c,en"
i am not geting any logger information and sysout information in my application server
can any one suggest me what's mistake i am doing..This is the code that i was written
protected IDfId doCheckout(String versionLabel, String compoundArchValue, String specialAppValue,
Object[] extendedArgs) throws DfException {
IDfId id=super.doCheckout(versionLabel, compoundArchValue,specialAppValue,extendedArgs);
validate(id);
System.out.println("This document is checkedout sucessfully");
return id;
}
private void validate(IDfId id) {
// TODO Auto-generated method stub
System.out.println("Validate method is exicuted in Test_Tbo");
DfLogger.trace(this,"nothing is there"+id,null,null);
}
}