WebServiceAdapter Timeout

D

Dde

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
 
J

jb

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
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top