http://www.ebmwebsourcing.net/blog/page/christophehamerling?entry=the_petals_v1_1_axis2

On 5/14/07, fernando da Motta hildebrand <[EMAIL PROTECTED]> wrote:
Hi,

I'm developing a server that has some SOAP interfaces. I'm trying to do it
all by programing it, as the tutorial goes:

public class EmbeddedAxis2Server {
    public static void main(String[] args) throws Exception {
        ConfigurationContext context = ConfigurationContextFactory.
        createConfigurationContextFromFileSystem(null,
null);
        AxisService service =
            AxisService.createService(Echo.class.getName(),
context.getAxisConfiguration(),
                     RPCMessageReceiver.class, "", "http://samples";);
        context.getAxisConfiguration ().addService(service);
        SimpleHTTPServer server = new SimpleHTTPServer(context, 80);
         server.start();
    }
}

But I fear SimpleHTTPServer can't handle it well (300 users perhaps?), so I
thought of using Jetty, but in all I could find up to now I would have to
embbed Jetty and deploy Axis2 in it (the .war file), and I wish there was
some other way to embbed those two and program their use ( as above
example).
Any help is much appreciated.

Tx.

--
Fernando da Motta Hildebrand
Desenvolvedor
 Brooks' Law : "adding manpower to a late software project makes it
later..."


--
Davanum Srinivas :: http://davanum.wordpress.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to