Hi,
I am getting below exception when trying to transform MS word document to PDF format.
java.lang.AbstractMethodError: com.documentum.services.cts.impl.transform.CTSTransformService.transformJob(Lcom/documentum/services/cts/df/realtime/IRealTimeRequest;Lcom/documentum/fc/client/IDfSession;)[Lcom/documentum/services/cts/df/realtime/IRealTimeResponse;
at com.emc.documentum.fs.services.transformation.impl.TransformationService.executeRealTimeRequest(TransformationService.java:507)
at com.emc.documentum.fs.services.transformation.impl.TransformationService.transformJob(TransformationService.java:380)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.emc.documentum.fs.rt.context.impl.ReflectionServiceInvoker.invoke(ReflectionServiceInvoker.java:40)
at com.emc.documentum.fs.rt.impl.tx.TxInvocationHandler.invoke(TxInvocationHandler.java:29)
at com.emc.documentum.fs.rt.context.impl.SoapServiceInvocationHandler.invoke(SoapServiceInvocationHandler.java:50)
at com.emc.documentum.fs.rt.context.impl.ContextCacheCleanupHandler.invoke(ContextCacheCleanupHandler.java:28)
at com.emc.documentum.fs.rt.context.impl.ServiceContextCleanupHandler.invoke(ServiceContextCleanupHandler.java:31)
at com.emc.documentum.fs.rt.context.impl.HandlerChainExceptionInvocationHandler.invoke(HandlerChainExceptionInvocationHandler.java:35)
at com.emc.documentum.fs.rt.context.impl.UcfServiceInvocationHandler.invoke(UcfServiceInvocationHandler.java:53)
at com.emc.documentum.fs.rt.context.impl.OperationOptionsHandler.invoke(OperationOptionsHandler.java:74)
at com.emc.documentum.fs.rt.context.impl.FileRegistryCleanupHandler.invoke(FileRegistryCleanupHandler.java:24)
at com.sun.proxy.$Proxy99.transformJob(Unknown Source)
at com.emc.documentum.fs.services.transformation.TransformationServiceWebService.transformJob(TransformationServiceWebService.java:362)
... 38 more
Here is my client from SOAP UI :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tran="http://transformation.services.fs.documentum.emc.com" xmlns:core="http://core.datamodel.fs.documentum.emc.com/" xmlns:prop="http://properties.core.datamodel.fs.documentum.emc.com/" xmlns:con="http://content.core.datamodel.fs.documentum.emc.com/">
<soapenv:Header>
<ServiceContext xmlns="http://context.core.datamodel.fs.documentum.emc.com/" xmlns:ns2="http://properties.core.datamodel.fs.documentum.emc.com/" xmlns:ns3="http://profiles.core.datamodel.fs.documentum.emc.com/">
<Identities password="password" repositoryName="repo" userName="username" xsi:type="RepositoryIdentity" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</ServiceContext>
</soapenv:Header>
<soapenv:Body>
<tran:transformJob>
<!--Optional:-->
<jobTicket sourceObjectId="090186b6805b7da0" sourceFormat="msw8"
sourcePageModifier="" targetFormat="pdf" targetPageModifier="" renditionName=""
renditionDescription="" relatedObjectId="" priority="1" isNotifyResult="false"
doCheckoutCheckin="false" updateRenditionStatus="false" defaultProxy="false"
deleteOnCompletion="false" isZipOutput="false" notifyUser="false"
isStoreResultInRepo="false" sourceObjectType="" folderName=""
isSourceZipped="false" isVersionUp="false" versionUpName="false"
versionUpVersionLabels="false" versionUpCheckinVersion="2"
isClearCacheOnExit="false" isUseCachedResource="false"
isServerCacheResource="false">
<!--Optional:-->
<Profile transcodeLabel="Convert to PDF" transcodeName="document_to_pdf" folder="/System/Media Server/Profiles" versionLabels="1.0,CURRENT" taskImpl="com.documentum.cts.impl.services.task.CTSTask" description="Convert document to PDF document" notifyResult="false" relatedObjectsOnly="false" label="Convert to PDF" name="document_to_pdf">
<ProfileId repositoryName="repo" valueType="OBJECT_ID">
<core:ObjectId id="080186b6800a74a9"/>
</ProfileId>
</Profile>
</jobTicket>
</tran:transformJob>
</soapenv:Body>
</soapenv:Envelope>