Advanced Forum Search Results
-
I have this exact same problem. In my case it is due to IE7 caching. Whenever I see it happen I go Tools -> Internet Options and under Browsing History hit Delete and then Delete Files. I believe this causes it to redownload the dll.
-
So, update. It seems here that my issue is cross domain related. I deployed the SL project to the same machine as the web service and it works. So the only knowledge I can offer is one of the reasons for this exception is cross domain restrictions....
-
Nice Job :) I haven't played since it was new. I will have some fun playing it
-
I have an asmx web service that I am trying to access in Silverlight 2.0. I am receiving an Exception in Reference.cs on the bold line
public SilverlightDataTest.DataService.getFacilitiesByUserIdResponse EndgetFacilitiesByUserId(System.IAsyncResult result) ...
-
If you have to have something today then you should probably write a proxy web service that lives on your web server which is just an identical pass through of the web service you are calling. Don't add any logic to this web service just take in the exact same parameters and return the exact same data. That way when the new ...
-
That was a good thought and I thought you may be onto something but I am able to download both assemblies. I have placed all my files in the same project and everything works like that but I would still like to discover why the above scenario does not work.
-
I'd like to add this as well.
http://silverlight.net/forums/t/7926.aspx
I am seeing very similar behavior. Create a very simple project and reference another project. In the other project all I do is return a solidcolorbrush and change the color of the canvas. Under http: this works but under https it just renders the ...
-
I am having issues getting a very simple silverlight scenario working with SSL.
I create an empty silverlight project with nothing but the parentCanvas of Page.xaml set to the color Blue. The color is definied in the page.xaml not in the code behind. I then add a silverlight class library to the project and add one method to ...
-
Thank you for the reply but I believe I have discovered the issue. We are using a load balancer on the server we are testing on. Traffic is SSL encrypted to the load balancer and unencrypted from the load balancer to each individual machine. This is apparently restricted and it seems this is the issue that is causing our ...
-
My main class definied in Page.xaml.cs inherits from Canvas.
I create instances of 2 classes that exist from one of the "not loading" dlls as global variables in my main class. At that point it throws an AG_E_UNKNOWN_ERROR. If I remove the global variables then all it does is load Page.xaml and never calls ...