Hi everyone,
I am hoping I post this question on the right forum. I appreciate any help and ideas from you.
I am using the following statement to create a client object in RAD7 (WAS server 6.1)
IDfClient clientx = new DfClientX();
In the standalone app. this works fine with no issues. But when I put the same code in web app. it will get the following error. It seems like the class loader can see the dfc.jar and the Object class, but somehow cannot find the factory method. I searched online and some suggestion is that the old aspectj.jar was picked up causing the issue. So I replaced all the aspectj.jar on my pc that I could find with the jar coming from composer plugin. But the result is the same. Just cannot pass through. The standalone app. works fine. Just cannot get it why it cannot find it in the buildpath in web app.
00000026 SystemErr R java.lang.NoSuchMethodError: org/aspectj/runtime/reflect/Factory.makeMethodSig(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/aspectj/lang/reflect/MethodSignature;
[3/14/11 23:12:00:629 CDT] 00000026 SystemErr R at com.documentum.fc.common.DfObject.<clinit>(DfObject.java:1)
[3/14/11 23:12:00:629 CDT] 00000026 SystemErr R at java.lang.J9VMInternals.initializeImpl(Native Method)
[3/14/11 23:12:00:629 CDT] 00000026 SystemErr R at java.lang.J9VMInternals.initialize(J9VMInternals.java:177)
[3/14/11 23:12:00:629 CDT] 00000026 SystemErr R at java.lang.J9VMInternals.initialize(J9VMInternals.java:144)
...
Thank you and looking forward for your responses.
Hong