You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@jakarta.apache.org by Misha Lyalin <mi...@intype.com> on 1999/08/13 08:46:06 UTC

in-process

It would be cool if the engine could be started in-process with in your own application, so that RMI and other optimizations are possible

--Misha

Re: in-process

Posted by Matthias Oelmann <mo...@ixl.com>.

we do that with apache jserv by just 
calling 

		String[] nix = { jservconfig };
		org.apache.jserv.JServ.main(nix);

but i agree, it would be really great to have a better
way to start (and configure) it.

matthias

Misha Lyalin wrote:
> 
> It would be cool if the engine could be started in-process with in your
> own application, so that RMI and other optimizations are possible
> 
> --Misha

Re: in-process

Posted by Steve Sargent <S....@qmw.ac.uk>.
Could you help please?

One of our users here is having problems receiving mail from your mailing
list. Could you check the name he is registered with, it should be:-

J.G.Holman@qmw.ac.uk

|--------------------------------------------------------------------------|
| Steve Sargent, Vox +44 171 775 3220, Fax +44 171 775 3221                |
| QMW Computing Services,  Mile End Road,  London E1 4NS, UK               |
| Email   : S.L.Sargent@qmw.ac.uk                                          |
| WWW page: http://www.qmw.ac.uk/~cgaa160/index.html                       |
|                                                      |                   |
|                                         PIPER       _|_                  |
|                                         PA28R  ____/___\____             |
|                                         ___________[=o=]___________      |
|                                         ARROW    e/  o  \e               |
|--------------------------------------------------------------------------|



Re: in-process

Posted by James Duncan Davidson <du...@x180.com>.
Misha Lyalin wrote:
> It would be cool if the engine could be started in-process with in your own application, so that RMI and other optimizations are possible
> 

If all you want is the standalone pure java httpd, then the process will
be something like:

Server server = new Server();
server.setPort(80);
server.setDocBase("/home/duncan/htdocs");
server.start();

Note that this is only for Tomcat standalone -- not for when it's
running within Apache. See the simple startup file in the /etc dir of
the WDK for a full example.

.duncan