* @param out the output archive
*/
private void writeWLWebServicesDescriptors(BundleDescriptor desc, WritableArchive out)
throws IOException {
if (desc.hasWebServices()) {
DeploymentDescriptorFile webServicesDD = new WLWebServicesDeploymentDescriptorFile(desc.getWebServices());
OutputStream os = out.putNextEntry(webServicesDD.getDeploymentDescriptorPath());
webServicesDD.write(desc.getWebServices(), os);
out.closeEntry();
}
}