I’m not sure what’s going on here, but our code works fine on one windows box, but just hangs on the other… it happens on the factory.openDocument… anyone know of anything that could cause this? Any settings I need to look at? Any help will be much appreciated… I’m just not sure what else to look for? Thanks in advance!
/**
* Opens the ReportClientDocument for editing purposes.
* @param enterpriseSession
* @param infoObject
* @return
* @throws SDKException
* @throws ReportSDKException
* @throws IOException
*/
private ReportClientDocument openReportClientDocument(IEnterpriseSession enterpriseSession, IInfoObject infoObject)
throws SDKException, ReportSDKException, IOException
{
IReportAppFactory factory = (IReportAppFactory) enterpriseSession.getService("RASReportFactory");
ReportClientDocument rcd = factory.openDocument(infoObject, 0, java.util.Locale.US);
out("\nREPORT WITH DATA IS OPENED SUECESSFULLY\n");
return rcd;
}
mattlscc (BOB member since 2009-01-28)