08-27-2012 12:00 PM
08-27-2012 02:40 PM
09-28-2012 09:03 AM
String subUrl = "/process-instance/" + processInstanceId + "/diagram";
Reference reference = new Reference(Play.configuration.getProperty("activiti.rest.url") + subUrl);
Client client = new Client(Protocol.HTTP);
Request request = new Request(Method.GET, reference);
request.setChallengeResponse(new ChallengeResponse(ChallengeScheme.HTTP_BASIC, "kermit", "kermit"));
Response response = client.handle(request);
Logger.debug("type : " + response.getEntity().getMediaType().getName());
09-28-2012 09:05 AM
String subUrl = "/process-instance/" + processInstanceId + "/diagram";
Reference reference = new Reference(Play.configuration.getProperty("activiti.rest.url") + subUrl);
Client client = new Client(Protocol.HTTP);
Request request = new Request(Method.GET, reference);
request.setChallengeResponse(new ChallengeResponse(ChallengeScheme.HTTP_BASIC, "kermit", "kermit"));
Response response = client.handle(request);
Logger.debug("type : " + response.getEntity().getMediaType().getName());
09-28-2012 09:16 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.