User Nathan Ridley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:25:10Zhttp://stackoverflow.com/feeds/user/98389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1832159/when-is-it-better-practice-to-explicitly-use-the-delegate-keyword-instead-of-a-la0When is it better practice to explicitly use the delegate keyword instead of a lambda?Nathan Ridley2009-12-02T10:53:24Z2009-12-04T11:32:37Z
<p>Is there any best practice with respect to coding style with respect to explicit use of the <code>delegate</code> keyword instead of using a lambda?</p>
<p>e.g.</p>
<pre><code>new Thread(() =>
{
// work item 1
// work item 2
}).Start();
new Thread(delegate()
{
// work item 1
// work item 2
}).Start();
</code></pre>
<p>I think the lambda looks better. If the lambda is better style, what's the point of having a <code>delegate</code> keyword, other than for the fact that it existed before lambdas were implemented?</p>
http://stackoverflow.com/questions/1828015/is-there-a-way-to-always-have-vs-net-run-as-administrator/1828024#18280240Answer by Nathan Ridley for Is there a way to always have vs.net run as administrator?Nathan Ridley2009-12-01T18:35:58Z2009-12-01T18:35:58Z<p>I turn off UAC. It may be big-headed of me, but I like to think I'm advanced enough as a user to not need the computer to protect me from myself.</p>
http://stackoverflow.com/questions/934197/where-can-i-discuss-specific-architecture-implementations-ive-created-and-get-go0Where can I discuss specific architecture/implementations I've created and get good feedback?Nathan Ridley2009-06-01T09:54:57Z2009-11-26T23:00:02Z
<p>Let's say I've come up with what I think is a clean and elegant solution to a common generic requirement in coding projects. I'm happy to share my code but my main motivation for publishing it would be to get feedback from a quality audience about my solution and to determine if it has been done better elsewhere, if it could be done better, if it is buggy, etc. The normal sorts of reasons a programmer would want feedback for.</p>
<ul>
<li><a href="http://www.codeproject.com" rel="nofollow">The Code Project</a> - ugly forum/comment interface and a serious pain when you want to update the article after it has been categorised. Can also be horribly slow at times.</li>
<li><a href="http://www.codeplex.com" rel="nofollow">CodePlex</a> - not really a general code community; people would have to know what they're looking for in advance to find my code.</li>
</ul>
<p>It would be fantastic if something like a simplified version of The Code Project were produced by the Stack Overflow team with a view to allow users to show off pieces of code and get feedback, thus leading to general skills improvement of everyone participating. A bit like Scott Hanselman's Weekly Source Code blog posts, but with more of a communal purpose. In the mean time, however, what do you suggest?</p>
http://stackoverflow.com/questions/1424052/how-to-evaluate-a-standalone-boolean-expression-in-a-linq-expression-tree0How to evaluate a standalone boolean expression in a LINQ expression treeNathan Ridley2009-09-14T21:38:38Z2009-11-23T09:12:04Z
<p>I'm using the standard visitor pattern to iterate through a LINQ expression tree in order to generate dynamic SQL WHERE clauses.</p>
<p>My issue is that unlike C#, you can't use a standalone boolean expression in SQL; you have to compare it to either 1 or 0.</p>
<p>Given this hypothetical lambda expression:</p>
<pre><code>h => h.Enabled || h.Enabled == false
</code></pre>
<p>It would be easy to mistakenly generate this code:</p>
<pre><code>WHERE Enabled OR Enabled = 0
</code></pre>
<p>or this code:</p>
<pre><code>WHERE (Enabled = 1) OR (Enabled = 1) = 0
</code></pre>
<p>Both of course will generate an SQL error. What logic should I apply to get around this without my code starting to look really obtuse as I delve deep into subtrees to figure out what the case may be?</p>
<p><strong>EDIT: The example above is of course redundant - I am only using it to illustrate a point.</strong></p>
<p>Examples that could create this scenario:</p>
<pre><code>h => h.Enabled
h => h.Enabled == enabled
h => h.Enabled == true
</code></pre>
<p>Naturally that last example is poor style, but my code is being designed to work independent of the programmer's skill level, so to not cater for redundant scenarios would be poor form on my part.</p>
http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s1Creating a user interface for monitoring and interacting with a running windows serviceNathan Ridley2009-11-21T10:29:10Z2009-11-22T02:42:01Z
<p>I need to run a bunch of pluggable processes in a windows service on my server and want to create a user interface that allows me to interact with each of the plugins in use by the service.</p>
<p>What is the most common method (or methods) for communication between a user interface and a long-running windows service? I am thinking of providing a go-between location such as a database and using some sort of messaging queue to issue commands to the service. Have any of you implemented such an approach, or some other superior approach? WHat problems have you come across in the process?</p>
http://stackoverflow.com/questions/1776006/visual-studio-postbuild-changing-to-the-solution-drive1Visual studio postbuild - changing to the solution driveNathan Ridley2009-11-21T16:51:15Z2009-11-21T16:54:51Z
<p>In Visual Studio postbuild, I need to run a batch file. The solution is potentially on a different drive to that which Visual Studio is running from. In postbuild, how do I determine the drive letter that the solution is running from so I can change to that drive before running the batch file? At the moment, all I have is this:</p>
<pre><code>CD $(ProjectDir)
$(ProjectDir)postbuild.bat
</code></pre>
<p>The problem is that changing directory when that directory is on a different drive does not change the current directory, as you have to manually change which drive you're on, e.g. like so:</p>
<pre><code>E:\
CD $(ProjectDir)
$(ProjectDir)postbuild.bat
</code></pre>
<p>I can't guarantee what drive the solution is going to be on though, so I need to determine the drive via some kind of macro to ensure the postbuild.bat file will run from the currect location.</p>
http://stackoverflow.com/questions/1509188/given-two-blocks-of-text-how-can-i-generate-a-coefficient-to-compare-how-similar1Given two blocks of text, how can I generate a coefficient to compare how similar they are?Nathan Ridley2009-10-02T12:17:34Z2009-11-10T01:54:25Z
<p>Basically, I'm not looking for specific differences as you would get with a normal diff algorithm, I'm looking more to generate some sort of numeric value which represents the level of difference of two blocks of text so that I can take a bunch of different text blocks and extract a set of those text blocks that qualify as being sufficiently unique from each other. Any ideas?</p>
http://stackoverflow.com/questions/820598/what-is-the-preferred-method-of-creating-mock-objects-for-use-with-visual-studi2What is the "preferred" method of creating mock objects for use with Visual Studio unit testing?Nathan Ridley2009-05-04T15:31:26Z2009-11-05T19:37:05Z
<p>I am aware of Castle's DynamicProxy and RhinoMocks, but I was wondering if, given the fact that Microsoft has introduced unit testing as a first class feature of Visual Studio, whether they have provided any standardized object mocking mechanism to accompany it?</p>
http://stackoverflow.com/questions/1606530/pinvoke-how-to-represent-a-field-from-a-com-interface0PInvoke - how to represent a field from a COM interfaceNathan Ridley2009-10-22T11:14:27Z2009-10-26T21:07:37Z
<p>I am referencing a COM structure that starts as follows:</p>
<pre><code>[scriptable, uuid(ae9e84b5-3e2d-457e-8fcd-5bbd2a8b832e)]
interface nsICacheSession : nsISupports
{
/**
* Expired entries will be doomed or evicted if this attribute is set to
* true. If false, expired entries will be returned (useful for offline-
* mode and clients, such as HTTP, that can update the valid lifetime of
* cached content). This attribute defaults to true.
*/
attribute PRBool doomEntriesIfExpired;
...
</code></pre>
<p><a href="http://dxr.proximity.on.ca/dxr/mozilla-central/netwerk/cache/public/nsICacheSession.idl.html#58" rel="nofollow">Source: <a href="http://dxr.proximity.on.ca/dxr/mozilla-central/netwerk/cache/public/nsICacheSession.idl.html#58" rel="nofollow">http://dxr.proximity.on.ca/dxr/mozilla-central/netwerk/cache/public/nsICacheSession.idl.html#58</a></a></p>
<p>I found code for importing that interface into my C# app. The code must be wrong though, as the <code>set</code> method doesn't seem to be useful and also throws an error when I try to call it just to see what happens:</p>
<pre><code>[Guid("ae9e84b5-3e2d-457e-8fcd-5bbd2a8b832e"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface nsICacheSession
{
[return: MarshalAs(UnmanagedType.Bool)]
void set_doomEntriesIfExpired();
[return: MarshalAs(UnmanagedType.Bool)]
bool get_doomEntriesIfExpired();
...
</code></pre>
<p>What is the correct way to set the value of <code>doomEntriesIfExpired</code> and how do I reference this from my code?</p>
<p><strong>EDIT</strong></p>
<p>I changed my code to the following, which yielded "System.AccessViolationException: Attempt to read or write protected memory yada yada...":</p>
<pre><code>[Guid("ae9e84b5-3e2d-457e-8fcd-5bbd2a8b832e"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface nsICacheSession
{
void set_doomEntriesIfExpired(bool enabled);
bool get_doomEntriesIfExpired();
...
</code></pre>
http://stackoverflow.com/questions/1607380/pinvoke-reading-the-value-of-a-string-field-attempted-to-read-or-write-prote1PInvoke - reading the value of a string field - "Attempted to read or write protected memory"Nathan Ridley2009-10-22T13:52:10Z2009-10-26T17:32:29Z
<p>I'm having trouble accessing the some string fields in a COM interface. Calling the integer fields does not result in an error. When attempting call <code>clientID()</code>, <code>deviceID()</code> or <code>key()</code>, I get the old <em>"Attempted to read or write protected memory"</em> error.</p>
<p><strong>Here is the source interface code:</strong> (code sourced from <a href="http://mxr.mozilla.org/mozilla-central/source/netwerk/cache/public/nsICacheVisitor.idl" rel="nofollow">here</a>)</p>
<pre><code>[scriptable, uuid(fab51c92-95c3-4468-b317-7de4d7588254)]
interface nsICacheEntryInfo : nsISupports
{
readonly attribute string clientID;
readonly attribute string deviceID;
readonly attribute ACString key;
readonly attribute long fetchCount;
readonly attribute PRUint32 lastFetched;
readonly attribute PRUint32 lastModified;
readonly attribute PRUint32 expirationTime;
readonly attribute unsigned long dataSize;
boolean isStreamBased();
};
</code></pre>
<p><strong>Here is the C# code for accessing the interface:</strong></p>
<pre><code>[Guid("fab51c92-95c3-4468-b317-7de4d7588254"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface nsICacheEntryInfo
{
string clientID();
string deviceID();
nsACString key();
int fetchCount();
Int64 lastFetched();
Int64 lastModified();
Int64 expirationTime();
uint dataSize();
[return: MarshalAs(UnmanagedType.Bool)]
bool isStreamBased();
}
</code></pre>
<p>Any suggestions as to why simply trying to read a field should throw access violations at me?</p>
http://stackoverflow.com/questions/1618778/clarification-on-how-to-properly-declare-interop-interfaces0Clarification on how to properly declare interop interfacesNathan Ridley2009-10-24T19:03:23Z2009-10-25T18:15:03Z
<p>This is just a question on how to write my code for a COM import.</p>
<p>My understanding of the correct implementation of interop interfaces is that the main criteria is that:</p>
<ol>
<li>All method signatures must match in a compatible way</li>
<li>Methods must appear in exactly the same order in the .Net interface as they do in the unmanaged interface</li>
<li>When the unmanaged interface inherits from another unmanaged interface, the managed implementation must first declare the base-level interface members, starting with the base-most interface.</li>
</ol>
<p>My question is; what do I do, with respect to the order in which the members appear, if the interface I am importing is inherited from another interface and overrides/hides one or more of the members in the base interface? Where does the interface member declaration go? First, where the base interface declared it? Or removed from its original position and placed where the derived interface declares it?</p>
<pre><code>[uuid(31d1c294-1dd2-11b2-be3a-c79230dca297)]
interface BaseComInterface
{
void method1();
void method2();
void method3();
}
[uuid(fab51c92-95c3-4468-b317-7de4d7588254)]
interface DerivedComInterface : BaseComInterface
{
void method1();
void method4();
void method5();
}
</code></pre>
<p>Now for the C# code:</p>
<pre><code>[Guid("fab51c92-95c3-4468-b317-7de4d7588254"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IDerivedComInterface
{
void method1(); // do I remove this one?
void method2();
void method3();
void method1(); // or this one?
void method4();
void method5();
}
</code></pre>
http://stackoverflow.com/questions/1621274/how-to-send-a-mouse-click-event-to-a-hidden-window0How to send a mouse click event to a hidden window?Nathan Ridley2009-10-25T16:08:50Z2009-10-25T16:23:53Z
<p>Recognising that a bit of interop may be required, how do I send a mouse click event to a window that is currently not being displayed? I have an application that is running as a service and fiddling about with hidden windows and needs to send a mouse click event to one of them, even though it can't actually display the window.</p>
<p>The normal way I would do it is to simply send a click to the screen in the appropriate location, but obviously that method won't work in this case. Ideas?</p>
http://stackoverflow.com/questions/1594686/webbrowser-control-isolation-and-ie8-inprivate-mode1WebBrowser control, isolation and IE8 InPrivate modeNathan Ridley2009-10-20T13:40:46Z2009-10-24T19:05:24Z
<p>I have a need to run some automation tasks in a web browser control but I seem to be facing a few limitations/unknowns that I'm not 100% sure how to resolve. The application I'm running is not for public release, so I can enforce a prerequisite that IE8 is installed.</p>
<p>GeckoFX (<a href="http://geckofx.org" rel="nofollow">http://geckofx.org</a>) would be great except it does not offer me an acceptable way to manipulate the DOM as I would using the WebBrowser's InvokeMember method on HtmlElement objects.</p>
<p>WebKit.net would be even better but it's too early in its development to offer the functionality I need to do this either.</p>
<p>This leaves me with the WebBrowser control. The problem with WebBrowser though is that it just runs IE, which is a big fat shared environment with all processes. In other words, all instances share cookies, sessions, proxy settings, etc.</p>
<p>Here's what I want:</p>
<ul>
<li><p>At the end of an automation session, cookies/sessions/cache objects are not retained. Rather than clearing the global Temporary Internet Files folder, is there a way for me to access the InPrivate mode exposed by IE8?</p></li>
<li><p>If there is a way to access InPrivate browsing, is it possible for me to run two InPrivate-mode sessions side-by-side isolated from each other?</p></li>
</ul>
<p>Ideally I'd like to be able to run multiple isolated automation tasks in separate threads, each with its own private browser control, each with its own isolated session/environment that is not retained when the task completes.</p>
<p>Any help or input into this would be appreciated!</p>
http://stackoverflow.com/questions/1615506/jquery-load-data-into-html-table-without-reloading-entire-table/1615527#16155271Answer by Nathan Ridley for [jQuery] Load data into html table without reloading entire table.Nathan Ridley2009-10-23T19:47:14Z2009-10-23T19:47:14Z<pre><code>// set the background of all td tags
$('td').css('backgroundImage', 'url('+url+')');
// set the content of a particular tag
$('td#someID').html(yourHtml);
// set the background and content of a specific tag
$('td#someID').html(yourHtml).css('backgroundImage', 'url('+url+')');
</code></pre>
<p>All of this is documented in detail at the jQuery website: <a href="http://docs.jquery.com/" rel="nofollow">http://docs.jquery.com/</a></p>
http://stackoverflow.com/questions/1606530/pinvoke-how-to-represent-a-field-from-a-com-interface/1606905#16069051Answer by Nathan Ridley for PInvoke - how to represent a field from a COM interfaceNathan Ridley2009-10-22T12:34:41Z2009-10-22T12:34:41Z<p>Turns out the answer was the following:</p>
<pre><code>[Guid("ae9e84b5-3e2d-457e-8fcd-5bbd2a8b832e"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface nsICacheSession
{
void set_doomEntriesIfExpired([In, MarshalAs(UnmanagedType.Bool)] ref bool enabled);
bool get_doomEntriesIfExpired();
</code></pre>
http://stackoverflow.com/questions/1600520/reading-from-an-unmanaged-stream-unsafe-code-intptr0Reading from an unmanaged stream - unsafe code, IntPtrNathan Ridley2009-10-21T12:35:22Z2009-10-22T08:25:38Z
<p>The following is exposed in the Firefox (Gecko) 3.5 code:</p>
<pre><code>[Guid("fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a"), ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface nsIInputStream
{
void Close();
int Available();
int Read(IntPtr aBuf, uint aCount);
int ReadSegments(IntPtr aWriter, IntPtr aClosure, uint aCount);
bool IsNonBlocking();
}
</code></pre>
<p>So here I am in my little .Net/C# app, wanting to make use of an instance of this that I have returned from elsewhere in my code but I'm having trouble working out what to do with the <code>int Read(IntPtr aBuf, uint aCount)</code> method.</p>
<p>I want to fill a local <code>byte[]</code> array with the contents I receive from the <code>Read</code> method, but I'm not sure what to do with IntPtr or how to translate that back into a managed byte array.</p>
<p>Any tips/guesses/pointers? (pun not intended)</p>
http://stackoverflow.com/questions/1602410/firefox-gecko-code-interrogating-the-cache-how-do-i-get-a-list-of-devices1Firefox (Gecko) code - interrogating the cache - how do I get a list of devices?Nathan Ridley2009-10-21T17:44:52Z2009-10-21T18:46:36Z
<p>Referring to nsICacheService (<a href="https://developer.mozilla.org/en/NsICacheService" rel="nofollow">https://developer.mozilla.org/en/NsICacheService</a>) and nsICacheVisitor (<a href="https://developer.mozilla.org/en/nsICacheVisitor" rel="nofollow">https://developer.mozilla.org/en/nsICacheVisitor</a>):</p>
<ol>
<li>Where do I get an instance of nsICacheVisitor?</li>
<li>Where do I get a list of devices so that I can call visitEntry() and visitDevice()?</li>
</ol>
http://stackoverflow.com/questions/1602338/whats-this-language-token-keyword-thingy-mean0What's this language token/keyword/thingy mean?Nathan Ridley2009-10-21T17:30:38Z2009-10-21T18:11:05Z
<p>At the following URL: <a href="https://developer.mozilla.org/en/XPCOM%5FInterface%5FReference/nsICacheVisitor" rel="nofollow">https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsICacheVisitor</a> is the following code chunk:</p>
<pre><code>boolean visitDevice(in string deviceID, in nsICacheDeviceInfo deviceInfo);
</code></pre>
<p>I thought I was dealing with c++, but "in" is not a c++ keyword according to c++ keyword lists i looked up, nor is it a java keyword. So what's it there for and what's it mean?</p>
http://stackoverflow.com/questions/863688/the-difference-between-implicit-and-explicit-delegate-creation-with-and-without1The difference between implicit and explicit delegate creation (with and without generics)Nathan Ridley2009-05-14T14:35:59Z2009-10-19T13:02:59Z
<p><em>See the four lines in the Go() method below:</em></p>
<pre><code>delegate void Action<T>(T arg);
delegate void Action();
void DoSomething<T>(Action<T> action)
{
//...
}
void DoSomething(Action action)
{
//...
}
void MyAction<T>(T arg)
{
//...
}
void MyAction()
{
//...
}
void Go<T>()
{
DoSomething<T>(MyAction<T>); // throws compiler error - why?
DoSomething(new Action<T>(MyAction<T>)); // no problems here
DoSomething(MyAction); // what's the difference between this...
DoSomething(new Action(MyAction)); // ... and this?
}
</code></pre>
<p>Note that the compiler error generated by the first call is:
<em>The type arguments for method 'Action(T)' cannot be inferred from the usage. Try specifying the type arguments explicitly.</em></p>
http://stackoverflow.com/questions/834842/asp-net-mvc-modelstate-html-textbox-postback-issue3ASP.Net MVC ModelState / Html.TextBox postback issueNathan Ridley2009-05-07T14:05:48Z2009-10-06T21:56:35Z
<p>I have an issue cropping up in a form I'm trying to post. In the scenario where the form doesn't validate, I'm taking the standard route of calling <code>ModelState.AddModelError()</code> then returning a View result.</p>
<p>The thing is, the HTML.* helpers are supposed to pick up the posted value when rendering and I'm noticing that my text fields ONLY do so if I include them in the parameter list of the postback action, which shouldn't be required seeing as some forms have way too many fields to want to list them all as parameters.</p>
<p>My action code is roughly:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult EditDataDefinition(long? id, string name)
{
var dataDefinition = ...
// do some validation stuff
if (!ModelState.IsValid)
{
// manually set checkbox fields via ViewData seeing as this STILL doesn't work in MC 1.0 :P
// ...
return View(dataDefinition);
}
}
</code></pre>
<p>Now, dataDefinition (which is a LINQ to SQL entity) has a field <em>MinVolume</em>, is handled in the view by this line:</p>
<pre><code>Minimum: <%= Html.TextBox("MinVolume", null, new { size = 5 })%>
</code></pre>
<p>Yet when the view is rendered after a failed ModelState validation, the value typed into it on the original page we posted is not preserved UNLESS I include it as a parameter in the postback method. Literally, I can "solve the problem" by doing this:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult EditDataDefinition(long? id, string name, string minVolume)
</code></pre>
<p>For some reason that will force the field value to be preserved. This seems stupid to me because my form has way more values than just that and I shouldn't have to add a parameter for just that field.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/894668/exceptions-inside-repositories-how-do-you-handle-them0Exceptions inside repositories: how do you handle them?Nathan Ridley2009-05-21T19:27:05Z2009-10-04T03:39:46Z
<p>An easy one that I am interested in getting your thoughts on:</p>
<p>With your repository implementations, do you like to let exceptions be thrown inside the repository and leave the exception handling to the caller, or do you prefer to catch exceptions inside your repository, store the exception and return false/null?</p>
http://stackoverflow.com/questions/1479454/ironpython-how-to-prevent-clr-and-other-modules-from-being-imported1IronPython - How to prevent CLR (and other modules) from being importedNathan Ridley2009-09-25T20:33:16Z2009-09-26T16:46:15Z
<p>I'm setting up a web application to use IronPython for scripting various user actions and I'll be exposing various business objects ready for accessing by the script. I want to make it impossible for the user to import the CLR or other assemblies in order to keep the script's capabilities simple and restricted to the functionality I expose in my business objects.</p>
<p>How do I prevent the CLR and other assemblies/modules from being imported?</p>
http://stackoverflow.com/questions/1437240/using-javascript-and-css-files-in-asp-net-mvc-view/1437266#14372662Answer by Nathan Ridley for using javascript and css files in ASP.Net MVC View?Nathan Ridley2009-09-17T07:38:15Z2009-09-17T07:38:15Z<p>In your master page file, create a content placeholder in the head area. You can use this whenever you need to insert scripts and styles into specific views, meaning you won't deviate from the guidelines stating that this is where such files should go.</p>
<p>In your Site.Master file:</p>
<pre><code><head>
<!-- head stuff here -->
<asp:ContentPlaceHolder ID="HeadContent" runat="server" />
</head>
</code></pre>
<p>In your view aspx file:</p>
<pre><code><asp:Content ContentPlaceHolderID="HeadContent" runat="server">
<script src="/Scripts/jquery-1.3.2.js" type="text/javascript"></script>
<script src="/Scripts/jquery.MetaData.js" type="text/javascript"></script>
<script src="/Scripts/jquery.rating.js" type="text/javascript"></script>
<link href="/Scripts/jquery.rating.css" rel="stylesheet" type="text/css" />
</asp:ContentPlaceHolder>
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
<input name="rating" type="radio" class="star" value="1"/>
<input name="rating" type="radio" class="star" value="2"/>
<input name="rating" type="radio" class="star" value="3"/>
<input name="rating" type="radio" class="star" value="4"/>
<input name="rating" type="radio" class="star" value="5"/>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/1431811/can-i-put-html-code-in-label-to-display-in-my-page/1431836#14318363Answer by Nathan Ridley for can i Put Html code in label to display in my page?Nathan Ridley2009-09-16T09:06:00Z2009-09-16T09:06:00Z<p>Use <code><asp:PlaceHolder runat="server"></code> - it's a more general purpose way of inserting blocks of content into a page.</p>
http://stackoverflow.com/questions/1389057/how-do-i-resolve-this-wcf-exception0How do I resolve this WCF exception?Nathan Ridley2009-09-07T12:01:11Z2009-09-07T13:02:19Z
<p>I'm having trouble with a WCF service. The return type is a semi-complex type which makes reference to various basic types and a base interface that each of those types inherits from.</p>
<p>In my debugging, the total byte size of the serialized message is well under the default 65535 byte threshold. Nevertheless, I have increased the maxReceivedMessageSize attribute to 1000000 and the problem remains.</p>
<p><strong>The WCF service is defined as follows:</strong></p>
<pre><code>[ServiceContract]
public interface ILoggingService
{
[OperationContract]
NotesInfo ListNotes(NotesQueryOptions options);
}
</code></pre>
<p><strong>Here is the definition for the NotesInfo return object:</strong></p>
<pre><code>[DataContract]
public class NotesInfo
{
[DataMember] public List<TokenizedNote> Notes { get; set; }
[DataMember] public Dictionary<long, User> Users { get; set; }
[DataMember] public Dictionary<long, NoteCategory> NoteCategories { get; set; }
[DataMember] public Dictionary<string, Dictionary<long, IIdentifiable<long>>> EntitiesByToken { get; set; }
}
</code></pre>
<p><strong>When I try to call the service, I get the following exception thrown:</strong></p>
<blockquote>
<p>The server did not provide a
meaningful reply; this might be caused
by a contract mismatch, a premature
session shutdown or an internal server
error. Description: An unhandled
exception occurred during the
execution of the current web request.
Please review the stack trace for more
information about the error and where
it originated in the code.</p>
<p>Exception Details:
System.ServiceModel.CommunicationException:
The server did not provide a
meaningful reply; this might be caused
by a contract mismatch, a premature
session shutdown or an internal server
error.</p>
<p>Source Error:</p>
</blockquote>
<pre><code>Line 242:
Line 243: public AxeFrog.Mobile.NotesInfo ListNotes(AxeFrog.Mobile.NotesQueryOptions options) {
Line 244: return base.Channel.ListNotes(options);
Line 245: }
Line 246: }
</code></pre>
<blockquote>
<p>Source File:
C:\Users\Nathan\Work\Internal
Projects\AxeFrog
System\Source\Trunk\AxeFrog.Mobile.WebInterface\Service
References\LoggingServiceReference\Reference.cs
Line: 244</p>
</blockquote>
<p><strong>Below is the code for the other entities involved:</strong></p>
<pre><code>public interface IIdentifiable<TID>
{
TID ID { get; set; }
}
[DataContract]
public class Note : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public DateTime DateStamp { get; set; }
[DataMember] public long? UserID { get; set; }
[DataMember] public long NoteCategoryID { get; set; }
[DataMember] public NoteType NoteType { get; set; }
[DataMember] public string Message { get; set; }
}
public enum NoteType
{
Information = 0,
Warning = 10,
Failure = 20
}
[DataContract]
public class NoteCategory : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public string Name { get; set; }
}
[DataContract]
public class NoteEntityType : IIdentifiable<long>
{
[DataMember] public long ID { get; set; }
[DataMember] public Type TypeName { get; set; }
}
[DataContract]
public class TokenizedNote
{
[DataMember] public Note Note { get; set; }
[DataMember] public List<NoteSegment> NoteSegments { get; set; }
}
public abstract class NoteSegment
{
public abstract string Render(INoteRenderer renderer, Dictionary<string, Dictionary<long, IIdentifiable<long>>> entitiesByToken);
}
[DataContract]
public class NoteTextSegment : NoteSegment
{
[DataMember]
public string Text { get; set; }
}
[DataContract]
public class NoteEntitySegment : NoteSegment
{
[DataMember] public long EntityID { get; set; }
[DataMember] public string Token { get; set; }
}
</code></pre>
<p>Note that I have removed the Render() overrides from the abstract implementations of NoteSegment for the sake of readability.</p>
<p><strong>Here is some info from thedebugger so you can see what is being returned:</strong></p>
<p><img src="http://content.screencast.com/users/NathanRidley/folders/Jing/media/b75e3a30-acbd-44de-8c69-585239e65979/2009-09-07%5F1335.png" alt="alt text" />
<img src="http://content.screencast.com/users/NathanRidley/folders/Jing/media/2c828af6-f06e-46e5-927e-df8ccae0222f/2009-09-07%5F1339.png" alt="alt text" /></p>
<p>Any insight into what I might be doing wrong here would be appreciated. A Google search yields little in the way of useful answers.</p>
http://stackoverflow.com/questions/1361084/web-config-custom-configurationsection-and-unnecessary-verbosity1web.config custom ConfigurationSection and unnecessary verbosityNathan Ridley2009-09-01T07:42:23Z2009-09-01T08:51:27Z
<p>Unless I am doing something wrong, the way I am supposed to use ConfigurationSection, ConfigurationElement and ConfigurationElementCollection, would require me to format my configuration section like so:</p>
<pre><code><serviceAuthorization>
<credentials>
<login username="system" password="password" mode="include">
<services>
<service type="AxeFrog.Mobile.Service.Security.AuthenticationService, AxeFrog.Mobile.Service" />
<service type="AxeFrog.Mobile.Service.Security.AnotherService, AxeFrog.Mobile.Service" />
</services>
</login>
<login username="test" password="pass" mode="exclude" />
</credentials>
</serviceAuthorization>
</code></pre>
<p>I would much prefer if I had a bit more say in the format. I would like to format my section like this:</p>
<pre><code><serviceAuthorization>
<login username="system" password="password" mode="include">
<service type="AxeFrog.Mobile.Service.Security.AuthenticationService, AxeFrog.Mobile.Service" />
<service type="AxeFrog.Mobile.Service.Security.AnotherService, AxeFrog.Mobile.Service" />
</login>
<login username="test" password="pass" mode="exclude" />
</serviceAuthorization>
</code></pre>
<p>Is there a way I can get the XML of the configuration section and just read it myself?</p>
http://stackoverflow.com/questions/1320757/how-to-install-an-action-filter-in-all-actions-in-asp-net-mvc/1320805#13208052Answer by Nathan Ridley for How to install an action filter in all actions in ASP.NET MVC?Nathan Ridley2009-08-24T06:46:55Z2009-08-24T06:46:55Z<ol>
<li>You can apply it to an entire controller class to have it affect all actions on a controller.</li>
<li>You can apply it to a base controller class and have all your controllers inherit from that controller, thus getting the effect of applying the filter to all controllers.</li>
<li>You can use a base controller class and override the OnActionExecuting method directly on the controller which is probably more appropriate than using a filter if your intent is to apply your filter code on all actions across the board.</li>
</ol>
http://stackoverflow.com/questions/1286753/canceling-a-while-loop-prematurely/1286768#12867681Answer by Nathan Ridley for Canceling a While loop prematurely.Nathan Ridley2009-08-17T08:26:43Z2009-08-17T08:26:43Z<p>Inside your loop place the following code:</p>
<pre><code>Application.DoEvents()
</code></pre>
http://stackoverflow.com/questions/867509/any-good-webkit-wrappers-for-net3Any good WebKit wrappers for .Net?Nathan Ridley2009-05-15T08:07:44Z2009-08-11T06:44:31Z
<p>Are there any good (or in active development) WebKit wrappers or ports for .Net?</p>
<p>p.s. I am aware of Swift.Net (old and out of date) and GeckoFX (firefox wrapper).</p>
http://stackoverflow.com/questions/1232165/system-drawing-graphics-drawstring-parameter-is-not-valid-exception0System.Drawing.Graphics.DrawString - "Parameter is not valid" exceptionNathan Ridley2009-08-05T09:38:23Z2009-08-05T09:57:19Z
<p>Sometimes Microsoft's exception messages are infuriatingly unhelpful. I have created a nice little MVC method to render text. The method body is below. When it reaches the "DrawString" method, I get an exception thrown saying "Parameter is not valid".</p>
<p>Note that the font, as best I can tell is constructed properly (I"m just using Arial at 10pt), the rect size is positive and valid looking, the brush is a white SolidBrush and the format flags do not affect the output; i.e. if I exclude the format flags from the call, I still get an error.</p>
<p>The DrawString call is right near the bottom.</p>
<pre><code>public ActionResult RenderText(
string fontFamily,
float pointSize,
string foreColor,
string backColor,
bool isBold,
bool isItalic,
bool isVertical,
string align,
string[] allText,
int textIndex)
{
// method renders a horizontal or vertical text image, taking all the text strings that will be rendered in each image
// and sizing the final bitmap according to which text would take the most space, thereby making it possible to render
// a selection of text images all at the same size.
Response.ContentType = "image/png";
var fmt = StringFormat.GenericTypographic;
if(isVertical)
fmt.FormatFlags = StringFormatFlags.DirectionVertical;
Func<string,StringAlignment> getAlign = (s => {
switch(s.ToLower())
{
case "right": return StringAlignment.Far;
case "center": return StringAlignment.Center;
default: return StringAlignment.Near;
}
});
fmt.LineAlignment = isVertical ? StringAlignment.Center : getAlign(align);
fmt.Alignment = isVertical ? getAlign(align) : StringAlignment.Center;
var strings = (allText ?? new string[0]).Where(t => t.Length > 0).ToList();
if(strings.Count == 0)
strings.Add("[Missing Text]");
FontStyle style = FontStyle.Regular;
if(isBold)
if(isItalic)
style = FontStyle.Bold | FontStyle.Italic;
else
style = FontStyle.Bold;
else if(isItalic)
style = FontStyle.Italic;
Font font = new Font(fontFamily, pointSize, style, GraphicsUnit.Point);
Color fc = foreColor.IsHexColorString() ? foreColor.ToColorFromHex() : foreColor.ToColor();
Color bc = backColor.IsHexColorString() ? backColor.ToColorFromHex() : backColor.ToColor();
var maxSize = new Size(0,0);
using(var tmp = new Bitmap(100, 200))
using(var gfx = Graphics.FromImage(tmp))
foreach(var txt in strings)
{
var size = gfx.MeasureString(txt, font, 1000, fmt);
maxSize = new Size(
Math.Max(Convert.ToInt32(isVertical ? size.Height : size.Width), maxSize.Width),
Math.Max(Convert.ToInt32(isVertical ? size.Width : size.Height), maxSize.Width)
);
}
using(var bmp = new Bitmap(maxSize.Width, maxSize.Height))
{
using(var gfx = Graphics.FromImage(bmp))
{
gfx.CompositingMode = CompositingMode.SourceCopy;
gfx.CompositingQuality = CompositingQuality.HighQuality;
gfx.SmoothingMode = SmoothingMode.HighQuality;
gfx.InterpolationMode = InterpolationMode.HighQualityBicubic;
var rect = new RectangleF(new PointF(0,0), maxSize);
gfx.FillRectangle(new SolidBrush(bc), rect);
gfx.DrawString(strings[textIndex], font, new SolidBrush(fc), rect, fmt);
}
bmp.Save(Response.OutputStream, ImageFormat.Png);
}
return new EmptyResult();
}
</code></pre>
http://stackoverflow.com/questions/1832159/when-is-it-better-practice-to-explicitly-use-the-delegate-keyword-instead-of-a-la/1832184#1832184Comment by Nathan Ridley on When is it better practice to explicitly use the delegate keyword instead of a lambda?Nathan Ridley2009-12-02T11:17:49Z2009-12-02T11:17:49Z"Lambda syntax is much more generalised, and the designers have said that they'd ideally remove the old overlapping syntaxes (dont have a citation, but it's probably Eric Lippert or Jon Skeet in a book or a podcast)." - That's what I was looking for, cheers.http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s/1777650#1777650Comment by Nathan Ridley on Creating a user interface for monitoring and interacting with a running windows serviceNathan Ridley2009-11-22T08:25:54Z2009-11-22T08:25:54ZThanks for the detailed response! This is why I love this site :Dhttp://stackoverflow.com/questions/1776006/visual-studio-postbuild-changing-to-the-solution-drive/1776019#1776019Comment by Nathan Ridley on Visual studio postbuild - changing to the solution driveNathan Ridley2009-11-21T16:58:36Z2009-11-21T16:58:36ZYou learn something new every day. cheers.http://stackoverflow.com/questions/1509188/given-two-blocks-of-text-how-can-i-generate-a-coefficient-to-compare-how-similar/1705192#1705192Comment by Nathan Ridley on Given two blocks of text, how can I generate a coefficient to compare how similar they are?Nathan Ridley2009-11-10T08:30:21Z2009-11-10T08:30:21ZThis sounds like a question, not an answer. Use the big "Ask Question" button at the top right of the page.http://stackoverflow.com/questions/1606530/pinvoke-how-to-represent-a-field-from-a-com-interface/1627349#1627349Comment by Nathan Ridley on PInvoke - how to represent a field from a COM interfaceNathan Ridley2009-10-27T07:22:55Z2009-10-27T07:22:55ZNice, I didn't realise that you could retain properties when using interop.http://stackoverflow.com/questions/1618778/clarification-on-how-to-properly-declare-interop-interfaces/1621603#1621603Comment by Nathan Ridley on Clarification on how to properly declare interop interfacesNathan Ridley2009-10-25T19:01:12Z2009-10-25T19:01:12ZGreat answer, very informative, thanks!http://stackoverflow.com/questions/1621274/how-to-send-a-mouse-click-event-to-a-hidden-window/1621311#1621311Comment by Nathan Ridley on How to send a mouse click event to a hidden window?Nathan Ridley2009-10-25T16:26:55Z2009-10-25T16:26:55ZNice, I'll give that a go, thankshttp://stackoverflow.com/questions/1621274/how-to-send-a-mouse-click-event-to-a-hidden-window/1621283#1621283Comment by Nathan Ridley on How to send a mouse click event to a hidden window?Nathan Ridley2009-10-25T16:26:01Z2009-10-25T16:26:01ZOoh, cheers for thathttp://stackoverflow.com/questions/1621274/how-to-send-a-mouse-click-event-to-a-hidden-window/1621283#1621283Comment by Nathan Ridley on How to send a mouse click event to a hidden window?Nathan Ridley2009-10-25T16:20:46Z2009-10-25T16:20:46ZOk, Spy++ has a few helpful hints there, how do I access "SendMessage"?
http://stackoverflow.com/questions/1618778/clarification-on-how-to-properly-declare-interop-interfaces/1619041#1619041Comment by Nathan Ridley on Clarification on how to properly declare interop interfacesNathan Ridley2009-10-24T21:01:49Z2009-10-24T21:01:49ZI don't think you read the question. I'm talking about interop code here, not pure managed inheritance.http://stackoverflow.com/questions/1594686/webbrowser-control-isolation-and-ie8-inprivate-mode/1618781#1618781Comment by Nathan Ridley on WebBrowser control, isolation and IE8 InPrivate modeNathan Ridley2009-10-24T19:07:27Z2009-10-24T19:07:27Zdoh. ok, thanks.http://stackoverflow.com/questions/1607380/pinvoke-reading-the-value-of-a-string-field-attempted-to-read-or-write-proteComment by Nathan Ridley on PInvoke - reading the value of a string field - "Attempted to read or write protected memory"Nathan Ridley2009-10-23T11:12:19Z2009-10-23T11:12:19ZI made the change but got the same exception :(http://stackoverflow.com/questions/1607380/pinvoke-reading-the-value-of-a-string-field-attempted-to-read-or-write-prote/1607671#1607671Comment by Nathan Ridley on PInvoke - reading the value of a string field - "Attempted to read or write protected memory"Nathan Ridley2009-10-22T15:59:27Z2009-10-22T15:59:27ZThanks, it didn't help though.http://stackoverflow.com/questions/1606530/pinvoke-how-to-represent-a-field-from-a-com-interface/1606613#1606613Comment by Nathan Ridley on PInvoke - how to represent a field from a COM interfaceNathan Ridley2009-10-22T12:35:45Z2009-10-22T12:35:45ZCheers, see below.http://stackoverflow.com/questions/1606530/pinvoke-how-to-represent-a-field-from-a-com-interface/1606613#1606613Comment by Nathan Ridley on PInvoke - how to represent a field from a COM interfaceNathan Ridley2009-10-22T12:20:41Z2009-10-22T12:20:41ZI've updated my code above. An exception is thrown.