[jboss-jira] [JBoss JIRA] (WFLY-1280) Allow OSGi services to be registered as JAX-WS endpoints

Thomas Diesler (JIRA) jira-events at lists.jboss.org
Thu Apr 25 02:27:53 EDT 2013


Thomas Diesler created WFLY-1280:
------------------------------------

             Summary: Allow OSGi services to be registered as JAX-WS endpoints
                 Key: WFLY-1280
                 URL: https://issues.jboss.org/browse/WFLY-1280
             Project: WildFly
          Issue Type: Feature Request
          Components: OSGi, Web Services
            Reporter: Thomas Diesler
            Assignee: Thomas Diesler


It should be possible to register a WS endpoint similar to this

{code}
 public void start(BundleContext context) { 
      HelloService helloService = new HelloServiceImpl();
      Dictionary props = new Hashtable();
      props.put("service.exported.interfaces", "*");
      props.put("service.exported.configs", "org.apache.cxf.ws");
      props.put("org.apache.cxf.ws.address", "http://localhost:8090/soap");
      registration = context.registerService(HelloService.class.getName(), helloService, props);
}
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jboss-jira mailing list