User James Newton-King - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T10:38:22Zhttp://stackoverflow.com/feeds/user/11829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878093/adding-a-custom-file-format-to-the-word-2007-save-as-dialog1Adding a custom file format to the Word 2007 save as dialogJames Newton-King2009-12-10T01:21:12Z2009-12-10T01:42:08Z
<p>I want to add the option to export to a new file format in Word 2007. Ideally it would be nice if the option could be another file format in the Word 2007 Save As dialog that the user could select in the file format dropdown box.</p>
<p>Although I have a lot of .NET experience I haven't done much development for MS Office. At a high level what should I look at to add another save as format to Word 2007 using .NET?</p>
http://stackoverflow.com/questions/1698175/what-is-the-json-net-equivilant-of-xmls-xpath-selectnodes-selectsinglenode/1711407#17114071Answer by James Newton-King for What is the JSON.NET equivilant of XML's XPath, SelectNodes, SelectSingleNode?James Newton-King2009-11-10T21:38:02Z2009-11-12T11:57:01Z<p>It hasn't been released yet but the latest version of the Json.NET source code has SelectToken. It uses a syntax similar to DataBinder.Eval to get JSON via a string expression:</p>
<pre><code>JObject o = JObject.Parse("{'People':[{'Name':'Jeff'},{'Name':'Joe'}]}");
// get name token of first person and convert to a string
string name = (string)o.SelectToken("People[0].Name");
</code></pre>
<p>Or if you wanted to select multiple values:</p>
<pre><code>JObject o = JObject.Parse("{'People':[{'Name':'Jeff','Roles':['Manager', 'Admin']}]}");
// get role array token of first person and convert to a list of strings
IList<string> names = (string)o.SelectToken("People[0].Roles").Select(t => (string)t).ToList();
</code></pre>
<p>You can get the latest source code <a href="http://json.codeplex.com/SourceControl/ListDownloadableCommits.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/171514/best-ide-for-powershell8Best IDE for Powershell?James Newton-King2008-10-05T04:52:05Z2009-11-06T15:49:18Z
<p>What are the different IDE's for PowerShell? Which is the best?</p>
http://stackoverflow.com/questions/1587378/net-compact-framework-sdk-download0.NET Compact Framework SDK downloadJames Newton-King2009-10-19T07:34:49Z2009-10-21T12:18:14Z
<p>Where can I find the .NET Compact Framework SDK for developing Compact Framework applications in Visual Studio?</p>
http://stackoverflow.com/questions/155436/unit-test-naming-best-practices6Unit test naming best practices?James Newton-King2008-09-30T22:44:28Z2009-10-20T11:47:58Z
<p><strong>What are the best practices for naming unit test classes and test methods?</strong></p>
<p><a href="http://stackoverflow.com/questions/96297/naming-conventions-for-unit-tests">Previously</a></p>
<blockquote>
<p>I don't know if this is a very good approach but currently in my testing projects I
have a one to one mapping between a
class and a test class, e.g. <code>Product</code>
and <code>ProductTest</code></p>
<p>In my test classes I then have methods
with the name of the method I am
testing, an underscore, and then the
situation and what I expect to happen,
e.g.
<code>Save_ShouldThrowExceptionWithNullName()</code></p>
</blockquote>
http://stackoverflow.com/questions/1587406/tojson-rails-similar-function-for-asp-net-mvc-net/1587811#15878110Answer by James Newton-King for to_json (rails ) similar function for ASP.NET MVC / .NETJames Newton-King2009-10-19T09:49:17Z2009-10-19T09:49:17Z<p>With Json.NET you can place [JsonIgnore] attributes on properties you don't want serialized.</p>
http://stackoverflow.com/questions/1553795/json-net-problem-with-jsonconvert-deserializeobject/1580867#15808671Answer by James Newton-King for JSON.net problem with JsonConvert.DeserializeObjectJames Newton-King2009-10-16T23:16:55Z2009-10-16T23:16:55Z<p>By default a class serializes to a JSON object where the properties on the class become properties on the JSON object.</p>
<pre><code>{
Name: "seq",
TorrentsInLabel: 1
}
</code></pre>
<p>You are trying to serialize it to an array which isn't how the Json.NET serializer works by default.</p>
<p>To get what you want you should create a JsonConverter and read and write the JSON for Label manually to be what you want it to be (an array).</p>
http://stackoverflow.com/questions/1551857/calling-a-store-procedure-with-nhibernate1Calling a store procedure with nHibernateJames Newton-King2009-10-11T21:38:05Z2009-10-11T21:59:10Z
<p>How do you call a stored procedure with nHibernate?</p>
<p>Specifically there are two cases where I am using store procedures: to return a scalar value and to return a set of results mapped to entities.</p>
http://stackoverflow.com/questions/1468584/circular-reference-exception-when-serializing-linq-to-sql-classes/1476555#14765552Answer by James Newton-King for Circular reference exception when serializing LINQ to SQL classesJames Newton-King2009-09-25T10:28:01Z2009-09-25T10:28:01Z<p>The latest version of Json.NET supports serializing circular relationships. Check out <a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Preserving Object References</a> in the help.</p>
http://stackoverflow.com/questions/1387755/can-javascriptserializer-exclude-properties-with-null-default-values/1391088#13910881Answer by James Newton-King for Can JavaScriptSerializer exclude properties with null/default values?James Newton-King2009-09-07T21:55:45Z2009-09-08T09:47:45Z<p><a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Json.NET</a> has options to automatically exclude null or default values.</p>
http://stackoverflow.com/questions/1373492/can-i-deserialize-a-json-string-into-an-object-if-i-only-know-the-parameters-of-t/1381516#13815161Answer by James Newton-King for Can I Deserialize a JSON string into an object if I only know the parameters of the objects' constructor?James Newton-King2009-09-04T20:57:59Z2009-09-04T20:57:59Z<p><a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> supports creating a type via a parametrized constructor provided there is only one constructor and the parameter names match the names of the properties on the JSON object.</p>
http://stackoverflow.com/questions/1272195/c-serialized-json-date-to-ruby/1276030#12760302Answer by James Newton-King for c# serialized JSON date to rubyJames Newton-King2009-08-14T04:25:04Z2009-08-14T04:25:04Z<p>You could use <a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Json.NET</a> to serialize your DTOs instead of the built in .NET JSON serializer. It gives you flexibility over how to serializing dates (i.e. as a constructor, ISO format, etc).</p>
http://stackoverflow.com/questions/1212330/can-i-get-any-terser-with-lambdas/1212362#12123623Answer by James Newton-King for Can I get any terser with lambdas?James Newton-King2009-07-31T12:48:39Z2009-08-01T07:10:22Z<ol>
<li>You could replace the ToList followed by a FindAll with a Where.</li>
<li>A popular standard with lambda parameters in simple statements is a single character. 'node' could be renamed to just 'n'.</li>
<li>Your method could return an IEnumerable instead of a IList. The method caller could then call ToList if required.</li>
</ol>
<p>After:</p>
<pre><code>return _schema.GetAll<Node>().Where(n => n.Type == NodeType.Unmanaged).Cast<Shape>();
</code></pre>
http://stackoverflow.com/questions/1215479/deserializing-variable-type-json-array-using-datacontractjsonserializer/1215529#12155291Answer by James Newton-King for Deserializing variable Type JSON array using DataContractJsonSerializerJames Newton-King2009-08-01T01:03:40Z2009-08-01T01:03:40Z<p>You could use <a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> to do this.</p>
<pre><code>JArray a = JArray.Parse(jsonStr);
</code></pre>
<p>The JArray would contain either strings or nested JArray's depending on the JSON.</p>
http://stackoverflow.com/questions/1207731/how-can-i-deserialize-json-to-a-simple-dictionarystring-string-in-asp-net/1212115#12121151Answer by James Newton-King for How can I deserialize JSON to a simple Dictionary<string,string> in ASP.NET?James Newton-King2009-07-31T11:51:02Z2009-07-31T11:51:02Z<p><a href="http://www.codeplex.com/Json" rel="nofollow">Json.NET</a> does this...</p>
<pre><code>string json = @"{""key1"":""value1"",""key2"":""value2""}";
Dictionary<string, string> values = JsonConvert.DeserializeObject<Dictionary<string, string>>(json);
</code></pre>
http://stackoverflow.com/questions/1100191/javascriptserializer-deserialize-how-to-change-field-names/1112768#11127681Answer by James Newton-King for JavaScriptSerializer.Deserialize - how to change field namesJames Newton-King2009-07-11T02:24:41Z2009-07-11T02:24:41Z<p><a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> will do what you want. It supports reading DataContract/DataMember attributes as well as its own to change the property names. Also there is the StringEnumConverter class for serializing enum values as the name rather than the number.</p>
http://stackoverflow.com/questions/1078879/using-json-serialization-as-a-persistence-mechanism-instead-of-rdb/1089528#10895280Answer by James Newton-King for Using JSON serialization as a persistence mechanism instead of RDBJames Newton-King2009-07-06T22:38:05Z2009-07-06T22:38:05Z<p>The latest version of <a href="http://james.newtonking.com/archive/2009/07/06/json-net-3-5-beta-4-jsonserializer-improvements-part-deux.aspx" rel="nofollow">Json.NET</a> supports <a href="http://james.newtonking.com/projects/json/help/PreserveObjectReferences.html" rel="nofollow">serializing references</a>.</p>
<pre><code>string json = JsonConvert.SerializeObject(people, Formatting.Indented,
new JsonSerializerSettings { PreserveReferencesHandling = PreserveReferencesHandling.Objects });
//[
// {
// "$id": "1",
// "Name": "James",
// "BirthDate": "\/Date(346377600000)\/",
// "LastModified": "\/Date(1235134761000)\/"
// },
// {
// "$ref": "1"
// }
//]
List<Person> deserializedPeople = JsonConvert.DeserializeObject<List<Person>>(json,
new JsonSerializerSettings { PreserveReferencesHandling = PreserveReferencesHandling.Objects });
Console.WriteLine(deserializedPeople.Count);
// 2
Person p1 = deserializedPeople[0];
Person p2 = deserializedPeople[1];
Console.WriteLine(p1.Name);
// James
Console.WriteLine(p2.Name);
// James
bool equal = Object.ReferenceEquals(p1, p2);
// true
</code></pre>
http://stackoverflow.com/questions/1048311/json-net-serialization-pre-and-post-calls/1086340#10863401Answer by James Newton-King for Json.NET serialization pre and post callsJames Newton-King2009-07-06T10:16:13Z2009-07-06T10:16:13Z<p>The latest version of <a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> supports <a href="http://james.newtonking.com/projects/json/help/SerializationCallbacks.html" rel="nofollow">serialization callbacks</a>.</p>
http://stackoverflow.com/questions/183473/is-there-a-library-to-read-json-in-c-on-windows-mobile/1083392#10833921Answer by James Newton-King for Is there a library to read JSON in C# on Windows Mobile?James Newton-King2009-07-05T03:16:23Z2009-07-05T03:16:23Z<p><a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> supports the .NET 3.5 compact framework.</p>
http://stackoverflow.com/questions/1061788/consuming-json-rpc-web-services-in-net/1062373#10623731Answer by James Newton-King for Consuming JSON-RPC web services in .NETJames Newton-King2009-06-30T08:10:52Z2009-06-30T08:10:52Z<p>Check out <a href="http://jayrock.berlios.de/" rel="nofollow">Jayrock</a>.</p>
<blockquote>
<p>Jayrock is a modest and an open source
(LGPL) implementation of JSON and
JSON-RPC for the Microsoft .NET
Framework, including ASP.NET. What can
you do with Jayrock? In a few words,
Jayrock allows clients, typically
JavaScript in web pages, to be able to
call into server-side methods using
JSON as the wire format and JSON-RPC
as the procedure invocation protocol.
The methods can be called
synchronously or asynchronously.</p>
</blockquote>
http://stackoverflow.com/questions/1052771/securing-a-wcf-service-so-that-it-can-only-be-called-by-a-silverlight-application3Securing a WCF service so that it can only be called by a Silverlight applicationJames Newton-King2009-06-27T12:46:28Z2009-06-27T17:00:59Z
<p>I am writing a Silverlight application that will be both reading and writing data to a serverside database via some WCF web services.</p>
<p>What is the best way to secure these web services?</p>
<p>My goal is to make sure the services can't be called by other applications and potentially spammed with requests to add items to the database. Only the Silverlight application needs to be able to access them.</p>
http://stackoverflow.com/questions/408212/best-net-blog-engine13Best .NET blog engineJames Newton-King2009-01-02T22:44:25Z2009-06-25T06:37:21Z
<p>I am thinking about switching my blog away from <a href="http://communityserver.com/" rel="nofollow">Community Server</a> to something that is simpler and focuses more on just being a good blog.</p>
<p>What are the different .NET blogging engines and which one do you recommend?</p>
http://stackoverflow.com/questions/999046/using-json-net-how-would-i-construct-this-json-string/1000748#10007481Answer by James Newton-King for Using json.net, how would I construct this json string?James Newton-King2009-06-16T10:50:11Z2009-06-16T10:50:11Z<p>This will give you a object that you can continue to modify or just do a ToString on if all you want is the JSON text.</p>
<pre><code>JObject o = new JObject();
o["rc"] = new JValue(200);
o["m"] = new JValue("");
o["o"] = new JValue(@"<div class='s1'>
<div class='avatar'>
<a href='asdf'>asdf</a><br />
<strong>0</strong>
</div>
<div class='sl'>
<p>
444444444
</p>
</div>
<div class='clear'>
</div>
</div>");
Console.WriteLine(o.ToString());
</code></pre>
http://stackoverflow.com/questions/509632/which-is-faster-asp-net-mvc-json-or-json-net/937996#9379962Answer by James Newton-King for Which is faster asp.net mvc json or json.net?James Newton-King2009-06-02T05:14:50Z2009-06-02T05:14:50Z<p>There is a performance comparison <a href="http://james.newtonking.com/archive/2008/10/27/json-net-3-5-beta-1-big-performance-improvements-compact-framework-support-and-more.aspx" rel="nofollow">here</a>. ASP.NET MVC uses the JavaScriptSerializer.</p>
<p>Json.NET gives you more control over outputting JSON (especially around dates) and also has the option for printing indented JSON.</p>
http://stackoverflow.com/questions/668488/parsing-json-datetime-from-newtonsofts-json-serializer/929165#9291653Answer by James Newton-King for Parsing JSON DateTime from Newtonsoft's JSON SerializerJames Newton-King2009-05-30T06:26:25Z2009-05-30T06:26:25Z<p>Use one of the JsonConverters that come with Json.NET for working with dates to get a better format. JavaScriptDateTimeConverter will automatically give you a JavaScript date.</p>
<pre><code>public class LogEntry
{
public string Details { get; set; }
public DateTime LogDate { get; set; }
}
[Test]
public void WriteJsonDates()
{
LogEntry entry = new LogEntry
{
LogDate = new DateTime(2009, 2, 15, 0, 0, 0, DateTimeKind.Utc),
Details = "Application started."
};
string defaultJson = JsonConvert.SerializeObject(entry);
// {"Details":"Application started.","LogDate":"\/Date(1234656000000)\/"}
string javascriptJson = JsonConvert.SerializeObject(entry, new JavaScriptDateTimeConverter());
// {"Details":"Application started.","LogDate":new Date(1234656000000)}
string isoJson = JsonConvert.SerializeObject(entry, new IsoDateTimeConverter());
// {"Details":"Application started.","LogDate":"2009-02-15T00:00:00Z"}
}
</code></pre>
http://stackoverflow.com/questions/155422/the-best-way-to-assert-pre-condition-and-post-condition-of-arguments-and-values-i3The best way to assert pre-condition and post-condition of arguments and values in .NET?James Newton-King2008-09-30T22:41:04Z2009-05-21T02:27:52Z
<p>I have been thinking about design by contract lately and I was wondering what people think is the best way to assert pre-condition and post-condition of values in .NET?
i.e. validating argument values to a method.</p>
<p>Some people recommend Debug.Assert while others talk about using an if statement plus throwing an exception. What are the pros and cons of each?</p>
<p>What frameworks are available that you recommend?</p>
http://stackoverflow.com/questions/777455/is-there-a-query-language-for-json/790134#7901341Answer by James Newton-King for Is there a query language for JSON?James Newton-King2009-04-26T02:24:46Z2009-04-26T02:24:46Z<p>If you are using .NET then <a href="http://james.newtonking.com/projects/json-net.aspx" rel="nofollow">Json.NET</a> supports LINQ queries over the top of JSON. This <a href="http://james.newtonking.com/archive/2008/03/02/json-net-2-0-beta-2.aspx" rel="nofollow">post</a> has some examples. It supports filtering, mapping, grouping, etc.</p>
http://stackoverflow.com/questions/197162/ntfs-performance-and-large-volumes-of-files-and-directories7NTFS performance and large volumes of files and directoriesJames Newton-King2008-10-13T10:01:43Z2009-03-25T20:51:07Z
<p>How does Windows with NTFS perform with large volumes of files and directories?</p>
<p>Is there any guidance around limits of files or directories you can place in a single directory before you run into performance problems or other issues? e.g. is a folder with 100,000 folders inside of it an ok thing to do</p>
http://stackoverflow.com/questions/316384/testing-that-a-website-is-using-kerberos-authentication2Testing that a website is using Kerberos authenticationJames Newton-King2008-11-25T04:38:59Z2009-03-03T04:09:28Z
<p>How do you go about checking that an IIS website is successfully using Kerberos and not falling back on NTLM?</p>
http://stackoverflow.com/questions/570689/json-net-how-to-serialize-a-jobject-without-the-formatting/572076#5720761Answer by James Newton-King for Json.Net How to Serialize a JObject without the formatting?James Newton-King2009-02-21T03:27:07Z2009-02-21T03:27:07Z<p>If you pass the object to the SerializeObject method on JavaScriptConvert/JsonConvert (depending upon your version) it will return the JSON without formatting.</p>
http://stackoverflow.com/questions/619120/deserializing-chrome-bookmark-json-data-in-c/619200#619200Comment by James Newton-King on Deserializing Chrome Bookmark JSON Data in C#James Newton-King2009-08-02T22:25:29Z2009-08-02T22:25:29ZA simpler way of doing the same thing is this: JObject o = JObject.Parse(jsonText);http://stackoverflow.com/questions/1212330/can-i-get-any-terser-with-lambdas/1212362#1212362Comment by James Newton-King on Can I get any terser with lambdas?James Newton-King2009-07-31T13:08:07Z2009-07-31T13:08:07ZIs it official? No. However most lambda code examples that come out of Microsoft uses a single character as the parameter name - <a href="http://weblogs.asp.net/scottgu/archive/2007/04/08/new-orcas-language-feature-lambda-expressions.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a> - that book is just one example (although notable in that it is written by the people who decide the standards).http://stackoverflow.com/questions/1212330/can-i-get-any-terser-with-lambdas/1212362#1212362Comment by James Newton-King on Can I get any terser with lambdas?James Newton-King2009-07-31T12:54:45Z2009-07-31T12:54:45ZAll the code examples in the .NET Framework Design Guidelines book that contained lambdas only used a single character for lambda parameter names - <a href="http://blogs.msdn.com/mirceat/archive/2008/03/13/linq-framework-design-guidelines.aspx" rel="nofollow">blogs.msdn.com/mirceat/archive/…</a>http://stackoverflow.com/questions/1056169/serialize-to-json-in-net-2-0/1056171#1056171Comment by James Newton-King on Serialize to JSON in .NET 2.0James Newton-King2009-06-30T08:15:03Z2009-06-30T08:15:03ZJson.NET 1.3 works on .NET 2.0.http://stackoverflow.com/questions/999046/using-json-net-how-would-i-construct-this-json-string/1000748#1000748Comment by James Newton-King on Using json.net, how would I construct this json string?James Newton-King2009-06-16T22:25:26Z2009-06-16T22:25:26Z<a href="http://james.newtonking.com/archive/2008/10/27/json-net-3-5-beta-1-big-performance-improvements-compact-framework-support-and-more.aspx" rel="nofollow">james.newtonking.com/archive/2008/…</a>http://stackoverflow.com/questions/986361/good-net-libraries-for-working-with-json-dataComment by James Newton-King on Good .NET libraries for working with JSON data?James Newton-King2009-06-16T10:55:51Z2009-06-16T10:55:51Z+1 for Json.NET ;)http://stackoverflow.com/questions/998772/linq-to-jsonComment by James Newton-King on LINQ to JSONJames Newton-King2009-06-16T10:53:39Z2009-06-16T10:53:39ZCould you post a stacktrace of your exception? I'm pretty sure that error isn't coming from Json.NET.http://stackoverflow.com/questions/924899/adding-json-net-to-project/924998#924998Comment by James Newton-King on Adding json.net to projectJames Newton-King2009-05-30T02:58:29Z2009-05-30T02:58:29ZJsonReader is abstract. Generally you want to use JsonTextReader.
Using JsonConvert is a great shortcut. It has helper methods which create the reader and writer for you when working with JSON strings.http://stackoverflow.com/questions/846155/json-net-convert-json-string-from-xml-string-to-instance-issueComment by James Newton-King on JSON.Net: Convert JSON string from XML string to instance issueJames Newton-King2009-05-13T07:22:02Z2009-05-13T07:22:02ZOpps I didn't think of comments. I'll add support for handling them in the next release of Json.NET.http://stackoverflow.com/questions/775692/using-system-json-for-non-silverlight-projects/775768#775768Comment by James Newton-King on Using System.Json for non-Silverlight projects?James Newton-King2009-04-26T02:19:42Z2009-04-26T02:19:42ZIt does dynamic data just like System.Json in as well as serializing/deserializing:
JObject o = JObject.Parse("{'first_name':'Jeff', 'age':30}");
Console.WriteLine(o["first_name"]);http://stackoverflow.com/questions/506001/asp-net-mvc-dropdown-with-a-default-empty-option/506030#506030Comment by James Newton-King on ASP.NET MVC dropdown with a default empty optionJames Newton-King2009-02-04T01:44:13Z2009-02-04T01:44:13ZThanks. The parameter name of optionLabel for the default option threw me off :)http://stackoverflow.com/questions/220234/intercepting-an-exception-inside-idisposable-disposeComment by James Newton-King on Intercepting an exception inside IDisposable.DisposeJames Newton-King2008-10-21T09:32:05Z2008-10-21T09:32:05ZI want to write a logging message and it would be nice to know whether the code inside the statement was run successfully or whether it broke out halfway through because of an exception.http://stackoverflow.com/questions/220234/intercepting-an-exception-inside-idisposable-dispose/220249#220249Comment by James Newton-King on Intercepting an exception inside IDisposable.DisposeJames Newton-King2008-10-21T09:29:34Z2008-10-21T09:29:34Z@MikeB You are right the first time.
I want a way to find out about whether an exception was thrown in the code nested inside the using statement. I also want to preserve the nice using syntax since this is for an external API.http://stackoverflow.com/questions/193773/what-are-the-most-important-parts-of-the-net-framework-for-a-beginner/193815#193815Comment by James Newton-King on What are the most important parts of the .Net framework for a beginner?James Newton-King2008-10-11T18:44:22Z2008-10-11T18:44:22ZKnowing how to implement IDisposable isn't for beginners but knowing that it exists and that you should dispose of objects that implement it is.http://stackoverflow.com/questions/106599/what-is-the-most-flexible-serialization-for-net-objects-yet-simple-to-implement/106826#106826Comment by James Newton-King on What is the most flexible serialization for .NET objects, yet simple to implement?James Newton-King2008-09-20T05:15:33Z2008-09-20T05:15:33ZSet the ReferenceLoopHandling property on the JsonSerializer to Ignore.