URL wsdlUrl = ClientMetadataTest.getWsdlURL(multiPortWsdl);
DescriptionBuilderComposite serviceDBC = new DescriptionBuilderComposite();
Map<String, List<Annotation>> map = new HashMap();
ArrayList<Annotation> wsFeatures = new ArrayList<Annotation>();
AddressingAnnot addressingFeature = new AddressingAnnot();
addressingFeature.setEnabled(true);
addressingFeature.setRequired(true);
addressingFeature.setResponses(Responses.NON_ANONYMOUS);
wsFeatures.add(addressingFeature);
map.put(ClientMetadataAddressingPortSEI.class.getName(), wsFeatures);
serviceDBC.getProperties().put(MDQConstants.SEI_FEATURES_MAP, map);
ServiceDelegate.setServiceMetadata(serviceDBC);
Service service = Service.create(wsdlUrl, serviceQName);