Hi,
I currently have a class that extends from [tt]System.Web.Services.Protocols.SoapHttpClientProtocol[/tt] where I set the Timeout property:
I would really like to adjust this property from the [tt]web.config[/tt] file. Does anyone know if that is possible? If it is, I would appreciate the correct syntax (all the way from the root <configuration>), because I've tried a gazillion possibilities here without luck.
Best regards,
Palooka
I currently have a class that extends from [tt]System.Web.Services.Protocols.SoapHttpClientProtocol[/tt] where I set the Timeout property:
Code:
public class foobar : System.Web.Services.Protocols.SoapHttpClientProtocol {
public foobar() {
this.Timeout = 10000;
}
...
}
I would really like to adjust this property from the [tt]web.config[/tt] file. Does anyone know if that is possible? If it is, I would appreciate the correct syntax (all the way from the root <configuration>), because I've tried a gazillion possibilities here without luck.
Best regards,
Palooka