Users sometimes get a strange exception when working with the application. I could never reproduce it. This occurs when a single domain service request is made. This query is executed quite often (each time the user saves the changes).
There are no parameters in the request. Simple filtering: Context.GetEventsQuery (). Where (lce => lce.Id> maxId)
The domain service method is simple: open IQueryable GetEvents () {return ObjectContext.Events; }
After this happens for the first time, it continues to happen every time (until the user refreshes the web page).
Here is the text of the log exclusion: Download failed for the GetEvents request. System.ServiceModel.DomainServices.Client.DomainOperationException: The load operation failed for the GetEvents request. ---> System.Exception ---> System.Exception: [Arg_COMException] Arguments: Debugging resource strings is not available. Often, the key and arguments provide enough information to diagnose the problem. See http://go.microsoft.com/fwlink/?linkid=106663&Version=4.0.50917.0&File=mscorlib.dll&Key=Arg_COMException in System.Net.Browser.BrowserHttpWebRequest.InternalEndGetResponse (IAsyncResult asyncResult). BrowserHttpWebRequest. <> c__DisplayClass5.b__4 (Object sendState) in System.Net.Browser.AsyncHelper. <> c__DisplayClass2.b__0 (Object sendState) --- The end of the internal check of the exception stack --- in System.ServiceModel.DomainServices.Client.WebDomainClient`1.EndQueryCore (IAsyncResult asyncResult) in System.ServiceModel.DomainServices.Clientndomu (IAsyncResult asyncResult) in System.ServiceModel.DomainServices.Client.DomainContext.CompleteLoad (IAsyncResult asyncResult) --- End of internal exception stack check --- in System.ServiceModel.DomainServices.Client.OperationBase.Complete () error. ServiceModel.DomainServices.Client.LoadOperation.Complete (exception error) in System.ServiceModel.DomainServices.Client.DomainContext.CompleteLoad (IAsyncResult asyncResult) in System.ServiceModel.DomainServices.Client.DomainContext. <> c__DisplayClass1b.b__17 (Object)
What could be the reason?
exception service silverlight ria
Pavel tupitsyn
source share