From what I can see no.
I did look a little further into my code for the web page and noticed that I hadnt coded in the
OnSelectObject
="PriorityListDataSource_SelectObject" as part of the CSLA datasource. So it wasnt linking up with the code to go get the business object
I finally fixed that, but now it looks for the database and cannot find the database name, even though its in the app.config, web.config, and the Database.cs code in the DAL library.
In running a trace, it looks like it isnt authorizing me to do the select. It seems to skip that code and go directly to a deny authorization segment.
I am assuming then it must be something to do with the security classes.
In Lhotka's latest book he seeems to imply that if Windows authentication is used that PTPrincipal and PTSecurity arent needed. So I havent included any specialized code ( used for custom authentication) in my solution/projects. I just wanted to get data back initially without imposing any role restrictions. Can all parts of the security model be 'ignored' initially for authorization/authentication if one is intending to use Windows Integrated Security ? Or are their certain base parts of the security model that must be in place , even if windows autheincation is used?
web.config file has csla.authentication="Windows" and authenication mode =Windows and identity impersonate = true. IIS server has anonymous access disabled, windows authentication enabled and impersonation enabled.
Thanks