Hi,
In a step to promote a document in a lifecycle through D2 apis, i'm trying to add few attributes, i'm calling createProperties as below:
CreatePropertiesResponse createPropertiesResponse = service.getModelPortSoap11().createProperties(createPropertiesRequest);
result=createPropertiesResponse.getResult();
Below is the log trace:
[com.sun.xml.ws.api.pipe.TubelineAssemblerFactory] (http--0.0.0.0-9080-1) class com.emc.documentum.fs.rt.impl.pipe.DfsTubelineAssemblerFactory successfully created com.emc.documentum.fs.rt.impl.pipe.DfsTubelineAssembler@399e18ad
07:24:29,652 FINE [com.sun.xml.ws.api.pipe.Fiber] (http--0.0.0.0-9080-1) engine-JAX-WS RI 2.1.4-b01-: Stub for http://someurl:8080/D2/wsfiber-4 created
07:24:29,668 FINE [com.sun.xml.ws.api.pipe.Fiber] (http--0.0.0.0-9080-1) engine-JAX-WS RI 2.1.4-b01-: Stub for http://someurl:8080/D2/wsfiber-4 running by http--0.0.0.0-9080-1
07:24:30,385 FINE [com.sun.xml.ws.api.pipe.Fiber] (http--0.0.0.0-9080-1) engine-JAX-WS RI 2.1.4-b01-: Stub for http://someurl:8080/D2/wsfiber-4 completed
07:24:30,479 INFO [stdout] (http--0.0.0.0-9080-1) xception while creating attributes Exception Service
07:24:30,479 INFO [stdout] (http--0.0.0.0-9080-1) Exception occured: Exception Service
07:24:30,479 INFO [stdout] (http--0.0.0.0-9080-1) 07:24:30.479 [http--0.0.0.0-9080-1] INFO 165 - Exception occured: Exception Service
Any help?? I was earlier getting few more lines of trying to fetch properties file like below:
Trying to locate com/sun/xml/ws/fault/jaxb.properties
I unpacked the jaxws-rt.jar and couldn't find the properties file. Can that be an issue? If so, from where can i put the properties file.
Also, same code piece is working from my eclipse as a stanalone public static boid main code. The above issue comes when i deploy it on CS as custom jar under serverapp.ear deployment folder...
_Vivek