Advanced Forum Search Results
-
Okay, it's a bit hard to explain, but i'll give it a try.
I'm trying to create a master detail scenario in silverlight. The master part, the screen with a datagrid, works fine, it's the detail part that doesn't work. Both master and detail screens use the same webservice, MasterDetail.svc. This returns a Response object. This ...
-
I'm still struggling with this issue...
I tried putting base.EndInvoke("MethodName", _args, result) in my quicklaunch window (the line where this error occurs). When I inspect the base object in the quicklaunch window, it shows me: {System.InvalidOperationException: End has already been called on this asynchronous result ...
-
Sachin,
Already tried that...
-
Well, I still haven't solved my issue either.
Is there a way to check if the response from my webservice gets serialized properly?
-
The return type of my webmethod is a complex type.
-
@SteveWong:
I don't have a clientaccesspolicy file, this is my clientconfig:
<configuration>
<system.serviceModel>
<client>
<endpoint address="http://localhost:58139/MasterDetail.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_MasterDetail" ...
-
Still no luck, the 2nd time my webservice gets called, it still fails. It's no cross-domain call, and it's no port problem, because in that case the first call would have failed as well. I've modified the ClientConfig like you suggested, but still the same problem :(
-
I'm trying to access a webservice in my silverlight project. The webservice works fine, calling the webservice with different parameters gives me exactly the result I want, but with this set of parameters, I get a "ProtocolException was unhandled by user code" "The remote server returned an unexpected response (404) Not ...