Hi,
I have a problem setting or even reading ine of my WebServiceAdapter timeout
property.
I have several Secondary DataConnections some of them are queries and
another one is for submit.
I can read or set the Timeout prop for Queries WebServiceAdapter but not for
the one which is a submit.
Any clues ?
Thanks,
Dominique
jb - 10 Dec 2004 11:05 GMT
Works fine for me... I set all my tiemouts high for debugging; I use MS
script:
for (var i = 0; i < XDocument.DataAdapters.Count; i++)
{
var wsAdapter = XDocument.DataAdapters(i);
wsAdapter.Timeout = 600; // for debugging
}
> Hi,
>
[quoted text clipped - 7 lines]
> Thanks,
> Dominique