With ServerLimit 1, only one service instance is being loaded at startup.
This leads me to confirm the behavior of both axis2_http_server and
mod_axis. Do they serve each request from independently loaded Soap
service library, or they can share a loaded library among multiple requests?
Sam Carleton wrote:
Abdul Sami wrote:
Okay i have set 'ServerLimit 1', this solves it.
The idea is that as requests come in the master instance of Apache
will spawn more instances as the demand goes up. You are going to
experience some series performance issues if you do that in
production. If I am not mistaken, even with ServerLimit 1, there will
be two: one for the master, and the one that does the work...
There is a -X option to start apache for development/debugging things,
it will NOT spawn ANY more processes. I am assuming that is what you
are really after.
Sam