Advanced Forum Search Results
-
Not sure why, but suddenly stopped behaving like that. I post back if it happens again.
-
I am using Blend 3 right now and am looking at my UserControl. When I change to Split mode so I can see both XAML and the designer, the designer section at the top is very small and I can't the view to make it more equal. I tried dragging it down and it starts to go down (maybe 20 pixels or so on the screen) but then it just ...
-
Thanks for the info. Guess I will have to check this Twitter thing out too.
-
@ColinBlair
Thanks for the info. So for now the best thing to do is probably to pass a DomainServiceException with an error code?
"as soon as the ADO.NET Services hosted version of RIA Services shows up.."
Can you explain this more? Do you mean when it goes live and is integrated into ADO.Net ...
-
Does that work for a DomainService? I am not calling a WCF service directly here. Where would you set the DomainService to use the behavior? Is this the type of setting you would want to use for a production environment?
-
I have a class that extends the AuthorizationAttribute class so that I can do my own authorization for my application. Everything is all set up very nicely BUT if the user isn't authorized to call the DomainService method, I want to have my client receive my own exception. Currently the only exception I ever see is ...
-
I have Forms Authentication/Authorization set up for my application and it seems to be working well except when the cookie that has my ticket in it expires. Then, when I try to call the DomainService, instead of passing back my service data, it streams back the html data for my login.aspx page. This throws a SerializationException ...
-
The property was databound on the client and set there. Does it make a difference?
-
From SQL Server Management Studio:
PK_History - AssetID (ASC), WhenPerformed (ASC)
WhenPerformed is a DateTime
Is this ok?
-
I am trying to figure out how to properly use the DomainService for my application needs. In my application, if a user wants to edit an Asset (a shallow copy that is already attached to the DomainContext), I open up a child window and let them do so. My Asset has an EntityCollection<History> collection as one of its ...