what is the reason of this exception: oracle.stellent.ridc.protocol.http.HttpProtocolException: HTTP
I try to to integrate a java web application with UCM. If I want to add or delete a document from ucm interface, I can do it.
The problem is, when I try to add or delete a document from java I got this error:
oracle.stellent.ridc.protocol.http.HttpProtocolException: HTTP/1.1 302 Moved Temporarily
My java code is:
IdcClient client = getClient();
IdcContext userContext = getContext();
DataBinder dataBinder = client.createBinder();
dataBinder.putLocal("IdcService", "DELETE_DOC");
dataBinder.putLocal("dID", "1");
dataBinder.putLocal("dDocName", "ORAWL16200000001");
dataBinder.putLocal("dDocTitle", "deneme1");
ServiceResponse response = client.sendRequest(userContext,dataBinder);// I GOT THE ERROR FROM THIS LINE
String serverBinder = response.getResponseAsString();