Hi,
After upgrading DFC/DFS from 6.7 to 7.2, I'm having a problem building a custom dfs service ear.
The problem is that several jars are not included in the package
These are not included:
castor-1.1-xml.jar
certj.jar
EccpressoAll.jar
elmjava3_1_0-jdk1.5.0_12.jar
flexlm.jar
jcmFIPS.jar
xtrim-api.jar
xtrim-server.jar
although I included them in the build.xml
<packageService deploymentName="${ear.name}"
destDir="${basedir}/${build.folder}"
generatedArtifactsDir="${project.resources.folder}">
<libraries>
<pathelement location="${basedir}/${build.folder}/${module.name}.jar"/>
<pathelement location="${dfs.sdk.libs}/emc-dfs-services.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/dfc.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/dms-client-api.jar"/>
<pathelement location="${dfs.sdk.libs}/utils/aspectjrt.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/configservice-api.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/configservice-impl.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/cert.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/cryptojce.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/cryptojcommon.jar"/>
<pathelement location="${dfs.sdk.libs}/dfc/jcmFIPS.jar"/>
...
</libraries>
</packageService>
These wouldn't be a problem, except for cert.jar
Of course I can include a custom ant task to put the jar inside the ear, but I suppose there is something wrong, and I would like to understand what.
Can anyone help?
Nuno