@Test
public void testNamespacedWebParamsWrapped() throws Exception {
JaxWsServerFactoryBean sf = new JaxWsServerFactoryBean();
sf.setAddress("local://localhost/test");
sf.setServiceBean(new FooServiceImpl());
sf.getServiceFactory().setWrapped(true);
Server server = sf.create();
Document doc = getWSDLDocument(server);