0

Possible Duplicate:
How to make a call to my WCF service asynchronous?

Here is how I am doing it

Dim wcfService = New EmailBlastService.EmailBlastServiceClient
wcfService.WCFSubCallAsync()

But when I actually do the call it seems to tie up the server for about a minute (even though I know the async process takes longer than that and is still processing the request). Even if I try to hit the page in a different browser it still takes a minute to load.

Basically I just want to make the WCF call and forget about it, I don't want users to be waiting while I am doing some heavy processing and calling an external

Community
  • 1
  • 1
user372234
  • 65
  • 1
  • 7

1 Answers1

2

This can help you -

How to make a call to my WCF service asynchronous?

Community
  • 1
  • 1
Unmesh Kondolikar
  • 9,256
  • 4
  • 38
  • 51