Advanced Forum Search Results
-
Your webservice is likely hosted using WCF framework while your client application is using Silverlight, these are two totally different thing. You will need to setup the crossdomainpolicy file always, even when the website is hosted on your local machine where the client app is developed.
-
On Client side, if you set a break point on this line:
MarkerImage.ItemsSource = e.Result;
What do you see in object e? You should double check to make sure:
1. the server side is indees returning the data you want in the format you are expecting
2. the client code is using ...
-
Could you provide the metadata files so we can do a repro from our side on this? Also, can you import the same metadata using ASR from WCF instead of Silverlight successfully?
-
In general you should always add the WCF service reference to the silverlight project where you will be calling it from. Is there any specific reason you cannot do this here?
-
Currently in SL2 PollingDuplex channel only supports Message type, so what you want to do is not supported yet. We are considering expanding our support in Silverlight PollingDuplex channel to make it more in sync with the WCF Duplex channel behavior for future releases.
-
Sorry for the late response. The original cause we thought turns out to be inaccurate (I have crossed out my initial diagnosis above already). This issue has been fixed already, but I was not able to get additional info on how to not generate that mixed combo in your proxy file...
Sorry.
-
Sorry for the late reply. I can confirm this is a bug in our code, and it is already fixed for the RTM release. Thank you very much for providing us with your repro.
-
Please provide code sample on the config file that works for localhost scenario only, and the one that works for remote scenario.
-
Looks like you have setup the crossdomain policy file for the test project inside VS, but not for the real web service. You will need to host that in the root of the vdir hosting the service endpoitns your silverlight application is trying to hit.
-
Do you have a simple project I can use to repro the issue?