Here is my code snippet in this am getting csfile , xslTemplateFile as null object ,please whats going wrong although am getting CSVPath.
--------------------------------------------------------------------------------------------------------------------------------------------
String strTemplate = "/iwmnt/iwadmin/main/config/STAGING/workflow/email/samples/sampleAuthorNotification.xsl";
CSVPath templateVpath = new CSVPath(strTemplate);
System.out.println("CSVPath ===="+templateVpath);
CSFile csfile=client.getFile(templateVpath);
System.out.println("CSFile ===="+csfile);
CSSimpleFile xslTemplateFile = (CSSimpleFile) csfile;
System.out.println("CSSimpleFile ===="+xslTemplateFile);
----------------------------------------------------------------------------------------------------------------------------------------