first of all, sorry for my english :(
i have a problem with my WCF Service on WP8. (I use VS12 and ISS 7.5)
i have 3 listbox, and 3 services with 1 sql each to a remote database, to source the listbox.
something like:
Service1Client proxy = new Service1Client();
proxy.FindEmployeeCompleted += new EventHandler<FindEmployeeCompletedEventArgs>(proxy_FindEmployeeCompleted);
proxy.FindEmployeeAsync(s);
proxy.FindEmployeeSCompleted += new EventHandler<FindEmployeeSCompletedEventArgs>(proxy_FindEmployeeSCompleted);
proxy.FindEmployeeSAsync(s);
proxy.FindEmployeeDCompleted += new EventHandler<FindEmployeeDCompletedEventArgs>(proxy_FindEmployeeDCompleted);
proxy.FindEmployeeDAsync(s);
void proxy_FindEmployeeCompleted(object sender, FindEmployeeCompletedEventArgs e)
{
listaRankingG.ItemsSource = e.Result;
}
void proxy_FindEmployeeSCompleted(object sender, FindEmployeeSCompletedEventArgs e)
{
listaRankingS.ItemsSource = e.Result;
}
void proxy_FindEmployeeDCompleted(object sender, FindEmployeeDCompletedEventArgs e)
{
listaRankingD.ItemsSource = e.Result;
}
the problem is that i dont get the same result every time i use this. Sometimes i get 3 itemsources, sometimes i get 2 and this exception:
- $exception {System.TimeoutException: The HTTP request to 'ht tp://miip :4825/MySer vice1/Servi ce1.svc' has exceeded the allotted timeout. The time allotted to this operation may have been a portion of a longer timeout. ---> System.Net.WebException: Exception of type 'System.Net.WebException' was thrown. ---> System.Net.WebException: Exception of type 'System.Net.WebException' was thrown.
at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
at System.Net.Browser.ClientHttpWebRequest.<>c_DisplayClasse.b_d(Object sendState)
at System.Net.Browser.AsyncHelper.<>c_DisplayClass1.b_0(Object sendState)
--- End of inner exception stack trace ---
at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
--- End of inner exception stack trace ---
at System.ServiceModel.AsyncResult.End[TAsyncResult](IAsyncResult result)
at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
at System.ServiceModel.ClientBase
1.ChannelBase1.EndInvoke(String methodName, Object[] args, IAsyncResult result) at TheSimpsonsTrivial.ServiceReference1.Service1Client.Service1ClientChannel.EndFindEmployee(IAsyncResult result) at TheSimpsonsTrivial.ServiceReference1.Service1Client.TheSimpsonsTrivial.ServiceReference1.IService1.EndFindEmployee(IAsyncResult result) at TheSimpsonsTrivial.ServiceReference1.Service1Client.OnEndFindEmployee(IAsyncResult result) at System.ServiceModel.ClientBase`1.OnAsyncCallCompleted(IAsyncResult result)} System.Exception {System.TimeoutException}
but i dont think this is possible, my service is just a small select in a small table with less than 100 regs
The same thing happens with another 3 services wich insert info in a remote database. They do insert the info but the service gets a timeout exception :(
any idea?thanks!