Sean Carpenter

1,769
reputation
189 views

Registered User

name Sean Carpenter
member for 1 year
seen 8 hours ago
website
location US
age 35
Web developer using ASP.Net, MVC, and NHibernate
Dec
17
answered How to make a Windows Service terminate when one of its sub-threads terminate
Nov
25
awarded  Scholar
Nov
25
accepted Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception
Nov
25
answered Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception
Nov
23
comment Clear cookies on browser close
You actually want to specify no Expires value on the cookie. This will cause the cookie to be removed when the browser session ends (user closes the browser).
Nov
23
comment How to make an ASP.NET session cookie expire with the ASP.NET HttpSession?
The Session object has its timeout reset on each page request. So unless this code will be executed on each request, the cookie expiration will quickly get out of sync with the Session expiration.
Nov
4
comment NHibernate named query and 2nd level cache
I think more details are necessary. The complete mapping of the Industry class and the NH config file would be a good start.
Nov
4
answered NHibernate Configuration.AddDocument is slow
Nov
4
answered NHibernate named query and 2nd level cache
Oct
25
accepted Using NHibernate Identifier Identity Generator
Oct
25
answered Using NHibernate Identifier Identity Generator
Sep
21
comment Double Logon for some users of an ASP.Net WebForms app
+1 for checking requests with Fiddler
Sep
10
awarded  Nice Answer
Sep
10
comment NHibernate bug sql generator
In NHibernate, you can use ` and it will be translated to the appropriate database quoting mechanism.
Aug
31
comment NHibernate many-to-one and unique constraint violation
No, this isn't possible. You could retrieve the country by name using a query (HQL or ICriteria) and then set the Country property to that instance, but the Country property needs to be set to an instance that NHibernate is tracking in order for this to work.
Aug
22
comment Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception
As I noted in the original question, I've already tried re-joining the machine to the domain but it didn't help.
Aug
18
awarded  Tumbleweed
Aug
11
asked Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception
Aug
10
comment User.IsInRole fails when using VS 2008’s debugging web server on Windows 7 using Windows Auth
Any resolution on this? I see the same behavior on Win 7 RTM.
Aug
9
awarded  Yearling
Jul
27
answered Is there an easier way to wrap every WCF method in a service with a ‘using’ block?
Jun
26
comment How do I use .htaccess to redirect to a URL containing HTTP_HOST?
This assumes the rewritten domain will always be www.domain2.com. That is explicitly stated in the question as not being the case.