SimnoTocker, I was wondering the same thing. I changed mine to use SQL Server Authentication and it gets the ticket just fine, but when it goes to get the info about the user, it fails. i ran into the same thing with another project, because i used some code from the DAL that comes with TaskVision. I changed it to only ever pass in the connection string and never the actual connection object and it started working. haven't tried that with TaskVision yet, but I have a sneaking suspicion it would work.
As for NTLM, WebServices are no different than an ASP.NET site, it's just HTTP Requests and what not (with other stuff of course), so from the perspective of IIS, that does work, either allowing or denying requests based off of who's logged in. I'm actually not sure how to get at the credentials themselves, that's why I went to sending the authentication through the SOAP Header and that seems to work pretty well! |