*/
private RepositoryEntry getRepositoryEntry(InputStream wEntryStream, String repositoryName)
throws FileNotFoundException, JiBXException, RepositoryConfigurationException
{
IBindingFactory factory = BindingDirectory.getFactory(RepositoryServiceConfiguration.class);
IUnmarshallingContext uctx = factory.createUnmarshallingContext();
RepositoryServiceConfiguration conf = (RepositoryServiceConfiguration) uctx.unmarshalDocument(wEntryStream, null);
RepositoryEntry rEntry = conf.getRepositoryConfiguration(repositoryName);
return rEntry;
}