User Mauricio Scheffer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:00:59Z http://stackoverflow.com/feeds/user/21239 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1768798/hql-to-sql-converter/1943857#1943857 0 Answer by Mauricio Scheffer for HQL to SQL converter Mauricio Scheffer 2009-12-22T02:24:27Z 2009-12-22T02:24:27Z <p>I'm not familiar with all the parameters, but this seems to work:</p> <pre><code>ISessionFactory sessionFactory = ... var sf = (SessionFactoryImpl) sessionFactory; var hql = "from Person"; var qt = sf.Settings.QueryTranslatorFactory.CreateQueryTranslator("", hql, new Dictionary&lt;string, IFilter&gt;(), (ISessionFactoryImplementor) sessionFactory); qt.Compile(new Dictionary&lt;string, string&gt;(), true); var sql = qt.SQLString; Console.WriteLine(sql); </code></pre> http://stackoverflow.com/questions/1942078/creating-a-feed-from-a-list-of-links-in-yahoo-pipes/1942345#1942345 0 Answer by Mauricio Scheffer for Creating a feed from a list of links in yahoo pipes Mauricio Scheffer 2009-12-21T20:13:25Z 2009-12-21T20:13:25Z <ol> <li>Use the fetch page module and parse the relevant links. <a href="http://pipes.yahoo.com/pipes/pipe.edit?%5Fid=1qoLq6ai3BGv06982R2EvQ" rel="nofollow">Sample pipe</a>.</li> <li>No, but take a look at <a href="http://developer.yahoo.com/yql/" rel="nofollow">YQL</a>. You can also extend pipes functionality with the Web Service module (<a href="http://pipes.yahoo.com/pipes/pipe.edit?%5Fid=KAMnPi5F3BGdNiMxouNLYQ" rel="nofollow">sample pipe</a>)</li> </ol> http://stackoverflow.com/questions/1939886/f-graph-library-ocamlgraph-like/1940054#1940054 1 Answer by Mauricio Scheffer for F# graph library (ocamlgraph like) Mauricio Scheffer 2009-12-21T13:16:33Z 2009-12-21T16:19:08Z <p><a href="http://www.codeplex.com/quickgraph" rel="nofollow">QuickGraph</a> is one of the most complete graph libraries for .Net</p> http://stackoverflow.com/questions/1935489/how-to-escape-identifiers-in-boo/1937845#1937845 0 Answer by Mauricio Scheffer for How to escape identifiers in Boo? Mauricio Scheffer 2009-12-21T02:15:59Z 2009-12-21T02:15:59Z <p>I don't think anything like the <a href="http://stackoverflow.com/questions/91817/whats-the-use-meaning-of-the-character-in-variable-names-in-c">C# @ prefix</a> is implemented in Boo... but I'm pretty sure it could be achieved by inserting a custom compiler step to the beginning of the compiler pipeline.</p> http://stackoverflow.com/questions/1928722/how-to-programmatically-add-an-index-column-for-nhibernate-search-lucene-net-wi/1929135#1929135 1 Answer by Mauricio Scheffer for How to programmatically add an index column for NHibernate Search (Lucene.net) without using FieldAttribute Mauricio Scheffer 2009-12-18T16:11:43Z 2009-12-21T01:55:56Z <p>Non-attribute mapping was recently implemented, take a look at <a href="http://blog.ashmind.com/index.php/2009/10/26/custom-mapping-for-nhibernate-search/" rel="nofollow">this blog post</a>.</p> http://stackoverflow.com/questions/1937738/use-attributes-to-check-whether-to-access-a-method/1937745#1937745 1 Answer by Mauricio Scheffer for Use Attributes To Check Whether to Access a Method Mauricio Scheffer 2009-12-21T01:24:59Z 2009-12-21T01:45:24Z <p>This looks like a perfect candidate for <a href="http://en.wikipedia.org/wiki/Aspect-oriented%5Fprogramming" rel="nofollow">AOP</a>. In a nutshell, this means that the <code>CanAccessDatabase</code> logic will live in an "aspect" or "interceptor", that is, <em>separate</em> from the business logic, thus achieving <a href="http://en.wikipedia.org/wiki/Single%5Fresponsibility%5Fprinciple" rel="nofollow">separation of concerns</a> (the aspect is only responsible for security, business code is only responsible for business things).</p> <p>In C#, two popular options for doing AOP are <a href="http://castleproject.org/dynamicproxy/index.html" rel="nofollow">Castle.DynamicProxy</a> and <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>. Each has its pros and cons. <a href="http://stackoverflow.com/questions/62798/applying-aop">This question</a> sums up their differences.</p> <p><a href="http://ayende.com/Blog/archive/2007/07/02/7-Approaches-for-AOP-in-.Net.aspx" rel="nofollow">Here are other options</a> for doing AOP in .Net, some of them can be done without 3rd-party libraries. I still recommend using either DynamicProxy, PostSharp, LinFu, Spring.AOP or Unity, other solutions are not nearly as flexible.</p> http://stackoverflow.com/questions/1937569/does-having-multiple-similar-urls-hurt-search-engine-optimization/1937587#1937587 0 Answer by Mauricio Scheffer for Does having multiple similar urls hurt search engine optimization Mauricio Scheffer 2009-12-21T00:12:42Z 2009-12-21T00:12:42Z <p>This isn't really programming related... but the quick answer is <strong>no</strong>, it won't hurt SEO, assuming these pages are properly linked and don't have the same or <strong>very</strong> similar content.</p> http://stackoverflow.com/questions/630332/build-system-for-net-with-a-make-rake-like-syntax/630366#630366 5 Answer by Mauricio Scheffer for Build System for .NET with a Make/Rake-like syntax? Mauricio Scheffer 2009-03-10T14:09:08Z 2009-12-20T21:15:19Z <ul> <li><a href="http://www.google.com/search?q=boo-build-system" rel="nofollow">Boo build system</a> (uses Boo)</li> <li><a href="http://github.com/JeremySkinner/Phantom" rel="nofollow">Phantom</a> (another one that uses Boo)</li> <li><a href="http://www.google.com/search?q=psake+powershell" rel="nofollow">PSake</a> (uses PowerShell)</li> <li><a href="http://code.google.com/p/fake/" rel="nofollow">FAKE</a> (uses F#)</li> </ul> http://stackoverflow.com/questions/1924814/weird-override-problem-with-fluent-nhibernate-and-net-4/1925004#1925004 1 Answer by Mauricio Scheffer for Weird override problem with Fluent NHibernate and .NET 4 Mauricio Scheffer 2009-12-17T22:19:57Z 2009-12-20T18:22:34Z <p>From the <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=464751" rel="nofollow">Microsoft Connect issue</a>:</p> <blockquote> <p>Security attributes need to be re-applied on types that derive from other types that also have security attributes.</p> </blockquote> <p>Maybe <a href="http://github.com/jagregory/fluent-nhibernate/blob/master/src/FluentNHibernate/Cfg/FluentConfigurationException.cs" rel="nofollow"><code>FluentConfigurationException</code></a> needs to apply a <code>[SecurityPermission]</code> attribute to its <code>GetObjectData()</code> method.</p> <p>Else check out <a href="http://weblogs.asp.net/peterblum/archive/2009/11/06/typeloadexception-based-on-security-transparent-code-level-2.aspx" rel="nofollow">this blog post</a>.</p> <p><strong>EDIT</strong>: The <a href="http://groups.google.com/group/fluent-nhibernate/msg/c0e4613434bb433f" rel="nofollow">final solution</a> was adding <code>[SecurityCritical]</code> to <a href="http://github.com/jagregory/fluent-nhibernate/blob/master/src/FluentNHibernate/Cfg/FluentConfigurationException.cs" rel="nofollow"><code>FluentConfigurationException.GetObjectData()</code></a></p> http://stackoverflow.com/questions/1936054/are-there-any-library-in-net-to-do-some-basic-audio-editing/1936141#1936141 2 Answer by Mauricio Scheffer for Are there any library in .Net to do some basic audio editing? Mauricio Scheffer 2009-12-20T15:34:48Z 2009-12-20T15:34:48Z <p>Check out <a href="http://www.codeplex.com/naudio" rel="nofollow">NAudio</a></p> <p>NAudio Features:</p> <ul> <li>Play back audio using a variety of APIs <ul> <li>WaveOut</li> <li>DirectSound</li> <li>ASIO (not currently working with all soundcards)</li> <li>WASAPI (Windows Vista Core Audio)</li> </ul></li> <li>Decompress audio from different Wave Formats using ACM codecs</li> <li>Record audio using WaveIn or WASAPI</li> <li>Read and Write standard .WAV files</li> <li>Mix and manipulate audio streams using a 32 bit mixing engine</li> <li>Support for reading from a variety of audio file-formats including: <ul> <li>MP3</li> <li>SoundFont</li> <li>MIDI</li> <li>SFZ</li> </ul></li> <li>Extensive support for reading and writing MIDI files</li> <li>Full MIDI event model</li> <li>Basic support for Windows Mixer APIs</li> <li>A collection of Windows Forms Controls useful for .NET Some basic audio effects, including a compressor</li> </ul> http://stackoverflow.com/questions/1930083/log4net-configuration-exception/1930111#1930111 1 Answer by Mauricio Scheffer for log4net configuration exception Mauricio Scheffer 2009-12-18T19:05:56Z 2009-12-18T20:07:45Z <p>If you have your config in a separate log4net.config file you don't need the sectionHandler. Remove it.</p> <p>You're also probably calling <a href="http://logging.apache.org/log4net/release/sdk/log4net.Config.XmlConfigurator.Configure%5Foverload%5F1.html" rel="nofollow">XmlConfigurator.Configure()</a> somewhere in your code. Remove that as well.</p> <p>Also see <a href="http://stackoverflow.com/questions/1321261/configuring-log4net-with-xml-file">this question</a></p> http://stackoverflow.com/questions/1915454/using-castle-activerecord-with-fluent-nhibernate/1918929#1918929 2 Answer by Mauricio Scheffer for Using Castle ActiveRecord with Fluent NHibernate? Mauricio Scheffer 2009-12-17T01:31:19Z 2009-12-17T01:31:19Z <p>This combo doesn't work yet. When trying to use <code>ActiveRecordMediator</code> on a FluentNHibernate-configured entity you'll get an <code>ActiveRecordException</code> complaining that you didn't call <code>ActiveRecordStarter.Initialize()</code> or you didn't use the <code>[ActiveRecord]</code> attribute.</p> <p>However there <a href="http://mortslikeus.blogspot.com/2009/07/activerecord-fluent-configuration.html" rel="nofollow">is work being done on this integration</a>. Wanna help out? I invite you to the <a href="http://groups.google.com/group/castle-project-devel" rel="nofollow">castle dev group</a> ;-)</p> http://stackoverflow.com/questions/1917160/activerecord-many-to-many-surrogate-key-problem-please-help/1918864#1918864 0 Answer by Mauricio Scheffer for [ActiveRecord] Many-To-Many Surrogate Key problem. Please help! Mauricio Scheffer 2009-12-17T01:06:11Z 2009-12-17T01:06:11Z <p>When you say:</p> <pre><code>Insurer item = new Insurer(); item.Active = true; </code></pre> <p>which <code>InsurerSection</code> should be marked with active = true ?</p> <p>Either use <code>FindOne</code> as you suggested or <a href="http://www.nhforge.org/doc/nh/en/index.html#collections-ofvalues" rel="nofollow">map the relationship as a map/dictionary</a> (unfortunately ActiveRecord doesn't support <code>index-many-to-many</code> yet)</p> http://stackoverflow.com/questions/312624/removing-or-overwriting-a-component-from-windsor-container/312918#312918 2 Answer by Mauricio Scheffer for Removing or overwriting a component from Windsor Container Mauricio Scheffer 2008-11-23T20:31:26Z 2009-12-16T20:39:43Z <p>IKernel has a <a href="http://www.castleproject.org/container/documentation/trunk/manual/mktypedocs/Generated%5FIKernel.html#IKernel%5FMethods19" rel="nofollow">RemoveComponent</a> method. </p> <p>But for unit tests it's recommended that you don't use the container at all, or if the test setup gets too dense because of dependencies, use an <a href="http://blog.eleutian.com/CommentView,guid,762249da-e25a-4503-8f20-c6d59b1a69bc.aspx" rel="nofollow">AutoMockingContainer</a>.</p> <p><a href="http://github.com/leemhenson/rhino-tools/tree/master/testing/Rhino.Testing" rel="nofollow">Here's</a> another (more updated) implementation.</p> http://stackoverflow.com/questions/1900474/php-of-jquery-to-access-solr/1908245#1908245 0 Answer by Mauricio Scheffer for php of jquery to access solr? Mauricio Scheffer 2009-12-15T15:37:01Z 2009-12-15T15:37:01Z <p>If you use SolrJS you're exposing your Solr instance to the world, so you need to make sure you disable the update handler. With solr-ajax you can set up a proxy to avoid this.</p> <p>See <a href="http://wiki.apache.org/solr/SolrJS#Security%5Fconcerns" rel="nofollow">Security concerns</a> for details, also: <a href="http://wiki.github.com/evolvingweb/ajax-solr/comparison-to-solrjs" rel="nofollow">http://wiki.github.com/evolvingweb/ajax-solr/comparison-to-solrjs</a></p> http://stackoverflow.com/questions/1906809/solr-terms-boosting-and-dismax/1908116#1908116 2 Answer by Mauricio Scheffer for solr terms: boosting and dismax? Mauricio Scheffer 2009-12-15T15:14:05Z 2009-12-15T15:14:05Z <p>Please take a look at the <a href="http://wiki.apache.org/solr/SolrRelevancyFAQ" rel="nofollow">Solr relevancy FAQ</a>:</p> <ul> <li><a href="http://wiki.apache.org/solr/SolrRelevancyFAQ#Should%5FI%5Fuse%5Fthe%5Fstandard%5For%5Fdismax%5Frequest%5Fhandler" rel="nofollow">Should I use the standard or dismax request handler?</a></li> <li><a href="http://wiki.apache.org/solr/SolrRelevancyFAQ#How%5Fare%5Fdocuments%5Fscored" rel="nofollow">How are documents scored</a></li> <li><a href="http://wiki.apache.org/solr/SolrRelevancyFAQ#How%5Fcan%5FI%5Fincrease%5Fthe%5Fscore%5Ffor%5Fspecific%5Fdocuments" rel="nofollow">How can I increase the score for specific documents</a></li> </ul> http://stackoverflow.com/questions/1907915/using-asp-net-mvc-and-jquery-to-render-partial-view-submit-a-form-without-page-re/1908052#1908052 1 Answer by Mauricio Scheffer for Using ASP.NET MVC and jQuery to render partial view/submit a form without page refresh Mauricio Scheffer 2009-12-15T15:04:20Z 2009-12-15T15:04:20Z <p>I'd just use <a href="http://malsup.com/jquery/taconite/" rel="nofollow">jQuery.taconite</a>:</p> <ul> <li>it's more flexible, allowing multiple DOM updates in one request.</li> <li>It's <a href="http://malsup.com/jquery/taconite/#extend" rel="nofollow">extensible</a>.</li> <li>It's <a href="http://malsup.com/jquery/taconite/test/" rel="nofollow">thoroughly tested</a>.</li> </ul> http://stackoverflow.com/questions/1904427/is-it-possible-to-use-ninject-with-a-static-property/1904666#1904666 1 Answer by Mauricio Scheffer for Is it possible to use Ninject with a static property? Mauricio Scheffer 2009-12-15T01:16:45Z 2009-12-15T01:24:54Z <p>Instead of making this static, register the ISessionFactory instance (<code>ToConstant()</code>) then register the ISession with a request scope (<code>InRequestScope</code>)</p> <p><a href="http://groups.google.com/group/ninject/browse%5Fthread/thread/57297224da1d01b8/2ad9044bd1471a2b?#2ad9044bd1471a2b" rel="nofollow">This thread</a> explains it quite clearly.</p> http://stackoverflow.com/questions/1901467/unique-key-issue-in-solr/1902112#1902112 1 Answer by Mauricio Scheffer for unique key issue in solr Mauricio Scheffer 2009-12-14T16:58:27Z 2009-12-14T16:58:27Z <p>Use a <a href="http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function%5Fuuid" rel="nofollow">UUID()</a> as key in your DataImportHandler query.</p> http://stackoverflow.com/questions/1900366/solr-wont-work-with-jquery/1900725#1900725 1 Answer by Mauricio Scheffer for solr wont work with jquery Mauricio Scheffer 2009-12-14T12:45:17Z 2009-12-14T12:45:17Z <p>You should use <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow">$.getJSON</a> and the <a href="http://wiki.apache.org/solr/SolJSON" rel="nofollow">JSON response writer</a> (wt=json in your querystring).</p> <p>Also take a look at the <a href="http://github.com/evolvingweb/ajax-solr" rel="nofollow">ajax-solr project</a>.</p> http://stackoverflow.com/questions/1895898/how-to-import-mysql-tables-to-solr/1898271#1898271 1 Answer by Mauricio Scheffer for how to import mysql tables to SOLR Mauricio Scheffer 2009-12-13T23:57:12Z 2009-12-13T23:57:12Z <p>The easiest way to import data from a RDBMS is the <a href="http://wiki.apache.org/solr/DataImportHandler" rel="nofollow">DataImportHandler</a>. Check out this step-by-step <a href="http://wiki.apache.org/solr/DIHQuickStart" rel="nofollow">quick start</a>.</p> <p>Also, <a href="http://robotlibrarian.billdueber.com/an-exercise-in-solr-and-dataimporthandler-hathitrust-data/" rel="nofollow">here's a pretty thorough walk-through</a> of its usage.</p> http://stackoverflow.com/questions/1897040/castle-activerecord-using-linq-to-nhibernate-example/1897933#1897933 1 Answer by Mauricio Scheffer for Castle ActiveRecord using Linq to Nhibernate Example Mauricio Scheffer 2009-12-13T22:02:26Z 2009-12-13T22:02:26Z <p>Not the best examples I reckon, but you could take a look at <a href="http://fisheye2.atlassian.com/browse/castleproject/ActiveRecord/trunk/src/Castle.ActiveRecord.Linq.Tests/ActiveRecordLinqTestCase.cs?r=6230" rel="nofollow">the tests</a>.</p> http://stackoverflow.com/questions/383848/f-open-source-projects 13 F# open source projects Mauricio Scheffer 2008-12-20T22:59:49Z 2009-12-13T21:08:35Z <p>I'm looking for some open source F# projects to learn from. Something like <a href="http://stackoverflow.com/questions/143088/open-source-c-projects-that-have-very-high-code-quality-to-learn-from">this question</a> but for F#, i.e. not snippets but full projects that are good representatives of F# features (i.e. pattern matching, discriminated unions, etc).</p> <p>My objective are mainly to see how all the features fit together, how the project is organized and how the problems are tackled from a functional perspective.</p> http://stackoverflow.com/questions/383848/f-open-source-projects/408160#408160 3 Answer by Mauricio Scheffer for F# open source projects Mauricio Scheffer 2009-01-02T22:14:53Z 2009-12-13T21:08:35Z <p><a href="http://code.msdn.microsoft.com/DownloadStockPrices" rel="nofollow">DownloadStockPrices</a>:</p> <blockquote> <p>Downloads stock prices, dividends and splits from Yahoo historical quotes. It also modify them to make them as happened and adjust them to calculate adjusted prices. There is also a .NET component that can be reused from C#/VB.NET. It is written in F# but it can be used from whatever .NET language.</p> <p>Link to blog posts is <a href="http://blogs.msdn.com/lucabol/archive/2008/09/26/downloading-stock-prices-in-f-part-v-adjusting-historical-data.aspx" rel="nofollow">here</a>:</p> <p>It has been written with the F# September 2008 CTP.</p> <p>The solution is composed by:</p> <ul> <li>a library to perform the dowload</li> <li>a test project using xUnit (but you have to download xUnit and reference it in the Tests project to run it)</li> <li>a simple Console based driver</li> <li>a start of a graphical UI app using the library (called Bob)</li> </ul> </blockquote> http://stackoverflow.com/questions/1881706/adding-a-new-column-to-a-may-to-many-relationship-in-nhibernate/1893825#1893825 0 Answer by Mauricio Scheffer for Adding a new column to a may to many relationship in NHibernate Mauricio Scheffer 2009-12-12T15:55:30Z 2009-12-12T15:55:30Z <p>You could try to create the new CreateDate column manually with a default <code>getdate()</code> value, but I'd just create a new entity for VersionLink and convert the <code>many-to-many</code> to <code>many-to-one</code>s</p> http://stackoverflow.com/questions/1884493/objects-validating-itself-using-castle-validators/1885271#1885271 0 Answer by Mauricio Scheffer for Objects validating itself using Castle Validators Mauricio Scheffer 2009-12-11T01:21:20Z 2009-12-11T01:21:20Z <p>Use a <a href="http://www.nhforge.org/doc/nh/en/index.html#objectstate-events" rel="nofollow">NHibernate load event listener</a> instead of Castle Validators for this.</p> http://stackoverflow.com/questions/1874422/nhibernate-is-there-a-way-to-get-more-info-from-its-exceptions/1884644#1884644 0 Answer by Mauricio Scheffer for NHibernate - is there a way to get more info from its exceptions? Mauricio Scheffer 2009-12-10T22:47:57Z 2009-12-10T22:47:57Z <p>You probably won't like this answer, but yes, there is a way: check out the <a href="https://nhibernate.svn.sourceforge.net/svnroot/nhibernate/trunk/nhibernate/" rel="nofollow">source code</a> and improve the exceptions, then post the patch in the <a href="http://jira.nhforge.org/" rel="nofollow">issue tracker</a>.</p> <p>Hint: search for <code>throw new MappingException</code> in <a href="https://nhibernate.svn.sourceforge.net/svnroot/nhibernate/trunk/nhibernate/src/NHibernate/Cfg/XmlHbmBinding/" rel="nofollow">this directory</a>, there are only three classes that throw this exception.</p> http://stackoverflow.com/questions/230014/postback-not-working-with-asp-net-routing-validation-of-viewstate-mac-failed/557611#557611 4 Answer by Mauricio Scheffer for Postback not working with ASP.NET Routing (Validation of viewstate MAC failed) Mauricio Scheffer 2009-02-17T16:22:03Z 2009-12-10T16:07:08Z <p>I worked around this by having my view user control inherit from this class instead of <code>ViewUserControl&lt;T&gt;</code> (it's kind of a patch for RenderView). It did the trick for me, hopefully it works for you too.</p> <pre><code>public class ViewUserControlWithoutViewState&lt;T&gt; : ViewUserControl&lt;T&gt; where T : class { protected override void LoadViewState(object savedState) {} protected override object SaveControlState() { return null; } protected override void LoadControlState(object savedState) {} protected override object SaveViewState() { return null; } /// &lt;summary&gt; /// extracted from System.Web.Mvc.ViewUserControl /// &lt;/summary&gt; /// &lt;param name="viewContext"&gt;&lt;/param&gt; public override void RenderView(ViewContext viewContext) { viewContext.HttpContext.Response.Cache.SetExpires(DateTime.Now); var containerPage = new ViewUserControlContainerPage(this); ID = Guid.NewGuid().ToString(); RenderViewAndRestoreContentType(containerPage, viewContext); } /// &lt;summary&gt; /// extracted from System.Web.Mvc.ViewUserControl /// &lt;/summary&gt; /// &lt;param name="containerPage"&gt;&lt;/param&gt; /// &lt;param name="viewContext"&gt;&lt;/param&gt; public static void RenderViewAndRestoreContentType(ViewPage containerPage, ViewContext viewContext) { string contentType = viewContext.HttpContext.Response.ContentType; containerPage.RenderView(viewContext); viewContext.HttpContext.Response.ContentType = contentType; } /// &lt;summary&gt; /// Extracted from System.Web.Mvc.ViewUserControl+ViewUserControlContainerPage /// &lt;/summary&gt; private sealed class ViewUserControlContainerPage : ViewPage { // Methods public ViewUserControlContainerPage(ViewUserControl userControl) { Controls.Add(userControl); EnableViewState = false; } protected override object LoadPageStateFromPersistenceMedium() { return null; } protected override void SavePageStateToPersistenceMedium(object state) {} } } </code></pre> <p>I <a href="http://bugsquash.blogspot.com/2009/02/aspnet-mvc-postback-support.html" rel="nofollow">blogged about this</a> some time ago.</p> http://stackoverflow.com/questions/1877329/how-to-control-dtd-reading-with-net/1877873#1877873 1 Answer by Mauricio Scheffer for How to control DTD reading with .NET? Mauricio Scheffer 2009-12-10T00:18:48Z 2009-12-10T00:18:48Z <p>Implement your own <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlresolver.aspx" rel="nofollow">XmlResolver</a> to handle this (you could just inherit from XmlUrlResolver), then plug it into a <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmltextreader.xmlresolver.aspx" rel="nofollow">XmlTextReader</a> and <a href="http://msdn.microsoft.com/en-us/library/a8ta6tz4.aspx" rel="nofollow">pass the reader to the XmlDocument</a>.</p> http://stackoverflow.com/questions/1865848/feedback-on-mono-rails/1869376#1869376 2 Answer by Mauricio Scheffer for Feedback on Mono rails Mauricio Scheffer 2009-12-08T19:46:58Z 2009-12-08T19:46:58Z <p><a href="http://forum.castleproject.org/viewforum.php?f=6" rel="nofollow">Lots of people have successfully used MonoRail</a> for several years. It's a great framework, and if you later want to migrate to ASP.NET MVC it's no big deal.</p> <p>Unfortunately you'll have to use <a href="http://sourceforge.net/projects/castleproject/files/Castle%20Project/Release%20Candidate%203/Castle-net-2.0-release-2007-9-20.zip/download" rel="nofollow">RC3</a> (which is over 2 years old now) to get .NET 2.0 support, as the latest trunk versions only support .NET 3.5.</p> <p>If you really want to go with ASP.NET MVC you might want to try <a href="http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx" rel="nofollow">this hack</a> to make it work on .NET 2.0.</p> http://stackoverflow.com/questions/1943262/log4net-rolling-file-appender-rolling-issue Comment by Mauricio Scheffer on Log4Net Rolling File Appender Rolling issue Mauricio Scheffer 2009-12-21T23:32:37Z 2009-12-21T23:32:37Z I don't follow.. what do you want to prevent? http://stackoverflow.com/questions/1942001/fluent-nhibernate-automapping-of-liststring Comment by Mauricio Scheffer on Fluent NHIbernate automapping of List<string> ? Mauricio Scheffer 2009-12-21T20:24:49Z 2009-12-21T20:24:49Z if you don't want it as a delimited string in a single field, and you don't want it in another table, then <i>where</i>? this is still a relational database... http://stackoverflow.com/questions/1941065/nhibernate-and-sqlite-could-not-compile-the-mapping-document Comment by Mauricio Scheffer on NHibernate and sqlite - Could not compile the mapping document Mauricio Scheffer 2009-12-21T17:13:27Z 2009-12-21T17:13:27Z see <a href="http://stackoverflow.com/questions/1460045/sql-data-sqllite-version-with-nhibernate-2-1" rel="nofollow" title="sql data sqllite version with nhibernate 2 1">stackoverflow.com/questions/1460045/&hellip;</a> http://stackoverflow.com/questions/1940126/nvelocity-not-finding-the-template Comment by Mauricio Scheffer on NVelocity not finding the template Mauricio Scheffer 2009-12-21T16:26:08Z 2009-12-21T16:26:08Z I removed the asp.net tag because this is not related to asp.net at all. http://stackoverflow.com/questions/1935489/how-to-escape-identifiers-in-boo/1937845#1937845 Comment by Mauricio Scheffer on How to escape identifiers in Boo? Mauricio Scheffer 2009-12-21T16:08:00Z 2009-12-21T16:08:00Z so it <i>was</i> possible with a compiler step after all http://stackoverflow.com/questions/1935489/how-to-escape-identifiers-in-boo/1937845#1937845 Comment by Mauricio Scheffer on How to escape identifiers in Boo? Mauricio Scheffer 2009-12-21T15:48:43Z 2009-12-21T15:48:43Z good point, then it has to be at the parser level. http://stackoverflow.com/questions/1939948/firsts-steps-with-an-ioc-because-i-hit-a-wall-please-explain-the-behind-the-sce Comment by Mauricio Scheffer on firsts steps with an IoC because I hit a wall, please explain the 'behind the scenes' Mauricio Scheffer 2009-12-21T13:24:53Z 2009-12-21T13:24:53Z see <a href="http://stackoverflow.com/questions/1082898/how-exactly-dependency-injection-is-implemented-internally-in-spring-net" rel="nofollow" title="how exactly dependency injection is implemented internally in spring net">stackoverflow.com/questions/1082898/&hellip;</a> http://stackoverflow.com/questions/1933706/what-are-nhibernates-advantages-over-other-orm-tools/1933729#1933729 Comment by Mauricio Scheffer on What are NHibernate's advantages over other ORM tools? Mauricio Scheffer 2009-12-21T04:11:54Z 2009-12-21T04:11:54Z -1 that's a highly <i>biased</i> comparison website. http://stackoverflow.com/questions/1937886/no-linebreak-in-asp-net Comment by Mauricio Scheffer on No linebreak in ASP.NET Mauricio Scheffer 2009-12-21T02:43:24Z 2009-12-21T02:43:24Z It looks like you need to learn HTML. See <a href="http://stackoverflow.com/questions/1068195/what-are-some-good-websites-for-learning-html" rel="nofollow" title="what are some good websites for learning html">stackoverflow.com/questions/1068195/&hellip;</a> http://stackoverflow.com/questions/1124407/has-anyone-used-script Comment by Mauricio Scheffer on Has anyone used Script#? Mauricio Scheffer 2009-12-20T15:43:10Z 2009-12-20T15:43:10Z <a href="http://stackoverflow.com/questions/1579192/should-i-use-scriptsharp" rel="nofollow" title="should i use scriptsharp">stackoverflow.com/questions/1579192/&hellip;</a> http://stackoverflow.com/questions/515194/does-someone-have-experience-with-script Comment by Mauricio Scheffer on Does someone have experience with Script# Mauricio Scheffer 2009-12-20T15:42:39Z 2009-12-20T15:42:39Z <a href="http://stackoverflow.com/questions/1579192/should-i-use-scriptsharp" rel="nofollow" title="should i use scriptsharp">stackoverflow.com/questions/1579192/&hellip;</a> http://stackoverflow.com/questions/1930083/log4net-configuration-exception/1930111#1930111 Comment by Mauricio Scheffer on log4net configuration exception Mauricio Scheffer 2009-12-18T21:13:21Z 2009-12-18T21:13:21Z @ram doesn't matter, it can be anything. http://stackoverflow.com/questions/1930083/log4net-configuration-exception/1930111#1930111 Comment by Mauricio Scheffer on log4net configuration exception Mauricio Scheffer 2009-12-18T20:59:41Z 2009-12-18T20:59:41Z Exactly, you should <i>not</i> call it. The assembly attribute already handles the initialization. http://stackoverflow.com/questions/1930083/log4net-configuration-exception Comment by Mauricio Scheffer on log4net configuration exception Mauricio Scheffer 2009-12-18T20:09:17Z 2009-12-18T20:09:17Z duplicate: <a href="http://stackoverflow.com/questions/1321261/configuring-log4net-with-xml-file" rel="nofollow" title="configuring log4net with xml file">stackoverflow.com/questions/1321261/&hellip;</a> http://stackoverflow.com/questions/1930083/log4net-configuration-exception/1930111#1930111 Comment by Mauricio Scheffer on log4net configuration exception Mauricio Scheffer 2009-12-18T20:06:03Z 2009-12-18T20:06:03Z @ram: you're probably calling XmlConfigurator.Configure() somewhere in your code. remove that.