Multiple Concurrent calls to a Web Service

D

David Hyde

Hi,

I'm developing on .NET 2.0 CF and I'm trying to make concurrent asynchronous
calls to a web service. The calls may take a long time to process (> 1
minute), but that's not a problem. What I'm running up against though, is
the limit of two concurrent calls at a time. If I was developing on a
desktop it looks like I could edit the machine.config file or use
System.Net.Configuration.ConnectionManagementElement.MaxConnection to
increase the number of concurrent connections that I can make.

Anyone know how I can do the same with CF?

Thanks very much

David
 
D

David Hyde

Finally got it! The answer was
System.Net.ServicePointManager.DefaultConnectionLimit
 

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