I\'ve create a regular old ASMX web service in ASP.NET and added SoapDocumentMethod(OneWay = true)] to the function call as I\'ve read this is supposed to make the call Asyn
You still have to make the call using the Async method. You should make the call to service.UpdateAccountsAsync() in this case.
service.UpdateAccountsAsync()