I am consuming a 3rd-party web service which has been implemented in WCF.
My consumer code resides on an ASP.NET asynchronous page.
Problem is, sometimes the BeginCallWebService() method is returning null. Shouldn't it always return an IAsyncResult object?
Should I ask the web service developer to modify their code, or is null a legit response?
Begin...
should always returnIAsyncResult
as you'll need it to callEnd...
Currently his webservice implements async patterns (his bug), or your proxy provide it (your bug)?