@Override
protected JndiRegistry createRegistry() throws Exception {
JndiRegistry jndi = super.createRegistry();
HttpEndpoint ep = new HttpEndpoint();
jndi.bind("default", new DefaultHttpBinding(ep));
jndi.bind("myownbinder", new MyHttpBinding(ep));
return jndi;
}