Hi Muhammed,
I'm actually loading two licenses in the class (one for Slides and one for Metafiles) could that be the problem? I am loading them as follows...
String sLicensePath = AssetBankSettings.getApplicationPath() + "\\" + AssetBankSettings.getThirdPartyLicenseDirectory();
slidesLicenseStream=new FileInputStream(sLicensePath + "\\Aspose.Slides.lic");
metafilesLicenseStream=new FileInputStream(sLicensePath + "\\Aspose.Metafiles.lic");
//Instantiate the License class
License slidesLicense=new License();
License metafilesLicense=new License();
//Set the license through the stream object
slidesLicense.setLicense(slidesLicenseStream);
metafilesLicense.setLicense(metafilesLicenseStream);
...and the Slides one works fine while the Metafiles one doesn't.
Thanks,
Matt