Advanced Forum Search Results
-
Hi,
I'm seeing this error when I try and run my Silverlight control in Opera 9.63. It's something to do with ScriptResource.axd. Anyway my site works on every other browser I tested. I'm still kinda new to this. Any ideas?
Thanks,
Darren
-
Sorry, I'm a noob with this. How do I do that?
I can't add a service reference to my Silverlight project because security is not enabled on the site.
-
I'm adding a WCF Service to an existing website. Basically there is no security for the site. The logins are handled in code. SSL is not being used. I don't want to mess with the security (insecurety :D) of the site right now. What settings should I use for the service and the site to allow access? I was ...
-
Sorry if this isn't the right place for this post. I wasn't clear on where Json topics go.
I'm trying to return a Json object from a Silverlight control. My code looks like this:
return (ScriptObject)HtmlPage.Window.Eval("[{\"MedName\":\"\"}]"); This works but ...
-
When working with WCF Services on Silverlight controls, is it good practice to hang on to your service reference as a property of a class?
public partial class Settings : UserControl
{
EMRDataClient client;
private string _something = String.Empty;
public Settings(string something)
{
InitializeComponent();
...
-
I'm working on some CRUD methods for a WCF Service.
I've got a class like so:
[DataContract]
public class Setting
{
[DataMember]
[Required(ErrorMessage="GUID is required")]
public Guid GUID { get; set; }
[DataMember]
...
-
I don't know why I was getting the 401.2 error but that has gone away. I'm using an object tag for my Silverlight controls so I had to add a mime type of: .xap application/x-silverlight-2. After I made that change the error went away.
-
Thanks for the reply SharpGIS.
My Silverlight control is hosted on a secure server as part of an electronic medical records program. There's no way I could fix that by allowing anonymous access. There's got to be another way. On my development machine anonymous access is not allowed and it works there.
My ...
-
According to Fiddler I'm getting:
HTTP Error 401.2 - Unauthorized: Access is denied due to server
configuration.
Internet Information Services (IIS) What do I do with this?
-
I'm getting a red x instead of my Silverlight control. I'm deploying my code to a test server. The code works on my development machine, but not on the test server. I did a diff with SourceSafe and I'm not seeing anything. I have .Net 3.5 on the test server. The code is compiling on the test server. ...