Advanced Forum Search Results
-
lol... In Internet Explorer "Delete Browser History on exit" was checked. I passed my computer to one of my friends last week and he was probably looking at porn or something. haha
I wasted 3 days on this.
-
Bug to reproduce:
- I create a new Silverlight project in VS 2008 using the "Business Application" template.
- I don't change a single line of code and run the application.
- I create an account and check the "Remember Me" option.
- I login and everything ok.
- I close the browser and restart it but my logged in ...
-
bump for annoying problem
-
Extra Info:
Works as intended with Firefox!
Bug is only with IE!
-
Ever since I upgraded to the latest version of Ria Services, My authenticated user keeps getting lost when the browser is closed.
I use the following code on the server to save the cookie:
FormsAuthentication.SetAuthCookie("someusername", true);
here's my web config:
<authentication ...
-
I've had this problem myself lately. Is this something that will be fixed or is it working as intended?
-
Did you try using Fiddler? (http://www.fiddler2.com/fiddler2/)
- First turn on fiddler so it starts logging http connections.
- Run a test app that calls your service reference.
- Look at fiddler logs and see the http request of your service reference.
-
Your "Client" metadata file should also be modified for eager loading.
Ex:
[Include]
public EntityCollection<Email> Emails;
Notice the [Include] attribute.
-
Try this simpler syntax?
public void BindAddressComboBox()
{this.dataContext.Load(this.dataContext.GetET_M_DemogLinkQuery(), LoadAddressesComplete, null);
}void LoadAddressesComplete(LoadOperation<Address> lo)
{this.cbAddress.ItemsSource = lo.Entities;
}
-
I'm aware that the DataForm has the ability to display validation errors but what about success messages? Is this possible?