Errors while retrieving work items using the RTC Java API
We are using the RTC Java API (in command line tools) to retrieve information about work items, occasionally we get errors like this:
SEVERE: Exception while creating URL processattachment:/workitemtype/bug.gif
com.ibm.team.repository.common.TeamRepositoryException: Could not stream image
at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77)
at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50)
at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46)
at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695)
at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740)
at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159)
at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326)
at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109)
at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99)
at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107)
at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73)
at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65)
at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70)
at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241)
at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418)
at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430)
at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520)
at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510)
at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232)
at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:767)
The code still works but the errors are a bit of an annoyance. Is there anything we can do to suppress them? Or anything we can fix to ensure that we don't get them?
Zoe
3 answers
What version are you using? I think under 4.0.5 we were getting serveral messages like this is the ccm.log on the server, and when IBM Support analysed the logs, they told us it was a bug. Are you getting any messages in the server ccm.log?
Ours looked like this
2014-03-03 13:39:33,093 [http-bio-9443-exec-258 @@ 13:39 slong /ccm/service/com.ibm.team.rtc.common.internal.service.web.sprite.ISpriteImageService/js/bundle] ERROR com.ibm.team.rtc.common.service - Problems serving sprite image service request
com.ibm.team.repository.common.TeamRepositoryException: Unknown bundle id: bundleentry/487
at com.ibm.team.rtc.common.internal.service.web.sprite.SpriteImageService.buildFromWebBundle(SpriteImageService.java:288)
at com.ibm.team.rtc.common.internal.service.web.sprite.SpriteImageService.serveBundleRequest(SpriteImageService.java:117)
at com.ibm.team.rtc.common.internal.service.web.sprite.SpriteImageService.perform_GET(SpriteImageService.java:93)
at com.ibm.team.repository.service.TeamRawService.service(TeamRawService.java:84)
at sun.reflect.GeneratedMethodAccessor748.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:611)
at org.eclipse.soda.sat.core.internal.record.ExportProxyServiceRecord.invoke(ExportProxyServiceRecord.java:361)
at org.eclipse.soda.sat.core.internal.record.ExportProxyServiceRecord.access$0(ExportProxyServiceRecord.java:347)
IBM Support told us that this error is mostly harmless and was identified under APAR PI12442 https://jazz.net/jazz/resource/itemName/com.ibm.team.workitem.WorkItem/295103
Comments
Hi Stephen - I don't have access to the server log, so can't answer your question. We are using the 4.0.3 client and 4.0.6 server. Also, a colleague reminded me that we had seen these errors before and tracked them down to something like a file or directory being created/updated - presumably as a cache for *.gif files.
As Sam suggests, you should wrap you code with throw/catch statements, that you can analyze and dismiss the errors you think are harmless.
I am very aggressive on my try/catch usage. I start out catching EVERY error, then throw anything I think the upper methods should know about.
I'm sorry - I should have posted the code. Let me be absolutely clear - the code that generates these messages IS wrapped in a try/catch. My only explanation is that something downstream of findWorkFlowInfo() is catching them before I see them.
OK, so it is caught in the server code and reported to the logs then. That is unfortunate. Not sure what the reason is. If it is a bug, nothing much we can do.
my assumption is this is your code
at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:767)
the source at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent
says
} catch (IOException e) {
tempFile.delete();
throw new TeamRepositoryException("Could not stream image", e); //$NON-NLS-1$
}
and top of stack is
public IWorkflowInfo findWorkflowInfo(IWorkItem workItem, IProgressMonitor monitor) throws TeamRepositoryException {
return fWorkflowManager.getWorkflowInfo(workItem, monitor);
}
none of the RTC code would say SEVERE
SEVERE: Exception while creating URL processattachment:/workitemtype/bug.gif
com.ibm.team.repository.common.TeamRepositoryException: Could not stream image
Comments
Thanks Sam - yes, you are correct, com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:767) is our code.
It used to to throw TeamRepositoryException which was/should(?) have been caught higher up. However, I have just implemented this:
try{
workflowInfo = workItemClient.findWorkflowInfo(workItem, null);
} catch (TeamRepositoryException e) {
if(e.getMessage().equals("Could not stream image")) {
System.out.println("Caught and ignoring stream image error");
} else {
throw new TeamRepositoryException(e.getMessage(), e);
}
}
Which I think was what you were originally suggesting? It will at any rate be clearer what its doing.
yep, u got it!
Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_DwR00OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69)
The directory /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_DwR00OXSEeOB9usgJGCDSA.tmp does exist on the system but is owned by a different user (me, in fact) from the one running the failing job.
/tmp> ls -ld com*
drwxr-xr-x 2 zslatter zslatter 12288 May 23 16:15 com.ibm.team.workitem.client.remoteImages
The work around that seems to fix the issue is to reassign the system temp dir to System.getProperty("java.io.tmpdir") + random string. If we do this the RTC code writes to a separate directory in /tmp for each user - in fact for each request. This isn't great but it does prevent the failure. If you can think of a better solution please let me know. Complete stack trace below.
INFO: Found 2 work items May 27, 2014 9:06:50 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/bug.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_DwR00OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/bug.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D0ltEOXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/task.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D07rUOXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/issue.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D1WiEOXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/businessneed.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D1oO4OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/risk.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D2E60OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/riskaction.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D2i04OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/milestone.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D26oUOXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Exception while creating URL processattachment:/workitemtype/projectchangerequest.gif com.ibm.team.repository.common.TeamRepositoryException: Could not stream image at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:77) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:50) at com.ibm.team.workitem.client.internal.util.RemoteImages.resolveImageContent(RemoteImages.java:46) at com.ibm.team.workitem.client.internal.WorkItemClient.resolveURL(WorkItemClient.java:695) at com.ibm.team.workitem.common.internal.util.Utils.resolveURL(Utils.java:740) at com.ibm.team.workitem.common.internal.util.Utils.createResourceURL(Utils.java:724) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.createResourceURL(ConfigurationItemManager.java:159) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:326) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readElement(WorkItemTypeManager.java:1) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItem(ConfigurationItemManager.java:151) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:144) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.readConfigurationItems(ConfigurationItemManager.java:109) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.readConfigurationItems(WorkItemTypeManager.java:370) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.updateCache(ConfigurationItemManager.java:99) at com.ibm.team.workitem.common.internal.util.CacheHelper.internalCheckCache(CacheHelper.java:107) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:73) at com.ibm.team.workitem.common.internal.util.CacheHelper.checkCache(CacheHelper.java:65) at com.ibm.team.workitem.common.internal.ConfigurationItemManager.findConfigurationItem(ConfigurationItemManager.java:70) at com.ibm.team.workitem.common.internal.WorkItemTypeManager.findConfigurationItem(WorkItemTypeManager.java:241) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkItemType(WorkItemCommon.java:418) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowId(WorkflowManager.java:430) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getBoundWorkflowInfo(WorkflowManager.java:520) at com.ibm.team.workitem.common.internal.workflow.WorkflowManager.getWorkflowInfo(WorkflowManager.java:510) at com.ibm.team.workitem.common.internal.WorkItemCommon.findWorkflowInfo(WorkItemCommon.java:1232) at com.ibm.stg.svc.rtc.utils.RtcWorkItem.isClosed(RtcWorkItem.java:769) at com.ibm.stg.svc.rtc.utils.BuildUtilities.getResolvedWorkItems(BuildUtilities.java:452) at com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild.integrateWorkItems(CombinedCmvcBuild.java:1130) at com.ibm.stg.svc.rtc.tools.RtcPostJenkinsBuildIntegrateCmvcDefects.doMain(RtcPostJenkinsBuildIntegrateCmvcDefects.java:205) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.doMain(RtcJavaCommandLineTools.java:162) at com.ibm.stg.svc.rtc.tools.RtcJavaCommandLineTools.main(RtcJavaCommandLineTools.java:43) Caused by: java.io.FileNotFoundException: /tmp/com.ibm.team.workitem.client.remoteImages/remoteImage_D3JR0OXSEeOB9usgJGCDSA.tmp (Permission denied) at java.io.FileOutputStream.<init>(FileOutputStream.java:214) at java.io.FileOutputStream.<init>(FileOutputStream.java:167) at com.ibm.team.workitem.client.internal.util.RemoteImages.doResolveImageContent(RemoteImages.java:69) ... 29 more May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:51 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/new.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_unresolv.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_impl.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_rejected.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/works.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/wontdo.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/unresolve.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/works.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_closed.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_unresolv.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_impl.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_rejected.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:52 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/duplicate.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/resolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/unresolve.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/duplicate.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/wontdo.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/works.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_committed.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_proposed.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_open.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planstate_deferred.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/works.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_unresolv.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_impl.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: platform:/plugin/com.ibm.team.workitem.service/icons/obj16/planresolution_rejected.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/new.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/mitigated.gif Could not stream image May 27, 2014 9:06:53 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/mitigated.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reopen.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/verify.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/new.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/inprogress.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/defer.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/transfer.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/close.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/open.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/accepted.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.team.foundation.common.util.FoundationLog unexpectedError SEVERE: Error while retrieving image: processattachment:/workflow/reject.gif Could not stream image May 27, 2014 9:06:54 PM com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild integrateWorkItems INFO: Found 2 resolved work items May 27, 2014 9:06:54 PM com.ibm.stg.svc.rtc.utils.CombinedCmvcBuild integrateWorkItems
Comments
sam detweiler
May 26 '14, 9:42 a.m.you could add a try/catch block in your java code to capture the exceptions.
1 vote
Zoe Slattery
May 26 '14, 10:05 a.m.Thanks Sam - the code is wrapped in a try/catch block for TeamRepositoryException - so i looks to me as though it should catch the exception and stop. So, something odd there.
sam detweiler
May 27 '14, 7:56 a.m.I would make the catch less specific and see what you get...