Hi,
I am using LR 11.52 with JDK 1.7.
I am using trial version to evaluate its features for Java applets embeded web applications used by our company.
Here is the portion of java code which is httting the issue:
public static void global_init() throws FileNotFoundException {
if (ready == false)
synchronized (lock) {
if (ready == false) {
ArrayList<Shifts> shifts = new ArrayList<Shifts>(); // This is the place exception thrown access violation...
shifts = readCSV("requestBody11.csv",shifts);
replaceVariables(shifts,"requestBody11.xml");
RequestObjectListBeanBA0=XmlBasedBinMemoObjectParsing.xml2bin("requestBody8.xml");
RequestObjectListBeanBA1=XmlBasedBinMemoObjectParsing.xml2bin("requestBody9.xml");
RequestObjectListBeanBA2=XmlBasedBinMemoObjectParsing.xml2bin("requestBody10.xml");
ShiftEditorBeanBA3=XmlBasedBinMemoObjectParsing.xml2bin("requestBody11.xml");
KBeanBA4=XmlBasedBinMemoObjectParsing.xml2bin("requestBody12.xml");
ready = true;
}
}
}