Hi All, I am trying to enable axis client connections pool for my web service client. I have followed the steps as defined at http://wiki.apache.org/ws/FrontPage/Axis/AxisCommonsHTTP for achieving the connection pooling (client-config.wsdd, commons-httpclient-3.1.jar in class path etc). In code i am using following statement for setting the axis properties. ======================= AxisProperties.setProperty(DefaultCommonsHTTPClientProperties.MAXIMUM_TOTAL_CONNECTIONS_PROPERTY_KEY, maxTotalConnections); AxisProperties.setProperty(DefaultCommonsHTTPClientProperties.CONNECTION_POOL_TIMEOUT_KEY, connectionPoolTimeout); AxisProperties.setProperty(DefaultCommonsHTTPClientProperties.CONNECTION_DEFAULT_CONNECTION_TIMEOUT_KEY, connectionTimeout); AxisProperties.setProperty(DefaultCommonsHTTPClientProperties.CONNECTION_DEFAULT_SO_TIMEOUT_KEY, soTimeout); ================================ But all this settings are not resulting in any changes. My Web service client still use to block infinitely(and it soesnt block when i set time out for the stub) and changing other variables like connectionTimeout, connectionPoolTimeout is making no difference. Thanks and Regards Amit -- View this message in context: http://www.nabble.com/Needs-help-for-Axis-client-connections-pool-tp25803261p25803261.html Sent from the Axis - Dev mailing list archive at Nabble.com.
