catch (Exception e)
{
throw new ConfigurationException("Caught Exception", e);
}
stdout_pool = new ThreadPool( (org.jacorb.config.Configuration)myConfiguration, null,
new OutputForwarderFactory( new InputStreamSelector(){
public InputStream getInputStream( Process p )
{
return p.getInputStream();
}
}), //max threads
100, 10 );//max idle threads
stderr_pool = new ThreadPool( (org.jacorb.config.Configuration)myConfiguration, null,
new OutputForwarderFactory( new InputStreamSelector(){
public InputStream getInputStream( Process p )
{
return p.getErrorStream();
}