>>>> How do I configure timeout on the server side? In my application, depending on the request, responds might take more than 20 minutes, sometimes hours to compute. Unless I can determine how long it takes before the connection timeout and renew the connection, the client may never get the responds from server. <<<<
Since Apache SOAP does not support keep-alive, you don't have to worry about the keep-alive timeout ;-). If you expect to connect, send a request, process 20 minutes or more or the server, then send the response from the server to the client, you have to set the server connection timeout. For IIS, this can be set through the ISM MC plug-in. The default is 900 seconds, which is only 15 minutes if my math is right. The J2EE container may also have some sort of timeout on processing a single request. Scott Nichol -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>