You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Christian Schweer (JIRA)" <ji...@apache.org> on 2009/01/08 16:21:00 UTC

[jira] Issue Comment Edited: (AXIS2-4199) Axis client does not apply timeout from axis2 configuration

    [ https://issues.apache.org/jira/browse/AXIS2-4199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12661996#action_12661996 ] 

csch_vhv edited comment on AXIS2-4199 at 1/8/09 7:19 AM:
------------------------------------------------------------------

Sorry:

the service call that works as expected is
  serviceStub.setWaitTime(25000); 

Presummingly because 25000ms is smaller than the AbstractHTTPSender's 30000ms default timeout 

      was (Author: csch_vhv):
    Sorry:

the service call the works is
  serviceStub.setWaitTime(25000); 

Presummingly because 25000ms is smaller than the AbstractHTTPSender's 30000ms default timeout 
  
> Axis client does not apply timeout from axis2 configuration
> -----------------------------------------------------------
>
>                 Key: AXIS2-4199
>                 URL: https://issues.apache.org/jira/browse/AXIS2-4199
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4.1
>            Reporter: Christian Schweer
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Axis2 seems to ignore the connection and socket timeout settings in clients, when read from this axis2.xml configuration.
> This is part of my axis2.xml:
>     <transportSender name="http"
>                      class="org.apache.axis2.transport.http.CommonsHTTPTransportSender">
>         <parameter name="PROTOCOL">HTTP/1.0</parameter>
>         <parameter name="CONNECTION_TIMEOUT" locked="false">120000</parameter>
>         <parameter name="SO_TIMEOUT" locked="false">120000</parameter>        
>     </transportSender>
> I have written a Test-Service that does nothing but waiting the provided timeMillis. 
> Here is my test client code:
> 			ConfigurationContext cc = ConfigurationContextFactory
> 					.createConfigurationContextFromFileSystem("<path-to-axis2.xml>");
> 			WSTestService0815Stub serviceStub = new WSTestService0815Stub(cc, "http://localhost/services/WSTestService-0.8.1.5?wsdl");
> 			serviceStub.setWaitTime(45000);
> Expected result:
> the service call returns normally
> Actual result:
> "java.net.SocketTimeoutException: Read timed out" is generated
> With
>  			serviceStub.setWaitTime(45000);
> the expected result is received.
> It seems to me, that the connection timeout and socket timeout is read from the configuration in CommonsHTTPTransportSender, but it never propagated to HttpSender: In CommonsHTTPTransportSender.writeMessageWithCommons(...) the httpVersion and format ist set but the timeout variables are ignored. 
> IMHO they must be set in the messageContext's properties (or the Options of the messageContext), so that AbstractHttpSender.initializeTimeouts(..) receives the values.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.