User Rasmus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:12:30Z http://stackoverflow.com/feeds/user/25792 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1838890/can-you-use-relative-paths-when-registering-handlers-in-web-config 0 Can you use relative paths when registering handlers in web.config Rasmus 2009-12-03T09:57:56Z 2009-12-03T12:05:52Z <p>I need to register a httphandler in a sub folder ("myTest") to my web application. I know that a solution would be to add a webconfig to the myTest folder, but that is not an option in this case.</p> <p>I would like to add the following to my web.config (focus on the path attribute)</p> <pre><code>&lt;system.webServer&gt; &lt;handlers&gt; &lt;add name="myHandler" verb="*" path="myTest/myHandler.axd" preCondition="integratedMode" type="xxxxxx.xxxx, xxxxxx" /&gt; &lt;/handlers&gt; &lt;/system.webServer&gt; </code></pre> <p>IIS 7 doesn't complain about the relative path, but it doesn't work either</p> http://stackoverflow.com/questions/806525/how-do-i-pre-empt-iis-staticfilehandler-with-my-own-httphandler/1648846#1648846 0 Answer by Rasmus for How do I pre-empt IIS StaticFileHandler with my own HttpHandler Rasmus 2009-10-30T09:39:37Z 2009-10-30T09:39:37Z <p>I've stumpled on this as well. My mistake was that I registed the handler under system.web instead of system.webserver.</p> <p><a href="http://stackoverflow.com/questions/355261/whats-the-difference-between-system-web-and-system-webserver">Check this post for details</a></p> http://stackoverflow.com/questions/536182/mssql2005-restore-database-without-restoring-full-text-catalog 2 MSSQL2005: Restore database without restoring full text catalog Rasmus 2009-02-11T10:00:40Z 2009-10-07T19:35:34Z <p>When restoring my database i have a problem with the physical file of the full text catalog being in use.</p> <pre><code>The file 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\FTData\MyCatalog' cannot be overwritten. It is being used by database 'demo2'. </code></pre> <p>I use this restore statement</p> <pre><code> RESTORE database demo from disk = N'c:\temp\demo.bak' WITH REPLACE ,MOVE 'demo_Data' TO 'd:\Program Files\Microsoft SQL Server 2005\MSSQL\Data\demo.MDF' ,MOVE 'demo_Log' TO 'd:\Program Files\Microsoft SQL Server 2005\MSSQL\Data\demo.LDF'; </code></pre> <p>A solution would be to restore without the full text catalog, but i can's figure out how to do that.</p> http://stackoverflow.com/questions/330428/edit-structured-data-in-ms-word 1 Edit structured data in MS Word Rasmus 2008-12-01T10:12:59Z 2009-08-12T09:16:31Z <p>I’m faced with the task to give business users the possibility to edit generic structured data in Microsoft Word 2007. </p> <p>The structure of the data (an xml representation of a form) and the data is accessed through web services.</p> <p>I believe that the solution is VSTO, but have no experience with it. So I’m looking for design advice to choose the right way to address this task. This is the flow:</p> <ol> <li>User opens Word </li> <li>User is presented with a list of “documents” (not word documents but structured data items) to edit. The content of the list is retrieved from a web service</li> <li>The user select a document</li> <li>The user is presented with a restricted word document generated based on the xml representation of a form. The can document consist of dropdowns, textboxes, rich texts, images etc.</li> <li>The user edits the form and saves the word document. This results in a call to a web service that saves the data on the server.</li> </ol> <p>Any input on how to approach this task is welcome…</p> http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/1199608#1199608 1 Answer by Rasmus for CSS to make an empty cell's border appear? Rasmus 2009-07-29T11:35:38Z 2009-07-29T11:35:38Z <p>Another way of making sure there is data in all cells: </p> <pre><code> $(document).ready(function() { $("td:empty").html("&amp;nbsp ;"); }); </code></pre> http://stackoverflow.com/questions/1187624/xval-mvc-add-a-validation-to-all-properties-of-a-type 0 xVal - MVC: add a validation to all properties of a type Rasmus 2009-07-27T11:18:55Z 2009-07-27T11:18:55Z <p>I have a MVC website with a complex model. I'm using xVal to do my validation by decorating my model properties with validation attributtes.</p> <p>I'm looking for at way to add a StringLengthRule to all properties of type string without manually adding a StringLengthAttributte to all the properties.</p> <p>One way to go was to make my own IRulesProvider as shown here:</p> <pre><code>public class TODO_MyRulesProvider : IRulesProvider { public RuleSet GetRulesFromType(Type type) { Dictionary&lt;string,Rule&gt; myRules = new Dictionary&lt;string, Rule&gt;(); foreach (var property in type.GetProperties()) { if(property.PropertyType == typeof(string)) { var rule = new StringLengthRule(0, 255); myRules[property.Name] = rule; } } ILookup&lt;string, Rule&gt; rules = myRules.ToLookup(o =&gt; o.Key, o =&gt; o.Value); return new RuleSet(rules); } } protected void Application_Start() { xVal.ActiveRuleProviders.Providers.Add(new TODO_MyRulesProvider()); } </code></pre> <p>With this approach I can get it to work, but the method GetRulesFromType is called once per property, which gives med json code like this in the html:</p> <pre><code>{"RuleName":"Custom","RuleParameters":{"Function":"RegExValidate","Parameters":"{\"regEx\":\"^\\\\w+$\"}"}}, {"RuleName":"StringLength","RuleParameters":{"MinLength":"0","MaxLength":"255"}}, {"RuleName":"StringLength","RuleParameters":{"MinLength":"0","MaxLength":"255"}}, {"RuleName":"StringLength","RuleParameters":{"MinLength":"0","MaxLength":"255"}}, {"RuleName":"StringLength","RuleParameters":{"MinLength":"0","MaxLength":"255"}}, {"RuleName":"StringLength","RuleParameters":{"MinLength":"0","MaxLength":"255"}} </code></pre> <p>How can I accomplish my goal?</p> http://stackoverflow.com/questions/760249/post-an-array-of-complex-objects-with-json-jquery-to-asp-net-mvc-controller 2 Post an array of complex objects with JSON, JQuery to ASP.NET MVC Controller Rasmus 2009-04-17T12:40:20Z 2009-04-17T17:09:08Z <p>I know this issue has been touched on before eg <a href="http://stackoverflow.com/questions/320291/how-to-post-an-array-of-complex-objects-with-json-jquery-to-asp-net-mvc-controll">here</a></p> <p>But the solutions doesn't seem to fit my problem.</p> <p>Here is my html. The number of rows are variable</p> <pre><code> &lt;table id="workPlanTable"&gt; &lt;tr&gt; &lt;th&gt; Begin &lt;/th&gt; &lt;th&gt; End &lt;/th&gt; &lt;/tr&gt; &lt;tr itemId="1"&gt; &lt;td&gt;&lt;input class="begin" id="begin_1" name="begin_1" type="text" value="5:30" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input class="end" id="end_1" name="end_1" type="text" value="11:30" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr itemId="3"&gt; &lt;td&gt;&lt;input class="begin" id="begin_3" name="begin_3" type="text" value="5:30" /&gt;&lt;/td&gt; &lt;td&gt;&lt;input class="end" id="end_3" name="end_3" type="text" value="7:30" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>The js builds an array of objects and posts them to a control method</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { submitForm = function() { var items = new Array(); $("#workPlanTable tr").each(function(i) { var end = $(this).find(".end").val(); var begin = $(this).find(".begin").val(); var item = { "Begin": begin, "End": end }; items.push(item); } ); var postData = { myItems: items }; $.ajax({ url: '~/WorkPlan/AjaxUpdate', type: 'POST', dataType: 'json', data: postData, contentType: 'application/json; charset=utf-8', success: function(result) { alert(result.Result); } }); } } ) &lt;/script&gt; </code></pre> <p>Each row represent a WorkPlanItem that. My goal is to post them all to my controller to update them.</p> <p>I can't seem to firugre out how to access the array in my controller method (AjaxUpdate)</p> http://stackoverflow.com/questions/334408/where-to-get-microsoft-web-mvc-dll/705017#705017 0 Answer by Rasmus for Where to get Microsoft.Web.Mvc.dll Rasmus 2009-04-01T11:02:53Z 2009-04-01T11:02:53Z <p>Tak a look at this blog. It highlights areas of the MVC Future</p> <p><a href="http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx" rel="nofollow">http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx</a></p> http://stackoverflow.com/questions/614224/what-is-mvc-futures-library/704983#704983 0 Answer by Rasmus for What is MVC Futures Library ? Rasmus 2009-04-01T10:48:44Z 2009-04-01T10:48:44Z <p>Tak a look at this blog. It highlights areas of the MVC Future</p> <p><a href="http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx" rel="nofollow">http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx</a></p> http://stackoverflow.com/questions/698789/print-property-name-not-what-you-would-think 4 Print property name (not what you would think) Rasmus 2009-03-30T19:59:05Z 2009-03-30T20:20:29Z <p>This is a cursory question I can't quite answer.</p> <p>The main program</p> <pre><code>class Program{ static void Main(string[] args){ Console.WriteLine("Begin"); var myClass = new MyClass(); Util.Print(myClass.Id); Util.Print(myClass.Server); Util.Print(myClass.Ping); Console.WriteLine("End"); } } </code></pre> <p>How do I implement the Util.Print method to get this output to the console:</p> <pre><code>Begin Id Server Ping End </code></pre> http://stackoverflow.com/questions/178907/from-xml-to-xsd/178958#178958 0 Answer by Rasmus for From XML to XSD Rasmus 2008-10-07T15:15:17Z 2008-10-07T15:15:17Z <p>XmlSpy also has this feature. If it's better than VS i don't know. But for working with xml and xsds I prefer et over VS any day</p> http://stackoverflow.com/questions/178936/how-can-i-unzip-the-newest-file-in-a-directory-in-a-bat-file/178941#178941 -2 Answer by Rasmus for How can I unzip the newest file in a directory in a BAT file? Rasmus 2008-10-07T15:12:18Z 2008-10-07T15:12:18Z <p>Why use bat files when you have powershell or console applications?</p> http://stackoverflow.com/questions/178251/how-to-implement-querystring-authentication 3 How to implement Querystring authentication Rasmus 2008-10-07T12:40:57Z 2008-10-07T12:50:20Z <p>I’m developing a website of a client and they are sending out newsletters to their customers (through the website administration interface) The newsletters are personal to each of the subscribed recipients/customers. Each recipient/ customer is also a user with a username/password that enables them to sign in on the website and manage their newsletter subscriptions and participate in the sites community.</p> <p>This all works like a charm. Now my client want a “Manage my subscriptions” link in the newsletter email that when pressed automatically signs the recipient/customer in on the website with no need to remember username and password.</p> <p>This could be easily solved be making a link like this: </p> <p><a href="http://mysite.com/manage.aspx?user=peter&amp;password=hounddog" rel="nofollow">http://mysite.com/manage.aspx?user=peter&amp;password=hounddog</a></p> <p>Of course information should not be clear text but encrypted in some way.</p> <p>This however poses a problem since the only way a user can be authenticated on the website if by providing a valid username and password. In the name of security, passwords are stored as hashed values in the database making it impossible for me to insert the password in the link.</p> <p>What is the best way to accomplish this without compromising the security?</p> http://stackoverflow.com/questions/1838890/can-you-use-relative-paths-when-registering-handlers-in-web-config/1839103#1839103 Comment by Rasmus on Can you use relative paths when registering handlers in web.config Rasmus 2009-12-03T13:33:00Z 2009-12-03T13:33:00Z Thanks for the input. Just can't seem to get et working using path=&quot;/myTest/*&quot; http://stackoverflow.com/questions/760249/post-an-array-of-complex-objects-with-json-jquery-to-asp-net-mvc-controller/761307#761307 Comment by Rasmus on Post an array of complex objects with JSON, JQuery to ASP.NET MVC Controller Rasmus 2009-04-21T07:13:17Z 2009-04-21T07:13:17Z Thanks for a great answer. I ended up using the stringify function + JavaScriptSerializer http://stackoverflow.com/questions/698789/print-property-name-not-what-you-would-think/698821#698821 Comment by Rasmus on Print property name (not what you would think) Rasmus 2009-03-30T20:17:14Z 2009-03-30T20:17:14Z Also a good reply http://stackoverflow.com/questions/698789/print-property-name-not-what-you-would-think/698811#698811 Comment by Rasmus on Print property name (not what you would think) Rasmus 2009-03-30T20:14:40Z 2009-03-30T20:14:40Z What a kick ass response. Thanx a million http://stackoverflow.com/questions/178907/from-xml-to-xsd/178958#178958 Comment by Rasmus on From XML to XSD Rasmus 2008-12-01T15:40:54Z 2008-12-01T15:40:54Z XmlSpy is available in a free home edition as well http://stackoverflow.com/questions/330428/edit-structured-data-in-ms-word Comment by Rasmus on Edit structured data in MS Word Rasmus 2008-12-01T15:38:19Z 2008-12-01T15:38:19Z Yes, it must be Word. The idea is to keep the user in his well know environment, and benefit from features like spelling and synonyms