User Rasmus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:12:30Zhttp://stackoverflow.com/feeds/user/25792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838890/can-you-use-relative-paths-when-registering-handlers-in-web-config0Can you use relative paths when registering handlers in web.configRasmus2009-12-03T09:57:56Z2009-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><system.webServer>
<handlers>
<add name="myHandler" verb="*" path="myTest/myHandler.axd" preCondition="integratedMode" type="xxxxxx.xxxx, xxxxxx" />
</handlers>
</system.webServer>
</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#16488460Answer by Rasmus for How do I pre-empt IIS StaticFileHandler with my own HttpHandlerRasmus2009-10-30T09:39:37Z2009-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-catalog2MSSQL2005: Restore database without restoring full text catalogRasmus2009-02-11T10:00:40Z2009-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-word1Edit structured data in MS WordRasmus2008-12-01T10:12:59Z2009-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#11996081Answer by Rasmus for CSS to make an empty cell's border appear?Rasmus2009-07-29T11:35:38Z2009-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("&nbsp ;");
});
</code></pre>
http://stackoverflow.com/questions/1187624/xval-mvc-add-a-validation-to-all-properties-of-a-type0xVal - MVC: add a validation to all properties of a typeRasmus2009-07-27T11:18:55Z2009-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<string,Rule> myRules = new Dictionary<string, Rule>();
foreach (var property in type.GetProperties())
{
if(property.PropertyType == typeof(string))
{
var rule = new StringLengthRule(0, 255);
myRules[property.Name] = rule;
}
}
ILookup<string, Rule> rules = myRules.ToLookup(o => o.Key, o => 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-controller2Post an array of complex objects with JSON, JQuery to ASP.NET MVC ControllerRasmus2009-04-17T12:40:20Z2009-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> <table id="workPlanTable">
<tr>
<th>
Begin
</th>
<th>
End
</th>
</tr>
<tr itemId="1">
<td><input class="begin" id="begin_1" name="begin_1" type="text" value="5:30" /></td>
<td><input class="end" id="end_1" name="end_1" type="text" value="11:30" /></td>
</tr>
<tr itemId="3">
<td><input class="begin" id="begin_3" name="begin_3" type="text" value="5:30" /></td>
<td><input class="end" id="end_3" name="end_3" type="text" value="7:30" /></td>
</tr>
</table>
</code></pre>
<p>The js builds an array of objects and posts them to a control method</p>
<pre><code><script type="text/javascript">
$(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);
}
});
}
}
)
</script>
</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#7050170Answer by Rasmus for Where to get Microsoft.Web.Mvc.dllRasmus2009-04-01T11:02:53Z2009-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#7049830Answer by Rasmus for What is MVC Futures Library ?Rasmus2009-04-01T10:48:44Z2009-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-think4Print property name (not what you would think)Rasmus2009-03-30T19:59:05Z2009-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#1789580Answer by Rasmus for From XML to XSDRasmus2008-10-07T15:15:17Z2008-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-2Answer by Rasmus for How can I unzip the newest file in a directory in a BAT file?Rasmus2008-10-07T15:12:18Z2008-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-authentication3How to implement Querystring authenticationRasmus2008-10-07T12:40:57Z2008-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&password=hounddog" rel="nofollow">http://mysite.com/manage.aspx?user=peter&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#1839103Comment by Rasmus on Can you use relative paths when registering handlers in web.configRasmus2009-12-03T13:33:00Z2009-12-03T13:33:00ZThanks for the input. Just can't seem to get et working using path="/myTest/*"http://stackoverflow.com/questions/760249/post-an-array-of-complex-objects-with-json-jquery-to-asp-net-mvc-controller/761307#761307Comment by Rasmus on Post an array of complex objects with JSON, JQuery to ASP.NET MVC ControllerRasmus2009-04-21T07:13:17Z2009-04-21T07:13:17ZThanks 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#698821Comment by Rasmus on Print property name (not what you would think)Rasmus2009-03-30T20:17:14Z2009-03-30T20:17:14ZAlso a good replyhttp://stackoverflow.com/questions/698789/print-property-name-not-what-you-would-think/698811#698811Comment by Rasmus on Print property name (not what you would think)Rasmus2009-03-30T20:14:40Z2009-03-30T20:14:40ZWhat a kick ass response. Thanx a millionhttp://stackoverflow.com/questions/178907/from-xml-to-xsd/178958#178958Comment by Rasmus on From XML to XSDRasmus2008-12-01T15:40:54Z2008-12-01T15:40:54ZXmlSpy is available in a free home edition as wellhttp://stackoverflow.com/questions/330428/edit-structured-data-in-ms-wordComment by Rasmus on Edit structured data in MS WordRasmus2008-12-01T15:38:19Z2008-12-01T15:38:19ZYes, it must be Word.
The idea is to keep the user in his well know environment, and benefit from features like spelling and synonyms