Hi All; Myself and jaliya were talking about trying to do lot of async requests using Axis2 client .. it falis at about 40-50 requests and we belive that is becouse ..simple HTTP server can't handle the load.
I was looking at the jetty and found out that Jetty6 allow you to embed it to the application tightly. For an example Server server = new Server(8080); Context root = new Context(server,"/",Context.SESSIONS); root.addServlet(new ServletHolder(new HelloServlet(serviceMap)), "/*"); server.start(); Will create a new server and add a servlet. I belive if we embdeded Jetty to Axis2 1) Axis2 can use jetty as the listener for async messages 2) Axis2 can started up standalone using jetty I belive I could port our Axis2 servlet to jetty pretty easily. If people agree I think we should have it as a module and if it is sucessful I think we should switch to it as our default container some day thoughts? Srinath -- ============================ Srinath Perera: http://www.cs.indiana.edu/~hperera/ http://www.bloglines.com/blog/hemapani --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
