Error details: java.net.SocketTimeoutException for IProcessService API call
Hi Team,
I am getting following error : CRJAZ0099E An HTTP error occurred when this URL was being accessed: /ccm/service/com.ibm.team.process.internal.common.service.IProcessService. Error details: java.net.SocketTimeoutException.
As i am tryinh to export process template using RTC API call, My belive is that because of using IProcessInternalClientService API to export ProcessTemplate, facing below error.
Please let me know is there any alternative API call to export the process template.
IContent content =
((IProcessInternalClientService) this.teamRepo.getClientLibrary(IProcessInternalClientService.class))
.createProcessDefinitionExportZip(definition.getItemId().getUuidValue(), new SubProgressMonitor(
subProgressMonitor, 200));
I am getting following error : CRJAZ0099E An HTTP error occurred when this URL was being accessed: /ccm/service/com.ibm.team.process.internal.common.service.IProcessService. Error details: java.net.SocketTimeoutException.
As i am tryinh to export process template using RTC API call, My belive is that because of using IProcessInternalClientService API to export ProcessTemplate, facing below error.
Please let me know is there any alternative API call to export the process template.
IContent content =
((IProcessInternalClientService) this.teamRepo.getClientLibrary(IProcessInternalClientService.class))
.createProcessDefinitionExportZip(definition.getItemId().getUuidValue(), new SubProgressMonitor(
subProgressMonitor, 200));
Accepted answer
A socket timeout means that an operation on the connection did not proceed for a period that is longer than the timeout that is specified. Usually there is additional information about the operation that failed.
This can be caused by bad CPU, Server, Network performance or many many other reasons. I am not aware of another call like the one above.