The Artima Developer Community
Sponsored Link

Web Services Forum
Embedded Jetty6 with Axis2

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
eisaak eisaak

Posts: 1
Nickname: eisaak
Registered: Feb, 2007

Embedded Jetty6 with Axis2 Posted: Feb 13, 2007 3:57 AM
Reply to this message Reply
Advertisement
I used the following old code with Jetty5 and Axis1.
What is the new code to use with Jetty6 (addWebApplication is deprecated in Jetty6) ?

The old code:

Server jettyWebServer = new Server();
SocketListener localListener = new SocketListener();
localListener.setPort(8080);
localListener.setMinThreads(10);
localListener.setMaxThreads(100);
jettyWebServer.addListener(localListener);
String warPath = "../../3rdParty/Axis-1.3/webapps/axis";
File f = new File(warPath);
jettyWebServer.addWebApplication( "/axis", f.getCanonicalPath() );
jettyWebServer.start();

Topic: Axis: problem returning object with arrays Previous Topic   Next Topic Topic: gSoap keepalive

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use