Advanced Forum Search Results
-
Oh,and the reason for my question is that I want to get proper soap faults.
-
I'm accessing a WCF service hosted in IIS through the proxy code generated with the "add service reference" command. For security we rely on asp.net authentication. We also use some session variables. Of course, when I switch to the client http stack instead of the default browser http stack, this all fails because of ...
-
I think you need to declare the assembly in the custom namespace. The following works for me:
public partial class SilverlightControl1 : UserControl
{
public SilverlightControl1()
{
InitializeComponent();
...
-
I'm not sure if this will help you, but when using WCF you should make sure to always use SSL when making the service calls. I'm not entirely sure how that translates when using RIA services. Anyway, here is some info on securing WCF communication with SSL in ...
-
Why not just instantiate a new object when you want to reset the timer?
dtTimeChecker = new DispatcherTimer();
etc...
-
There is this framework from Jeff Handley that seems to do the trick, but it looks like it requires some work to implement it. Also, it's specifically targeted at .NET RIA Services.
http://jeffhandley.com/archive/2009/07/11/asyncvalidation.aspx
-
I don't know that much about dates and utc and such, but shouldn't you be using DateTimeOffset instead of the regular DateTime object?
-
You could try using Rijndael, but I'm not sure if that is available in Silverlight.
http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndael(VS.80).aspx
-
According to the documentation (link below) it should be available in System.Core.dll. But you need the .NET Framework 3.5 installed.
http://msdn.microsoft.com/en-us/library/system.security.cryptography.aesmanaged.aspx
-
That's a good idea. I'll try it. Thanks.