Tomcat 轴 Web 服务客户端读取超时。超时配置

Bor*_*nov 5 java client axis tomcat web-services

我在访问远程 Web 服务的 Tomcat Web 应用程序中有一个套接字读取超时。超时正好是 10 分钟。我很难找到对此负责的配置。这是某种默认吗?

编辑:我使用 Apache Axis 1.4

fgl*_*lez 5

它来自 org.apache.axis.Constants 中的 DEFAULT_MESSAGE_TIMEOUT

/**
 * The default timeout for messages.
 *
 * @since Axis1.2
 */
public static final int DEFAULT_MESSAGE_TIMEOUT=60*1000*10;
Run Code Online (Sandbox Code Playgroud)

在 org.apache.axis.MessageContext 中使用

/**
 * Maximum amount of time to wait on a request, in milliseconds.
 */
private int          timeout = Constants.DEFAULT_MESSAGE_TIMEOUT;
Run Code Online (Sandbox Code Playgroud)

所以这似乎是一种默认。