return id[0];
}
public static Webservices readWebservices(URL url) throws OpenEJBException {
Webservices webservices;
try {
webservices = (Webservices) JaxbJavaee.unmarshalJavaee(Webservices.class, IO.read(url));
} catch (SAXException e) {
throw new OpenEJBException("Cannot parse the webservices.xml file: " + url.toExternalForm(), e);
} catch (JAXBException e) {