I have a silverlight appliction using ria services. It works fine in the browser; however, when the application runs out of browser, I am getting the infamous "The remote server returned an error: NotFound."
It occurs in a view model. I have a domain context and when the view model loads, I load three queries.
_domainContext.Load<Pers...
Hi,
I hava a signed XAP (Silverlight version 4.0.50401.0) installed with elevated trust in OOB.
Each new version of XAP was successful installed in OOB mode (automatically download and ...) - all work as expected.
Now I installed latest silverlight development stuff (now I have Silverlight 4.0.50917.0).
All my clients who run my ap...
We are developing an out-of-browser Silverlight 4 application and want to change the title after the application loads.
Example:
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
this.Loaded += new RoutedEventHandler(MainPage_Loaded);
}
public string UserName { get...
I am contemplating building an out of browser Silverlight application. One of the reasons it has to be OOB is because I need to access an old school ActiveX/COM object and that is only allowed OOB.
I am having trouble finding any examples on how to actually integrate a COM object into a Silverlight app. The Add References dialog does...