Guest User

Untitled

a guest
Apr 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import javax.xml.ws.Endpoint;
  2. @Override
  3. protected void run() throws Exception {
  4. logger.info("Starting Server");
  5. basicHttpBinding_ITestServiceImpl = new BasicHttpBinding_ITestServiceImpl();
  6. logger.debug("BasicHttpBinding_ITestServiceImpl is created");
  7. ep = Endpoint.create(basicHttpBinding_ITestServiceImpl);
  8. logger.debug("Endpoint created");
  9. ep.publish(this.address);
  10.  
  11. logger.info("Server ready...");
  12. }
Add Comment
Please, Sign In to add comment