Hi,
I have tested a HelloWorld DFS service (using DCTM 6.7, DFS 6.7, composer 6.7) and I have a question about the ear file generation in Composer.
It is supposed that Composer makes use of the dfs-build.xml (located in DocumentumCoreProject) in order to generate the ear file.
This is a snippet of the xml:
| <fileset id="dfs.classpath" dir="${dfs.sdk.home}/lib/java"> |
| <include name="emc-dfs-rt.jar"/> |
| <include name="emc-dfs-tools.jar"/> |
| <include name="emc-dfs-services.jar"/> |
| </fileset> |
But after a successful export, looking into the lib folder of the ear, I can only see one of these three libraries: emc-dfs-rt.jar
Why the other two are not included?
One way to include the others is to explicite them during the export, adding the jars (in DocumentumCoreProject)

But I want the xml do it for me. Also, if I comment the lines:
| <fileset id="dfs.classpath" dir="${dfs.sdk.home}/lib/java"> |
| <!--<include name="emc-dfs-rt.jar"/>--> |
| <!--<include name="emc-dfs-tools.jar"/>--> |
| <!--<include name="emc-dfs-services.jar"/>--> |
| </fileset> |
And export to an ear file, the lib folder of the ear contains emc-dfs-rt.jar library but not the others. Where comes that from?
Regards