Hello!
I have a service deployed on Axis2 1.3-RC2 and Tomcat 5.5.23.
I start with default configurations for both Tomcat and Axis2 and I want to change configuration for the http connection to my service to avoid exception at heavy load.
The Tomcats server.xml file includes:
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<Connector
port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
maxKeepAliveRequests="1" />
where I have added maxKeepAliveRequests="1" and it really improved my service.
The axis2.xml includes:
<!-- ================================================= -->
<!-- Transport Ins -->
<!-- ================================================= -->
<transportReceiver name="http"
class="org.apache.axis2.transport.http.SimpleHTTPServer">
<parameter name="port">8080</parameter>
.
.
</transportReceiver>
but I dont se any affection on my system when I change any parameter for the transportReceiver. (requestCoreThreadPoolSize, ...)
So do anyone knows how it works? Isn't the transportReciver used at all in this case?
Please, help!
/Pär
FREE pop-up blocking with the new MSN Toolbar MSN Toolbar Get it now! --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
