User Sean Carpenter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:52:30Z http://stackoverflow.com/feeds/user/729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1260153/windows-authentication-in-iis-7-5-fails-with-trust-relationship-exception 0 Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception Sean Carpenter 2009-08-11T12:53:04Z 2009-11-25T00:14:31Z <p>I have an ASP.Net 2.0 application that uses integrated Windows Authentication to authenticate/authorize users. The application works fine on Windows XP/IIS 5.1, Windows Server 2008/IIS 7, and Windows Vista/IIS 7. When I try to run this application on Windows 7/IIS 7.5, I get the following exception: <code>The trust relationship between this workstation and the primary domain failed.</code></p> <p>The stack trace is as follows: </p> <pre><code>[SystemException: The trust relationship between this workstation and the primary domain failed. ] System.Security.Principal.NTAccount.TranslateToSids(IdentityReferenceCollection sourceAccounts, Boolean& someFailed) +1085 System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) +46 System.Security.Principal.WindowsPrincipal.IsInRole(String role) +128 System.Web.Configuration.AuthorizationRule.IsTheUserInAnyRole(StringCollection roles, IPrincipal principal) +229 System.Web.Configuration.AuthorizationRule.IsUserAllowed(IPrincipal user, String verb) +354 System.Web.Configuration.AuthorizationRuleCollection.IsUserAllowed(IPrincipal user, String verb) +245 System.Web.Security.UrlAuthorizationModule.OnEnter(Object source, EventArgs eventArgs) +11153304 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171 </code></pre> <p>The web.config file contains the following information related to authentication/authorization:</p> <pre><code>&lt;authentication mode="Windows" /&gt; &lt;authorization&gt &lt;!--Deny anonymous users--&gt &lt;deny users="?"/&gt &lt;allow roles="domain\GroupWithAccess"/&gt &lt;deny users="*"/&gt &lt;/authorization&gt </code></pre> <p>Most of the results I found when researching this error state that the problem is related to a broken computer account in the domain and list the solution as re-joining the domain. I've done this but the error still appears. "Normal" domain operations work fine (accessing UNC shares, logging in, etc.).</p> <p>This application runs in the Classic .Net AppPool for compatibility reasons. I tried changing the identity of the AppPool to "NetworkService" but the error still persists.</p> <p>Any help is greatly appreciated.</p> http://stackoverflow.com/questions/1260153/windows-authentication-in-iis-7-5-fails-with-trust-relationship-exception/1793874#1793874 0 Answer by Sean Carpenter for Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception Sean Carpenter 2009-11-25T00:14:31Z 2009-11-25T00:14:31Z <p>I finally found an answer to this after experiencing the same problem on Windows Server 2008 R2. From <a href="http://www-01.ibm.com/support/docview.wss?uid=swg21410940&amp;myns=swgimgmt&amp;mynp=OCSSEPGG&amp;mync=R" rel="nofollow">this article</a>:</p> <blockquote> <p>Disable the following policies on the Windows 2008 R2 server, run gpupdate /force and restart the server. </p> <p>"Computer Configuration\Windows Setting\Security Settings\Local Policies\Security Option"</p> <p>Domain Member: Digitally encrypt or sign secure channel data (always)<br> Domain Member: Digitally encrypt secure channel data (When possible)<br> Domain Member: Digitally sign secure channel data (When possible) </p> </blockquote> <p>I can confirm that this fixed the problem on Windows 7 as well.</p> http://stackoverflow.com/questions/1661780/nhibernate-configuration-adddocument-is-slow/1671119#1671119 1 Answer by Sean Carpenter for NHibernate Configuration.AddDocument is slow Sean Carpenter 2009-11-04T00:55:24Z 2009-11-04T00:55:24Z <p>NHibernate does much of its mapping work during the creation of the <code>SessionFactory</code>. By doing mapping and query translation during startup, the costs are not paid each time a <code>Session</code> is created. This is why the recommendation when using NHibernate is to create the <code>SessionFactory</code> only once per application lifetime.</p> <p>As @Paco mentioned, if you need very fast startup NHibernate may not be the best choice for this application.</p> http://stackoverflow.com/questions/1665494/nhibernate-named-query-and-2nd-level-cache/1671099#1671099 1 Answer by Sean Carpenter for NHibernate named query and 2nd level cache Sean Carpenter 2009-11-04T00:49:12Z 2009-11-04T00:49:12Z <p>In order for queries to use the second level cache, two things must be done:<br /> 1. Enable the query cache in the NHibernate config:</p> <pre><code> &lt;property name="cache.use_query_cache"&gt;true&lt;/property&gt; </code></pre> <p>2. Enable the query for caching when getting the <code>IQuery</code> instance:</p> <pre><code> IQuery = session.GetNamedQuery("from Industry as i left join fetch i.Resources as res where INDEX(res) = :lang order by res.Name") .SetCacheable(true) .Setxxx(); </code></pre> <p>These settings cause the results of the queries to be put in the second level cache. But the second level query cache stores only identifiers of entities, not the entities themselves. In order for the execution of the query to avoid the database completely, the entities must be cached as well. See the <a href="http://nhforge.org/doc/nh/en/index.html#performance-querycache" rel="nofollow">NH Docs</a> for more explanation of the interaction of the second level caches.</p> http://stackoverflow.com/questions/1618268/using-nhibernate-identifier-identity-generator/1619781#1619781 0 Answer by Sean Carpenter for Using NHibernate Identifier Identity Generator Sean Carpenter 2009-10-25T02:25:42Z 2009-10-25T02:25:42Z <p>The posts will have the correct Blog ID even in your re-phrased question. NHibernate will insert the Blog row in the database as soon as Save is called and will retrieve the generated identity value using SCOPE_IDENTITY at that time. This ID value will be stored in the Blog object and be available for any posts created later.</p> <p>This is why people say that identity-based IDs are not a good choice - NHibernate must execute the SQL to insert the row immediately so that the correct identity value can be obtained. If a <a href="http://nhforge.org/doc/nh/en/index.html#mapping-declaration-id-generator" rel="nofollow">different identity generator</a> is used NHibernate can avoid executing the SQL insert statements until the transaction is committed since the database does not need to be contacted to determine the value of the object's ID.</p> http://stackoverflow.com/questions/1172750/is-there-an-easier-way-to-wrap-every-wcf-method-in-a-service-with-a-using-block/1188845#1188845 2 Answer by Sean Carpenter for Is there an easier way to wrap every WCF method in a service with a 'using' block? Sean Carpenter 2009-07-27T15:28:14Z 2009-07-27T15:28:14Z <p>This kind of thing could also be handled by <a href="http://en.wikipedia.org/wiki/Aspect-oriented%5Fprogramming" rel="nofollow">Aspect Oriented Programming</a>. This allows you to write code that can be "hooked" into any/every method of your class.</p> <p><a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> is one AOP library for .Net.</p> http://stackoverflow.com/questions/1001825/how-to-identify-if-a-lucene-net-index-exists-in-a-folder/1007789#1007789 0 Answer by Sean Carpenter for How to identify if a Lucene.Net Index exists in a folder Sean Carpenter 2009-06-17T15:31:02Z 2009-06-18T02:15:33Z <p>You could just use the constructor that doesn't take a boolean param. That will open an existing index if there is one there or create a new one if it doesn't exist.</p> <p>Java documentation link (same for Lucene.Net): <code>http://lucene.apache.org/java/2_3_1/api/org/apache/lucene/index/IndexWriter.html#IndexWriter(org.apache.lucene.store.Directory, org.apache.lucene.analysis.Analyzer)</code></p> http://stackoverflow.com/questions/1010123/named-string-format-is-it-possible-c/1010444#1010444 0 Answer by Sean Carpenter for named String.Format, is it possible? C# Sean Carpenter 2009-06-18T02:10:58Z 2009-06-18T02:10:58Z <p>Phil Haack discussed several methods of doing this on his blog a while back: <a href="http://haacked.com/archive/2009/01/14/named-formats-redux.aspx" rel="nofollow">http://haacked.com/archive/2009/01/14/named-formats-redux.aspx</a>. I've used the "Hanselformat" version on two projects with no complaints.</p> http://stackoverflow.com/questions/1010412/creating-the-asp-net-mvc-controller-in-visual-studio-2008/1010436#1010436 1 Answer by Sean Carpenter for Creating the ASP.NET MVC Controller in Visual Studio 2008 Sean Carpenter 2009-06-18T02:07:10Z 2009-06-18T02:07:10Z <p>Have you installed <a href="http://www.asp.net/mvc/download/" rel="nofollow">ASP.Net MVC</a> as well? It is a separate download since it was released out of band from the rest of the framework.</p> http://stackoverflow.com/questions/944166/syncing-lucene-net-indexes-across-multiple-app-servers/944300#944300 3 Answer by Sean Carpenter for Syncing Lucene.net indexes across multiple app servers Sean Carpenter 2009-06-03T11:50:01Z 2009-06-03T11:50:01Z <p>It seems that the best solution would be to index the documents on both servers into their own copy of the index. </p> <p>If you are worried about the indexing succeeding on one server and failing on the other, then you'll need to keep track of the success/failure for each server so that you can re-try the failed documents once the problem is resolved. This tracking would be done outside of Lucene in whatever system you are using to present the documents to be indexed to Lucene. Depending on how critical the completeness of the index is to you, you may also have to remove the failed server from whatever load balancer you are using until the problem has been fixed and indexing has reprocessed any outstanding documents.</p> http://stackoverflow.com/questions/530452/why-do-i-get-an-error-while-compiling-ironruby-in-ruby-1-8-7/848050#848050 2 Answer by Sean Carpenter for Why do I get an error while compiling IronRuby in Ruby 1.8.7? Sean Carpenter 2009-05-11T13:14:19Z 2009-05-11T13:14:19Z <p>It looks like the gem windows-pr is required before the pathname2 stuff succeeds. I did a <code>gem install windows-pr</code> in my Ruby 1.8.7 install and then was successfully able to run <code>rake --tasks</code> in IronRuby (it previously failed with the same "no such file to load" error).</p> http://stackoverflow.com/questions/571971/asp-net-mvc-view-code/572032#572032 1 Answer by Sean Carpenter for asp.net mvc view code Sean Carpenter 2009-02-21T03:01:15Z 2009-02-21T03:01:15Z <p>If you're concerned about how your view markup mixed with code looks, you can try an alternate view engine:</p> <ul> <li><a href="http://dev.dejardin.org/" rel="nofollow">Spark</a></li> <li><a href="http://code.google.com/p/mvccontrib/source/browse/#svn/trunk/src/MvcContrib.Castle" rel="nofollow">NVelocity</a></li> <li><a href="http://code.google.com/p/mvccontrib/source/browse/#svn/trunk/src/MvcContrib.BrailViewEngine" rel="nofollow">Brail</a></li> <li><a href="http://code.google.com/p/nhaml/" rel="nofollow">NHaml</a></li> </ul> <p>All of these view engines take different approaches to combining code and markup that can make your view markup "cleaner".</p> http://stackoverflow.com/questions/550887/testing-smtp-with-net/550910#550910 3 Answer by Sean Carpenter for Testing SMTP with .net Sean Carpenter 2009-02-15T14:00:11Z 2009-02-15T14:00:11Z <p>There's also <a href="http://invalidlogic.com/papercut/" rel="nofollow">Papercut</a> which is an SMTP server which will receieve messages but not deliver them anywhere (allowing you to make sure they are being sent correctly). The received messages are visible in a small GUI and are also written to a directory.</p> http://stackoverflow.com/questions/532901/nhibernate-retrieve-current-database-server-datetime/536751#536751 2 Answer by Sean Carpenter for NHibernate: retrieve current database server DateTime Sean Carpenter 2009-02-11T13:27:07Z 2009-02-11T13:27:07Z <p>One option is just to use a named SQL query in your mapping file:</p> <pre><code>&lt;sql-query name="CurrentDate"&gt; &lt;![CDATA[ select getdate() ]]&gt; &lt;/sql-query&gt; </code></pre> <p>Then in your calling code:</p> <pre><code>IQuery q = session.GetNamedQuery("CurrentDate"); var date = q.UniqueResult&lt;DateTime&gt;(); </code></pre> <p>Of course, this only works if you're looking to retrieve only the date and not the date plus other parts of your entities.</p> http://stackoverflow.com/questions/519699/createcriteria-and-month/526445#526445 1 Answer by Sean Carpenter for CreateCriteria and MONTH Sean Carpenter 2009-02-08T21:28:57Z 2009-02-08T21:28:57Z <p>ICriteria supports <a href="http://nhforge.org/doc/nh/en/index.html#querycriteria-narrowing" rel="nofollow">arbitrary SQL as a restriction</a>. Therefore you could do:</p> <pre><code>var criteria = session.CreateCriteria(typeof(Obs)) .Add(Expression.Sql("MONTH({alias}.Datum) = ?", 11, NHibernateUtil.Int32); var results = criteria.List&lt;Obs&gt;(); </code></pre> <p>This will execute a SQL query with {alias} replaced by the alias that NHibernate is using for the Obs table. Of course, this limits your portablility to other databases, as SQL is now embedded in your query.</p> <p>Another thing to remember is that the names you're using here are the mapped property and class names, not the underlying column and table names.</p> http://stackoverflow.com/questions/524001/sql-server-2k-agent-jobs-errors-and-messages/524012#524012 3 Answer by Sean Carpenter for SQL Server 2K - Agent Jobs - Errors and Messages Sean Carpenter 2009-02-07T15:58:39Z 2009-02-07T15:58:39Z <p>In the "Advanced" options for a SQL Agent job step, you can choose a file to log step output to. This log file will contain all the details of a step, not truncated. It doesn't help with this failure that already happened, but it will help with any future failures.</p> http://stackoverflow.com/questions/391949/bubbling-up-newest-content-in-lucene-search-results/522832#522832 0 Answer by Sean Carpenter for Bubbling up newest content in lucene search results Sean Carpenter 2009-02-07T00:57:13Z 2009-02-07T00:57:13Z <p>You can use the <a href="http://lucene.apache.org/java/2_3_2/api/core/org/apache/lucene/document/Document.html#setBoost(float)" rel="nofollow">setBoost</a> method to set the "boost" for a particular document in the index at index time. Since the default boost value is 1.0, setting a value less than 1.0 will make the document "less relevant" in search results. By tying the boost value of a document to its age (lower boost the older the document gets), you can make newer content seem more relevant in search results.</p> <p>Note in the documentation for <code>setBoost</code> that the boost value set at indexing time is not available for retrieved documents (boost works, you just can't read the value back at retrieval time to see if you applied the correct value at index time).</p> http://stackoverflow.com/questions/519351/is-sql-servers-full-text-search-the-right-tool-for-searching-phrases-not-docume/522786#522786 1 Answer by Sean Carpenter for Is SQL Server's Full Text Search the right tool for searching phrases, not documents? Sean Carpenter 2009-02-07T00:30:14Z 2009-02-07T00:30:14Z <p>Lucene.Net can offer very high performance for this kind of application along with a pretty simple API. Release 2.3.2 is nearing completion, which offers additional performance increases over release 2.1. While putting the Lucene index in a RAMDirectory (Lucene's memory-based index structure) will offer even better performance, we see great results even with the FSDirectory (a disk-based index).</p> http://stackoverflow.com/questions/493660/nhibernate-handling-an-itransaction-exception-so-that-new-transactions-can-conti/501727#501727 3 Answer by Sean Carpenter for Nhibernate: Handling an ITransaction Exception So That New Transactions Can Continue with same ISession Sean Carpenter 2009-02-01T22:27:50Z 2009-02-01T22:27:50Z <p>It's not possible to re-use an NHibernate session after an exception is thrown. <a href="http://nhforge.org/doc/nh/en/index.html#manipulatingdata-exceptions" rel="nofollow">Quoting the documentation</a>:</p> <pre><code>If the ISession throws an exception you should immediately rollback the transaction, call ISession.Close() and discard the ISession instance. Certain methods of ISession will not leave the session in a consistent state. </code></pre> <p>So the answer is that you can't do what you're trying to do. You need to create a new session and re-try the updates there.</p> http://stackoverflow.com/questions/494332/nhibernate-ilist-to-list/501712#501712 1 Answer by Sean Carpenter for NHibernate IList to List Sean Carpenter 2009-02-01T22:23:37Z 2009-02-01T22:23:37Z <p>How about using the constructor of <code>List&lt;T&gt;</code> that takes an <code>IEnumerable&lt;T&gt;</code>? Then you can use:</p> <pre><code>Buildings = new List&lt;Building&gt;(session.CreateCriteria(typeof(Building)).AddOrder(Order.Asc("buildingName")).List&lt;Building&gt;()); </code></pre> http://stackoverflow.com/questions/478827/nhibernate-update-not-working/490303#490303 0 Answer by Sean Carpenter for NHibernate Update Not working Sean Carpenter 2009-01-29T02:28:28Z 2009-01-29T02:28:28Z <p><code>ISession.Update</code> in NHibernate does not commit changes to the database. It is used to update transient instances in a different session from the one that was used to retrieve the instance (see <a href="http://nhforge.org/doc/nh/en/index.html#manipulatingdata-updating" rel="nofollow">here</a> for details). Changes are sent to the database when a session is flushed. By default, sessions operate in FlushOnCommit mode, which means the changes to the objects will be sent to the database when the NHibernate transaction is committed (see <a href="http://nhforge.org/doc/nh/en/index.html#manipulatingdata-flushing" rel="nofollow">here</a> for details on the different flush modes). </p> http://stackoverflow.com/questions/490040/nhibernate-not-evicting-objects-from-a-session/490283#490283 0 Answer by Sean Carpenter for NHibernate not evicting objects from a session. Sean Carpenter 2009-01-29T02:21:20Z 2009-01-29T02:21:20Z <p>From a testing perspective, you are better off closing the initial session that was used to create the objects and creating a new session to retrieve the objects. This will assure that the database is being hit again to instantiate the objects (assuming that the 2nd level cache is not enabled).</p> http://stackoverflow.com/questions/446639/is-there-any-way-to-tell-nhibernate-to-exclude-a-specific-table-from-a-schema-exp/453742#453742 1 Answer by Sean Carpenter for Is there any way to tell NHibernate to exclude a specific table from a Schema Export? Sean Carpenter 2009-01-17T18:10:51Z 2009-01-17T18:10:51Z <p>This feature was recently added to the NHibernate trunk (see <a href="http://groups.google.com/group/nhibernate-development/browse_thread/thread/d500e30bae29ae48/cee532fb4622e992?lnk=gst&amp;q=schemaexport" rel="nofollow">this message</a> in the NHibernate development mailing list). So if you are using the trunk, you can use the "schema-action" attribute to control the behavior of SchemaExport().</p> http://stackoverflow.com/questions/449376/how-to-prevent-unauthorized-spidering-asp-net-iis/449382#449382 4 Answer by Sean Carpenter for How to prevent unauthorized spidering (ASP.NET, IIS) Sean Carpenter 2009-01-16T03:10:23Z 2009-01-16T03:21:03Z <p>This is difficult if not impossible to accomplish. Many "rogue" spiders/crawlers do not identify themselves via the user agent string, so it is difficult to identify them. You can try to block them via their IP address, but it is difficult to keep up with adding new IP addresses to your block list. It is also possible to block legitimate users if IP addresses are used since proxies make many different clients appear as a single IP address.</p> <p>The problem with using robots.txt in this situation is that the spider can just choose to ignore it.</p> <p><strong>EDIT:</strong> Rate limiting is a possibility, but it suffers from some of the same problems of identifying (and keeping track of) "good" and "bad" user agents/IPs. In a system we wrote to do some internal page view/session counting, we eliminate sessions based on page view rate, but we also don't worry about eliminating "good" spiders since we don't want them counted in the data either. We don't do anything about preventing any client from actually viewing the pages.</p> http://stackoverflow.com/questions/360444/nhibernate-transactions-best-practices/360477#360477 6 Answer by Sean Carpenter for NHibernate Transactions Best Practices Sean Carpenter 2008-12-11T19:00:25Z 2009-01-03T03:09:44Z <p>It really depends on your environment. For example, we use the <a href="http://www.hibernate.org/43.html" rel="nofollow">Open-Session-In-View</a> (Java link but the pattern is the same in .Net) pattern on an ASP.Net site and use an HttpModule for controlling sessions and transactions. The HttpModule opens a session and starts a transaction in the BeginRequest event and then commits the transaction and closes the session in the EndRequest event.</p> <p>Different environments and communication patterns will lead to different session/transaction management strategies.</p> <p>There is a lot of discussion on the various strategies in the <a href="http://groups.google.com/group/nhusers" rel="nofollow">NHibernate Users Group</a> as well as on the web in general.</p> http://stackoverflow.com/questions/389026/nhibernate-how-to-enable-lazy-loading-on-one-to-one-mapping/389345#389345 1 Answer by Sean Carpenter for NHibernate: how to enable lazy loading on one-to-one mapping Sean Carpenter 2008-12-23T16:28:14Z 2008-12-23T16:28:14Z <p>Lazy loading of one-to-one isn't supported unless the association is mandatory. See <a href="http://www.hibernate.org/162.html" rel="nofollow">here</a> for the reasoning.</p> <p>It boils down to the fact that in order to decide if the other side of the relationship exists (N)Hibernate has to go to the database. Since you've already taken the database hit, you might as well load the full object.</p> <p>While there are cases where hitting the DB just to see if the related object exists without actually loading the object makes sense (if the related object is very "heavy"), it isn't currently supported in NHibernate.</p> http://stackoverflow.com/questions/379140/using-activerecord-nhibernate-can-i-delete-and-refresh-without-a-flush/382062#382062 0 Answer by Sean Carpenter for Using ActiveRecord/NHibernate, can I Delete and Refresh without a Flush? Sean Carpenter 2008-12-19T20:03:32Z 2008-12-19T20:03:32Z <p>This is difficult to troubleshoot without knowing the contents of your mappings, but one possibility is that you have the ID property of the OrderItem mapped using an identity field (or sequence, etc.) in the DB. If this is the case, NHibernate must make a trip to the database in order to generate the ID field, so the OrderItem is inserted immediately. This is not true of a delete, so the SQL delete statement isn't executed until session flush.</p> http://stackoverflow.com/questions/42797/what-is-a-good-deployment-tool-for-websites-on-windows 4 What is a good deployment tool for websites on Windows? Sean Carpenter 2008-09-03T23:09:55Z 2008-12-19T06:12:57Z <p>I'm looking for something that can copy (preferably only changed) files from a development machine to a staging machine and finally to a set of production machines.</p> <p>A "what if" mode would be nice as would the capability to "rollback" the last deployment. Database migrations aren't a necessary feature.</p> <p>UPDATE: A free/low-cost tool would be great, but cost isn't the only concern. A tool that could actually manage deployment from one environment to the next (dev->staging->production instead of from a development machine to each environment) would also be ideal.</p> <p>The other big nice-to-have is the ability to only copy changed files - some of our older sites contain hundreds of .asp files.</p> http://stackoverflow.com/questions/371300/use-type-of-object-in-hql-where-clause/373543#373543 0 Answer by Sean Carpenter for Use type of object in HQL where clause Sean Carpenter 2008-12-17T03:07:08Z 2008-12-17T03:07:08Z <p>NHibernate supports the same syntax as Hibernate in this case. See <a href="http://nhforge.org/doc/nh/en/index.html#queryhql-where" rel="nofollow">here</a> for an example.</p> http://stackoverflow.com/questions/344697/googlebots-ignoring-robots-txt/344700#344700 18 Answer by Sean Carpenter for Googlebots Ignoring robots.txt? Sean Carpenter 2008-12-05T18:11:43Z 2008-12-05T18:11:43Z <p>It should be <code>Disallow:</code>, not <code>Disabled:</code>.</p> http://stackoverflow.com/questions/1783302/clear-cookies-on-browser-close/1783319#1783319 Comment by Sean Carpenter on Clear cookies on browser close Sean Carpenter 2009-11-23T14:15:24Z 2009-11-23T14:15:24Z 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). http://stackoverflow.com/questions/347227/how-to-make-an-asp-net-session-cookie-expire-with-the-asp-net-httpsession/347253#347253 Comment by Sean Carpenter on How to make an ASP.NET session cookie expire with the ASP.NET HttpSession? Sean Carpenter 2009-11-23T14:14:28Z 2009-11-23T14:14:28Z 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. http://stackoverflow.com/questions/1665494/nhibernate-named-query-and-2nd-level-cache/1671099#1671099 Comment by Sean Carpenter on NHibernate named query and 2nd level cache Sean Carpenter 2009-11-04T12:41:39Z 2009-11-04T12:41:39Z I think more details are necessary. The complete mapping of the Industry class and the NH config file would be a good start. http://stackoverflow.com/questions/1306636/double-logon-for-some-users-of-an-asp-net-webforms-app/1453946#1453946 Comment by Sean Carpenter on Double Logon for some users of an ASP.Net WebForms app Sean Carpenter 2009-09-21T14:08:57Z 2009-09-21T14:08:57Z +1 for checking requests with Fiddler http://stackoverflow.com/questions/1385359/nhibernate-bug-sql-generator/1385451#1385451 Comment by Sean Carpenter on NHibernate bug sql generator Sean Carpenter 2009-09-10T02:13:46Z 2009-09-10T02:13:46Z In NHibernate, you can use ` and it will be translated to the appropriate database quoting mechanism. http://stackoverflow.com/questions/290305/nhibernate-many-to-one-and-unique-constraint-violation/1305419#1305419 Comment by Sean Carpenter on NHibernate many-to-one and unique constraint violation Sean Carpenter 2009-08-31T21:08:44Z 2009-08-31T21:08:44Z 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. http://stackoverflow.com/questions/1260153/windows-authentication-in-iis-7-5-fails-with-trust-relationship-exception/1315625#1315625 Comment by Sean Carpenter on Windows Authentication in IIS 7.5 Fails with Trust Relationship Exception Sean Carpenter 2009-08-22T12:15:23Z 2009-08-22T12:15:23Z As I noted in the original question, I've already tried re-joining the machine to the domain but it didn't help. http://stackoverflow.com/questions/1134913/user-isinrole-fails-when-using-vs-2008s-debugging-web-server-on-windows-7-using Comment by Sean Carpenter on User.IsInRole fails when using VS 2008's debugging web server on Windows 7 using Windows Auth Sean Carpenter 2009-08-10T19:47:25Z 2009-08-10T19:47:25Z Any resolution on this? I see the same behavior on Win 7 RTM. http://stackoverflow.com/questions/72458/how-do-i-use-htaccess-to-redirect-to-a-url-containing-httphost/72530#72530 Comment by Sean Carpenter on How do I use .htaccess to redirect to a URL containing HTTP_HOST? Sean Carpenter 2009-06-26T02:10:59Z 2009-06-26T02:10:59Z This assumes the rewritten domain will always be www.domain2.com. That is explicitly stated in the question as not being the case. http://stackoverflow.com/questions/944166/syncing-lucene-net-indexes-across-multiple-app-servers/944300#944300 Comment by Sean Carpenter on Syncing Lucene.net indexes across multiple app servers Sean Carpenter 2009-06-03T22:39:04Z 2009-06-03T22:39:04Z I checked the same thing once. It didn't seem worth the effort as there is a bunch of DB transaction related stuff that is not trivial to port to .Net. There were also complaints of reduced speed using the JDBCDirectory stuff. The source is in the Compass project - <a href="http://svn.compass-project.org/svn/compass/trunk/src/main/src/org/apache/lucene/store/jdbc/" rel="nofollow">svn.compass-project.org/svn/compass/&hellip;</a> http://stackoverflow.com/questions/795321/mvc-mixing-mvc-with-static-files-and-classic-asp/795353#795353 Comment by Sean Carpenter on MVC Mixing MVC with static files and classic asp Sean Carpenter 2009-04-27T22:04:43Z 2009-04-27T22:04:43Z You need to make sure that ASP is enabled in the IIS 6 manager. I think it's under extensions. http://stackoverflow.com/questions/711989/sql-updateing-a-datebase-in-vb-net-having-troubles Comment by Sean Carpenter on SQL UPDATEing a datebase in VB.NET, having troubles... Sean Carpenter 2009-04-02T23:12:11Z 2009-04-02T23:12:11Z This looks like VB.Net code, not VB 6 code. http://stackoverflow.com/questions/679279/nhibernate-force-esacping-on-table-names/684435#684435 Comment by Sean Carpenter on NHibernate - Force esacping on Table Names Sean Carpenter 2009-03-26T16:15:14Z 2009-03-26T16:15:14Z You can use the backtick (`) to escape names in a database independent manner ([] are SQL Server specific). http://stackoverflow.com/questions/631410/looking-for-a-command-line-argument-parser-for-net/685626#685626 Comment by Sean Carpenter on Looking for a Command Line Argument Parser for .NET Sean Carpenter 2009-03-26T13:11:38Z 2009-03-26T13:11:38Z We've used ndesk.options with a lot of success. It's a single class you can just compile into your code: <a href="http://www.ndesk.org/Options" rel="nofollow">ndesk.org/Options</a> http://stackoverflow.com/questions/671851/reason-for-css-property-precedence/671870#671870 Comment by Sean Carpenter on Reason for CSS property precedence? Sean Carpenter 2009-03-23T02:05:39Z 2009-03-23T02:05:39Z I think you mean the 'C' in CSS.