Advanced Forum Search Results
-
Why are there no line breaks or XAML in my post???
-
I am getting a list<> of objects from a WCF service and binding them to a ComboBox.
List depts = e.Result.ToList();
comboDepartments.ItemsSource = depts;
What I don't understand is, DepartmentId never shows (it is an integer, yet department name does show.
If I replace departmentId with another string field in the datasource, i.e ...
-
Hi Jay,
I have just uninstalled and re-installed everything Visual Studio related on my computer.
I was shocked to find that nothing helped and my whole re-install was a waste of time.
I then tried your solution and I can't believe it works!
Thanks very much for the post.
-
It sees Silverlight as a project type when I go to create new project.
But when I try this I get a popup 'Object Reference not set to instance of an object'
-
I uninstalled my VS 2008, and then re-installed it.
Since then Silverlight projects are not seen as a supported project type in Visual Studio.
I have read many posts on this, and followed steps to remove any Silverlight installations, the SDK, and the SilverLight tools for Visual Studio, and used Windows Installer cleanup etc, and manually ...
-
Hi Muthu,
I am well aware that Silverlight only supports basicHttpbinding.
I am not trying to secure my communication between my silverlight application and my service, but just secure the page my silverlight app is running on.
It looks like I might have to put my service on one website and my silverlight page on another.
-
I have a silverlight app, and in this same project I have a Silverlight enabled WCF service (.svc file).
I am trying to deploy to the production web server, and would like to restrict the page using windows authentication.
But as soon as I enable windows authentication in IIS, and remove anonymous access, I get the following error...
Security ...
-
LOL you know what sometimes the simplest solution is the best.
I was trying to make this way too complicated for myself reading up on some articles and yet overlooked the most obvious way to do it.
Thanks
-
My silverlight app makes two asynchronous calls to a WCF service that get data from the db.
The problem is, I only want to make the second call, once I have the results loaded from the first call, how can I do this?
Thanks
-
I have a slider control...
<Slider x:Name="Slider1" ValueChanged="Slider1_ValueChanged" Maximum="10" Width="100"></Slider>
This works great, but as soon as I add a MINIMUM property of 1 to my control
<Slider x:Name="Slider1" ValueChanged="Slider1_ValueChanged" Minimum = ...