User Joseph Kingry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T19:43:45Z http://stackoverflow.com/feeds/user/3046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799820/msbuild-and-c 1 MSBuild and C++ Joseph Kingry 2009-11-25T20:41:27Z 2009-11-26T09:02:52Z <p>If I am content to not support incremental builds, and to code everything via Exec tasks, is there any reason I can't build C++ binaries with an MSBuild script?</p> <p>I know VS 2010 will actually have support for a true MSBuild based project file, but what I'm trying to do is to integrate an old embedded VC++ 4.0 workspace into an overall larger automated process. </p> <p>I assume there will be some issues around dependency tracking, but if I'm doing a clean build everytime, is there anything else I should watch out for?</p> http://stackoverflow.com/questions/1790577/net-4-sdk-corrupted-with-silverlight-4-tools-install 0 .NET 4 SDK corrupted? with Silverlight 4 Tools install Joseph Kingry 2009-11-24T14:52:54Z 2009-11-24T16:07:40Z <p>I installed <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=9fa8afe9-cad6-4090-a7f6-7d9cdc560e2d" rel="nofollow">Silverlight 4</a> and now my C# projects that use some of the new .NET 4 classes like <code>System.Threading.Parallel</code> and <code>System.Numerics.BigInteger</code> don't appear to be present. </p> <p>Have tried switching between selected frameworks in the project properties, and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9f5e8774-c8dc-4ff6-8285-03a4c387c0db&amp;displaylang=en" rel="nofollow">downloading</a> and running repair on the .NET 4 SDK, but didn't resolve the issue.</p> <p>Edit: Project act's like it's being compiled with .NET 3.5 SDK. </p> http://stackoverflow.com/questions/1790577/net-4-sdk-corrupted-with-silverlight-4-tools-install/1791072#1791072 0 Answer by Joseph Kingry for .NET 4 SDK corrupted? with Silverlight 4 Tools install Joseph Kingry 2009-11-24T16:07:40Z 2009-11-24T16:07:40Z <p>Reboot apparently fixed the issue after the repair.</p> http://stackoverflow.com/questions/1125528/how-to-send-udp-multicast-packets-through-silverlight/1757940#1757940 0 Answer by Joseph Kingry for How to send UDP multicast packets through Silverlight? Joseph Kingry 2009-11-18T18:06:52Z 2009-11-18T18:06:52Z <p>Silverlight 4 will support UDP</p> http://stackoverflow.com/questions/1545973/net-zlib-stream-compatible-with-actionscript-bytearray-uncompress 3 .NET zlib Stream compatible with Actionscript ByteArray.uncompress Joseph Kingry 2009-10-09T20:47:11Z 2009-10-14T08:46:42Z <p>I can't seem to get a stream that Flex 3 want's to decompress.</p> <p>I've tried:</p> <ul> <li>System.IO.Compression.GZipStream</li> <li>System.IO.Compression.DeflateStream</li> <li>ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream</li> <li>zlib.ZOutputStream</li> </ul> <p>None of these seem to make <code>ByteArray.uncompress</code> happy, i.e. I get</p> <blockquote> <p>Error #2058: There was an error decompressing the data.</p> </blockquote> <p>Also the whole Deflate vs zlib has me going around in circles. </p> <p>It seems that according to the <a href="http://en.wikipedia.org/wiki/DEFLATE" rel="nofollow">wikipedia</a> article, zlib is an implementation of DEFLATE. But according to <a href="http://74.125.93.132/search?q=cache%3AtqrlfrJ8k94J%3Alivedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/CompressionAlgorithm.html+deflate+versus+zlib+actionscript&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=ca" rel="nofollow">Actionscript</a> they are two different things? </p> <p>Microsoft also seems to indicate the Gzip at least uses the Deflate algorithm, as in their docs they refer that <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx" rel="nofollow">GZipOutputStream</a> uses the same compression algorithm as <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx" rel="nofollow">DeflateStream</a>. So I'm assuming that it's just a header difference, which would indicate that's "no good" as far as 'ByteArray.uncompress' as the "DEFLATE" algorithm is only supported in AIR applications.</p> <p>Sample "server" code, using SharpZipLib in this case (not working):</p> <pre><code> public virtual bool ProcessRequest(string path, HttpListenerContext context) { var buffer = File.ReadAllBytes(path); // Specifying to strip header/footer from data as that seems to be what the // docs for ByteArray.uncompress indicate is necessary var deflater = new Deflater(Deflater.DEFAULT_COMPRESSION, true); using (var zipStream = new DeflaterOutputStream(context.Response.OutputStream, deflater)) { zipStream.Write(buffer, 0, buffer.Length); } } </code></pre> http://stackoverflow.com/questions/1397004/better-seeds-than-time0/1397058#1397058 2 Answer by Joseph Kingry for Better seeds than time(0)? Joseph Kingry 2009-09-09T00:43:32Z 2009-09-09T00:43:32Z <p>There is a web service that offers free and paid "true" random bits generated from atmospheric noise: <a href="http://www.random.org/" rel="nofollow">http://www.random.org/</a></p> <p>Wired ran an article on two guys who used basically the noise from a webcam CCD chip to generate random numbers: <a href="http://www.wired.com/wired/archive/11.08/random.html" rel="nofollow">http://www.wired.com/wired/archive/11.08/random.html</a></p> http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1374997#1374997 0 Answer by Joseph Kingry for Why are database features being ignored, and instead reinvented in the middle tier? Joseph Kingry 2009-09-03T18:04:11Z 2009-09-03T18:04:11Z <p>One concern I have seen with leveraging increased database functionality is scaling. It seems to be a much more difficult proposition to scale your database load vs web/application server load. </p> <p>Your options are limited, scaling-up with bigger faster hardware (with sometimes much higher licensing costs), or complicated, scaling-out with read-only copies, etc.</p> <p>If there are performance issues, I want them to be at the web server application level. At least then one of my options is to add another web server and distribute load. </p> <p>I am not arguing against database level code to minimize the amount of network traffic (records) sent between the web server and database server. I am arguing against other features, eg. extensive business logic processing at the database level. </p> http://stackoverflow.com/questions/1330507/best-c-solution-for-multithreaded-threadsafe-read-write-locking/1334830#1334830 1 Answer by Joseph Kingry for Best C# solution for multithreaded threadsafe read/write locking? Joseph Kingry 2009-08-26T13:50:07Z 2009-08-29T01:23:09Z <h2>Small Values</h2> <p>For small values (basically any field that can be declared volatile), you can do the following:</p> <pre><code>private static volatile int backingField; public static int Field { get { return backingField; } set { backingField = value; } } </code></pre> <h2>Large Values</h2> <p>With large values the assignment won't be atomic if the value is larger then 32-bits on a 32-bit machine or 64-bits on a 64-bit machine. See the <a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-335.pdf#12.6.6" rel="nofollow">ECMA 335 12.6.6</a> spec. So for reference types and most of the built-in value types the assignment is atomic, however if you have some large struct, like:</p> <pre><code>struct BigStruct { public long value1, valuea0a, valuea0b, valuea0c, valuea0d, valuea0e; public long value2, valuea0f, valuea0g, valuea0h, valuea0i, valuea0j; public long value3; } </code></pre> <p>In this case you will need some kind of locking around the get accessor. You could use <a href="http://msdn.microsoft.com/en-us/library/system.threading.readerwriterlockslim.aspx" rel="nofollow"><code>ReaderWriterLockSlim</code></a> for this which I've demonstrated below. Joe Duffy has <a href="http://www.bluebytesoftware.com/blog/2007/02/07/IntroducingTheNewReaderWriterLockSlimInOrcas.aspx" rel="nofollow" title="Introducing the new ReaderWriterLockSlim in Orcas">advice</a> on using <code>ReaderWriterLockSlim</code> vs <code>ReaderWriterLock</code>:</p> <pre><code> private static BigStruct notSafeField; private static readonly ReaderWriterLockSlim slimLock = new ReaderWriterLockSlim(); public static BigStruct Safe { get { var returnValue; slimLock.EnterReadLock(); returnValue = notSafeField; slimLock.ExitReadLock(); return returnValue; } set { slimLock.EnterWriteLock(); notSafeField = value; slimLock.ExitWriteLock(); } } </code></pre> <p><hr /></p> <p><strong>Unsafe Get-Accessor Demonstration</strong></p> <p>Here's the code I used to show the lack of atomicity when not using a lock in the get-accessor:</p> <pre><code> private static readonly object mutexLock = new object(); private static BigStruct notSafeField; public static BigStruct NotSafe { get { // this operation is not atomic and not safe return notSafeField; } set { lock (mutexLock) { notSafeField = value; } } } public static void Main(string[] args) { var t = new Thread(() =&gt; { while (true) { var current = NotSafe; if (current.value2 != (current.value1 * 2) || current.value3 != (current.value1 * 5)) { throw new Exception(String.Format("{0},{1},{2}", current.value1, current.value2, current.value3)); } } }); t.Start(); for(int i=0; i&lt;50; ++i) { var w = new Thread((state) =&gt; { while(true) { var index = (int) state; var newvalue = new BigStruct(); newvalue.value1 = index; newvalue.value2 = index * 2; newvalue.value3 = index * 5; NotSafe = newvalue; } }); w.Start(i); } Console.ReadLine(); } </code></pre> http://stackoverflow.com/questions/1336709/how-do-you-close-tcp-connections-gracefully-without-exceptions/1337198#1337198 0 Answer by Joseph Kingry for How do you close TCP connections gracefully without exceptions? Joseph Kingry 2009-08-26T20:16:00Z 2009-08-26T20:34:33Z <p>I modified my code for <code>Channel</code> to use <code>Socket.Shutdown</code> and to use asynchronous reads. This seems to be the minimum required. Basically graceful shutdown looks like this:</p> <p><strong>Originator</strong> - the side of the connection requesting the "quit"</p> <p><strong>Receiver</strong> - the side of the connection receiving the "quit"</p> <ol> <li><strong>Originator-Send</strong> calls <code>Socket.Shutdown(SocketShutdown.Send)</code> and waits for <strong>Originator-Read</strong> to signal.</li> <li>This will cause <strong>Receiver-Read</strong> <code>NetworkStream.EndRead(result)</code> to return 0</li> <li><strong>Receive-Readr</strong> closes the connection.</li> <li>This will cause <strong>Originator-Read</strong> <code>NetworkStream.EndRead(result)</code> to return 0</li> <li><strong>Originator-Read</strong> closes the connection and signals <strong>Originator-Send</strong>.</li> <li><strong>Originator-Send</strong> quits</li> <li>Next request to write on <strong>Receiver-Send</strong> recognizes connection is closed and exits.</li> </ol> <pre> public class Channel { private readonly TcpClient client; private readonly NetworkStream stream; private readonly TextReader reader; private readonly TextWriter writer; private readonly string name; private readonly ManualResetEvent quit = new ManualResetEvent(false); public Channel(string name, TcpClient client) { this.name = name; this.client = client; stream = client.GetStream(); writer = new StreamWriter(stream, Encoding.ASCII); } public void Run() { Console.WriteLine(name + ": connected"); byte[] buffer = new byte[client.Client.ReceiveBufferSize]; stream.BeginRead(buffer, 0, buffer.Length, this.Read, buffer); while (true) { var line = Console.ReadLine(); if (String.IsNullOrEmpty(line) || !this.client.Connected) break; writer.WriteLine(line); writer.Flush(); } Console.WriteLine(name + " quitting"); if (client.Connected) { client.Client.Shutdown(SocketShutdown.Send); Console.WriteLine(name + " send shutdown, waiting for read to shutdown."); quit.WaitOne(); } Console.WriteLine(name + " quit, press key to continue."); Console.ReadKey(); } private void Read(IAsyncResult result) { var read = this.stream.EndRead(result); if (read == 0) { Console.WriteLine(name + " read stopped"); this.client.Close(); this.quit.Set(); return; } var buffer = (byte[])result.AsyncState; Console.WriteLine(name + " recieved:" + Encoding.ASCII.GetString(buffer, 0, read)); stream.BeginRead(buffer, 0, buffer.Length, this.Read, buffer); } } </pre> http://stackoverflow.com/questions/1336709/how-do-you-close-tcp-connections-gracefully-without-exceptions 0 How do you close TCP connections gracefully without exceptions? Joseph Kingry 2009-08-26T18:43:50Z 2009-08-26T20:34:33Z <p>What is the pattern and/or how would you change the following code so that a connection can be closed gracefully from either server or client, without needing exception handling.</p> <ol> <li><p><strong>TcpClient vs. Socket:</strong> I'm not tied to using the TcpClient client class. I wrote the following code to try to demonstrate the simplest case possible. I had been using a Socket &amp; SocketAsyncEventArgs but things were getting too complicated dealing with this issue. </p></li> <li><p><strong>Blocking vs. Asynchronous:</strong> Because of the blocking calls this may be difficult or impossible. If so, that's fine, but how do you solve it in the asynchronous case?</p></li> <li><p><strong>Quit Token?:</strong> I've experimented with sending some kind of "Quit" token to other side so that it knows to shutdown, but haven't gotten it working and I wanted to present a minimal example here. </p></li> <li><p><strong>Exception Handling Needed Anyways:</strong> I know exception handling will be necessary in the <em>real</em> application as network connections etc will fail. But can not the <strong>expected</strong> case of a graceful shutdown be handled without exceptions??</p></li> </ol> <p><strong>Edit:</strong> Please note the following code <strong>will throw an exception</strong> when either side closes the connection. I am looking for a (likely application level) pattern to <em>avoid throwing an exception entirely</em> if either side "quits". </p> <p><hr /></p> <p><strong>Channel</strong></p> <pre><code>using System; using System.IO; using System.Net.Sockets; using System.Text; using System.Threading; public class Channel { private readonly TcpClient client; private readonly NetworkStream stream; private readonly TextReader reader; private readonly TextWriter writer; private readonly string name; public Channel(string name, TcpClient client) { SocketAsyncEventArgs this.name = name; this.client = client; stream = client.GetStream(); stream.ReadTimeout = 1000; reader = new StreamReader(stream, Encoding.ASCII); writer = new StreamWriter(stream, Encoding.ASCII); } public void Run() { Console.WriteLine(name + ": connected"); Thread readThread = new Thread(Read); readThread.Start(); while (true) { var line = Console.ReadLine(); if (String.IsNullOrEmpty(line)) break; writer.WriteLine(line); writer.Flush(); } Console.WriteLine(name + " quitting"); stream.Flush(); client.Close(); } private void Read() { while (true) { var line = reader.ReadLine(); Console.WriteLine(name + " recieved: " + line); } } } </code></pre> <p><hr /></p> <p><strong>Server</strong></p> <pre><code>class Server { static void Main(string[] args) { TcpListener listener = new TcpListener(IPAddress.Loopback, 5000); listener.Start(); Console.WriteLine("server: listener started"); var channel = new Channel("server", listener.AcceptTcpClient()); channel.Run(); listener.Stop(); } } </code></pre> <p><hr /></p> <p><strong>Client</strong></p> <pre><code>class Client { static void Main(string[] args) { TcpClient client = new TcpClient(AddressFamily.InterNetwork); Console.WriteLine("client: created, press key to connect"); Console.ReadKey(); client.Connect(IPAddress.Loopback, 5000); var channel = new Channel("client", client); channel.Run(); } } </code></pre> http://stackoverflow.com/questions/321827/serializing-anonymous-delegates-in-c 9 Serializing anonymous delegates in C# Joseph Kingry 2008-11-26T19:14:34Z 2009-08-21T01:02:02Z <p>I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas. </p> <pre><code>// see http://msdn.microsoft.com/msdnmag/issues/02/09/net/#S3 class NonSerializableSurrogate : ISerializationSurrogate { public void GetObjectData(object obj, SerializationInfo info, StreamingContext context) { foreach (FieldInfo f in obj.GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic)) info.AddValue(f.Name, f.GetValue(obj)); } public object SetObjectData(object obj, SerializationInfo info, StreamingContext context, ISurrogateSelector selector) { foreach (FieldInfo f in obj.GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic)) f.SetValue(obj, info.GetValue(f.Name, f.FieldType)); return obj; } } </code></pre> <p><strong>Listing 1</strong> <em>adapted from</em> <a href="http://www.agilekiwi.com/dotnet/CountingDemo.cs" rel="nofollow">Counting Demo</a></p> <p>The main issue I can think of that might be a problem is that the anonymous class is an internal compiler detail and it's structure is not guaranteed to remain constant between revisions to the .NET Framework. I'm fairly certain this is the case based on my research into the similar problem with iterators.</p> <h2>Background</h2> <p>I am investigating the serialization of anonymous functions. I was expecting this not to work, but found it did for some cases. As long as the lambda did *not&amp; force the compiler to generate an anonymous class everything works fine. </p> <p>A SerializationException is thrown if the compiler requires a generated class to implement the anonymous function. This is because the compiler generated class is not marked as serializable.</p> <h2>Example</h2> <pre><code>namespace Example { [Serializable] class Other { public int Value; } [Serializable] class Program { static void Main(string[] args) { MemoryStream m = new MemoryStream(); BinaryFormatter f = new BinaryFormatter(); // Example 1 Func&lt;int&gt; succeeds = () =&gt; 5; f.Serialize(m, succeeds); // Example 2 Other o = new Other(); Func&lt;int&gt; fails = () =&gt; o.Value; f.Serialize(m, fails); // throws SerializationException - Type 'Example.Program+&lt;&gt;c__DisplayClass3' in Assembly 'Example, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable. } } </code></pre> <p><strong>Listing 2</strong></p> <p>This is similar to the issue of trying to serialize <em>iterators</em> and I had found the following code in a previous search (see [countingdemo]) Using the code from <strong>Listing 1</strong> and an ISurrogateSelector I was able to successfully serialize and deserialize the second failing example.</p> <h2>Objective</h2> <p>I have a system that is exposed via a web service. The system has a complex but small state (many objects, not a lot of properties per object). The state is saved in the ASP.NET Cache, but is also serialized to a BLOB in SQL in case of cache expiration. Some objects need to execute arbitrary "events" upon reaching some condition. Hence they have properties accepting Action/Func objects. Contrived example:</p> <pre><code> class Command { public Command(Action action, Func&lt;bool&gt; condition); } </code></pre> <p>Somewhere else</p> <pre><code> void DoSomethingWithThing(Thing thing) { state = Store.GetCurrentState(); Command cmd = new Command(() =&gt; thing.Foo(), () =&gt; thing.IsReady()) state.Add(cmd); Store.Save(state); } </code></pre> http://stackoverflow.com/questions/321827/serializing-anonymous-delegates-in-c/335592#335592 0 Answer by Joseph Kingry for Serializing anonymous delegates in C# Joseph Kingry 2008-12-02T21:50:04Z 2009-08-21T01:02:02Z <p>A function map would prevent me from using local state in the action/conditions. The only way around this would work would be to create a class per function that required additional state. </p> <p>This is what the C# compiler is doing automatically for me with anonymous functions. My issue is the serialization of these compiler classes.</p> <pre><code> Other o = FromSomeWhere(); Thing t = OtherPlace(); target.OnWhatever = () =&gt; t.DoFoo() + o.DoBar(); target.Save();c </code></pre> <p>Trying to serialize that would fail. Since this state is local though that leads to issues when trying to setup a mapping. Instead I'd have to declare something like this:</p> <pre><code>[Serializable] abstract class Command&lt;T&gt; { public abstract T Run(); } class DoFooBar : Command&lt;int&gt; { public Other Other { get; set; } public Thing Thing { get; set; } public override int Run() { return Thing.DoFoo() + Other.DoBar(); } } </code></pre> <p>and then use it like this:</p> <pre><code> DoFooBar cmd = new DoFooBar(); cmd.Other = FromSomewhere(); cmd.Thing = OtherPlace(); target.OnWhatever = cmd.Run; target.Save(); </code></pre> <p>Essentially what this means is doing manually what the C# compiler is doing for me automatically. </p> http://stackoverflow.com/questions/540078/wait-for-pooled-threads-to-complete/1131717#1131717 0 Answer by Joseph Kingry for Wait for pooled threads to complete. Joseph Kingry 2009-07-15T14:22:16Z 2009-07-15T14:22:16Z <p>Using .NET 4.0 <a href="http://msdn.microsoft.com/en-us/library/system.threading.barrier%28VS.100%29.aspx" rel="nofollow">Barrie</a>r class:</p> <pre><code> Barrier sync = new Barrier(1); foreach(var o in collection) { WaitCallback worker = (state) =&gt; { // do work sync.SignalAndWait(); }; sync.AddParticipant(); ThreadPool.QueueUserWorkItem(worker, o); } sync.SignalAndWait(); </code></pre> http://stackoverflow.com/questions/1127632/anonymous-functions-local-variable-hoisting-is-getting-in-the-way 1 Anonymous functions local variable hoisting is getting in the way Joseph Kingry 2009-07-14T20:01:21Z 2009-07-14T20:28:34Z <p>I know that with anonymous functions, local stack variables are promoted to a class, are now on the heap etc. So the following does not work:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; namespace AnonymousFuncTest { class Program { static void Main(string[] args) { foreach (var f in GetFuncs()) { Console.WriteLine(f()); } Console.ReadLine(); } static IEnumerable&lt;Func&lt;int&gt;&gt; GetFuncs() { List&lt;Func&lt;int&gt;&gt; list = new List&lt;Func&lt;int&gt;&gt;(); foreach(var i in Enumerable.Range(1, 20)) { list.Add(delegate() { return i; }); } return list; } } } </code></pre> <p>I know changing GetFuncs to this would work:</p> <pre><code> static IEnumerable&lt;Func&lt;int&gt;&gt; GetFuncs() { foreach(var i in Enumerable.Range(1, 20)) { yield return () =&gt; i; } } </code></pre> <p>But say I'm doing something like the following:</p> <pre><code> foreach (var arg in someArgList) { var item = new ToolStripMenuItem(arg.ToString()); ritem.Click += delegate(object sender, EventArgs e) { new Form(arg).Show(); }; mainMenu.DropDownItems.Add(ritem); } </code></pre> <p>This of course does not have the intended effect. I know why it doesn't work, just need suggestions on how to fix it so it does.</p> http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997436#997436 0 Answer by Joseph Kingry for Database Concurrency Needed when ADDING rows - Best Practice? Joseph Kingry 2009-06-15T17:53:05Z 2009-06-15T18:13:41Z <p>I know your given example is simplified, but to meet those requirements you could do the following. </p> <p>Since the INSERT/SELECT is one statement, it's implicitly in a transaction. If you need to do something that you can't express relationally you'll need to wrap it in an explicit transaction.</p> <p>Primary key ensures no concurrency issues beyond your given default transaction isolation. </p> <pre><code>CREATE TABLE Sequence ( [Name] char(1), [Seq] int PRIMARY KEY (Name, Seq) ) GO CREATE PROCEDURE Sequence_Insert ( @name char(1) ) AS INSERT INTO Sequence(Name, Seq) SELECT @Name, COALESCE(MAX(Seq),0) + 1 FROM Sequence WHERE Name = @Name GO exec Sequence_Insert 'A' exec Sequence_Insert 'A' exec Sequence_Insert 'B' exec Sequence_Insert 'A' exec Sequence_Insert 'C' GO SELECT * FROM Sequence </code></pre> http://stackoverflow.com/questions/916440/third-party-email-senders/940671#940671 0 Answer by Joseph Kingry for Third Party Email Senders Joseph Kingry 2009-06-02T16:56:59Z 2009-06-02T16:56:59Z <p>I have used <a href="http://www.authsmtp.com" rel="nofollow">http://www.authsmtp.com</a> in the past for an SMTP server. This was especially effective when sending from Amazon EC2 instances. It was great to have someone else manage blacklist issues etc. You should be aware of though with their service there is a limit on number of unique "from" addresses used (<a href="http://www.authsmtp.com/auth-smtp/pricing.html" rel="nofollow">upgradeable of course</a>).</p> <p>Very easy to use the standard System.Net.Mail API's and just specify an smtp server in web.config </p> <pre><code> &lt;system.net&gt; &lt;mailSettings&gt; &lt;smtp deliveryMethod="network"&gt; &lt;network host="mail.authsmtp.com" port="2525" defaultCredentials="false" userName="ac55555" password="your-password-here" /&gt; &lt;/smtp&gt; &lt;/mailSettings&gt; &lt;/system.net&gt; </code></pre> http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster 4 Why is inserting into and joining #temp tables faster?? Joseph Kingry 2009-05-28T16:42:23Z 2009-05-29T21:08:22Z <p>I have a query that looks like </p> <pre><code>SELECT P.Column1, P.Column2, P.Column3, ... ( SELECT A.ColumnX, A.ColumnY, ... FROM dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A WHERE A.Key = P.Key FOR XML AUTO, TYPE ), ( SELECT B.ColumnX, B.ColumnY, ... FROM dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B WHERE B.Key = P.Key FOR XML AUTO, TYPE ) FROM ( &lt;joined tables here&gt; ) AS P FOR XML AUTO,ROOT('ROOT') </code></pre> <p>P has ~ 5000 rows A and B ~ 4000 rows each</p> <p>This query has a runtime performance of ~10+ minutes.</p> <p>Changing it to this however:</p> <pre><code>SELECT P.Column1, P.Column2, P.Column3, ... INTO #P SELECT A.ColumnX, A.ColumnY, ... INTO #A FROM dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A SELECT B.ColumnX, B.ColumnY, ... INTO #B FROM dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B SELECT P.Column1, P.Column2, P.Column3, ... ( SELECT A.ColumnX, A.ColumnY, ... FROM #A AS A WHERE A.Key = P.Key FOR XML AUTO, TYPE ), ( SELECT B.ColumnX, B.ColumnY, ... FROM #B AS B WHERE B.Key = P.Key FOR XML AUTO, TYPE ) FROM #P AS P FOR XML AUTO,ROOT('ROOT') </code></pre> <p>Has a performance of ~4 seconds.</p> <p>This makes not a lot of sense, as it would seem the cost to insert into a temp table and then do the join should be higher by default. My inclination is that SQL is doing the wrong type of "join" with the subquery, but maybe I've missed it, there's no way to specify the join type to use with correlated subqueries. </p> <p>Is there a way to achieve this without using #temp tables/@table variables via indexes and/or hints?</p> <p>EDIT: Note that dbo.TableReturningFunc1 and dbo.TableReturningFunc2 are inline TVF's, not multi-statement, or they are "parameterized" view statements.</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/821790#821790 1 Answer by Joseph Kingry for Setting up virtual directory when using IIS for ASP.NET MVC debugging Joseph Kingry 2009-05-04T20:09:32Z 2009-05-04T20:09:32Z <p>Yes you can run an ASP.NET MVC as the root application. </p> <p>Just use IIS manager to set the home directory for the website to the your application's path. </p> <p>Then make the appropriate changes in the "Web" tab of your project settings for MVC in Visual Studio.</p> <p>This is assuming you have windows file permission setup correctly for IIS already.</p> http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines 0 Language that supports serializing coroutines Joseph Kingry 2009-04-09T15:04:47Z 2009-04-09T18:25:44Z <p>I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are:</p> <ol> <li>Declarative/verbose and I find a imperative style much more succinct</li> <li>Heavyweight, I'll have a lot of simple though diverse little state machines</li> </ol> <p>I've investigated <a href="http://stackoverflow.com/questions/321827/serializing-anonymous-delegates-in-c">serializing iterators in C#</a> but that doesn't get me exactly where I want to be. I'm current looking at putting together a DSL in <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a> but not sure if I'll be able to get coroutine-like behaviour into Boo, and be able to serialize it as well. </p> <h2>Example</h2> <p>Here is limited fictional example of what I'd like to do. The main issue is that at any point in a routine you may need to get user input. The time between inputs could be very long so the state of service will need to be serialized to disk. </p> <pre><code> def RunMachine(user) var lever = user.ChooseLever() lever.Pull() var device = CreateDevice(user) machine.Add(device) machine.Run() def CreateDevice(user) var color = user.ChooseColor() var shape = user.ChooseShape() return Device(color, shape) </code></pre> <p>Ideas?</p> http://stackoverflow.com/questions/200476/html-actionlink-method/201341#201341 14 Answer by Joseph Kingry for HTML.ActionLink method Joseph Kingry 2008-10-14T14:19:33Z 2008-10-21T13:44:47Z <p>I think what you want is this:</p> <pre><code>Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID }, null) </code></pre> <p>This uses the following method ActionLink signature:</p> <pre><code>public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object values, object htmlAttributes) </code></pre> <p>This avoids hard-coding any routing logic into the link.</p> <pre><code> &lt;a href="/Item/Login/5"&gt;Title&lt;/a&gt; </code></pre> <p>This will give you the following html output, assmuming:</p> <ol> <li>article.Title = "Title"</li> <li>article.aritcleID = 5</li> <li><p>you still have the following route defined</p> <p>routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </p></li> </ol> http://stackoverflow.com/questions/156035/how-can-you-limit-a-tfs-check-in-notes-to-a-custom-path 1 How can you limit a TFS Check-In notes to a custom path? Joseph Kingry 2008-10-01T02:46:44Z 2008-10-04T09:30:23Z <p>You can limit "Check-In Policy" rules via the "Custom Paths" policy. But the "Check-in Notes" tab doesn't seem to fit in to the same system. Why isn't "Check-In notes" just another "Check-In policy"??</p> <p>I'm using Team Foundation Server 2008 SP1</p> http://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-5 1 How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 Joseph Kingry 2008-08-29T16:49:47Z 2008-09-03T02:31:57Z <p>You'll notice that Preview 5 includes the following in their release notes:</p> <blockquote> <p>Added support for custom model binders. Custom binders allow you to define complex types as parameters to an action method. To use this feature, mark the complex type or the parameter declaration with [ModelBinder(…)].</p> </blockquote> <p>So how do you go about actually using this facility so that I can have something like this work in my Controller:</p> <pre><code>public ActionResult Insert(Contact contact) { if (this.ViewData.ModelState.IsValid) { this.contactService.SaveContact(contact); return this.RedirectToAction("Details", new { id = contact.ID} } } </code></pre> http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions 1 Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? Joseph Kingry 2008-08-26T17:53:56Z 2008-08-29T21:09:42Z <p>In handling a form post I have something like</p> <pre><code> public ActionResult Insert() { Order order = new Order(); BindingHelperExtensions.UpdateFrom(order, this.Request.Form); this.orderService.Save(order); return this.RedirectToAction("Details", new { id = order.ID }); } </code></pre> <p>I am not using explicit parameters in the method as I anticipate having to adapt to variable number of fields etc. and a method with 20+ parameters is not appealing.</p> <p>I suppose my only option here is mock up the whole HttpRequest, equivalent to what Rob Conery has done. Is this a best practice? Hard to tell with a framework which is so new.</p> <p>I've also seen solutions involving using an ActionFilter so that you can transform the above method signature to something like</p> <p>[SomeFilter] public Insert(Contact contact)</p> http://stackoverflow.com/questions/28723/best-way-to-unit-test-asp-net-mvc-action-methods-that-use-bindinghelperextensions/35299#35299 1 Answer by Joseph Kingry for Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom? Joseph Kingry 2008-08-29T21:09:42Z 2008-08-29T21:09:42Z <p>I'm now using <a href="http://beta.stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-aspnet-mvc-preview-5#34725" rel="nofollow">ModelBinder</a> so that my action method can look (basically) like:</p> <pre><code> public ActionResult Insert(Contact contact) { if (this.ViewData.ModelState.IsValid) { this.contactService.SaveContact(contact); return this.RedirectToAction("Details", new { id = contact.ID }); } else { return this.RedirectToAction("Create"); } } </code></pre> http://stackoverflow.com/questions/19746/views-in-separate-assemblies-in-asp-net-mvc/35250#35250 4 Answer by Joseph Kingry for Views in separate assemblies in ASP.NET MVC Joseph Kingry 2008-08-29T20:34:48Z 2008-08-29T20:34:48Z <p>Essentially this is the same issue as people had with WebForms and trying to compile their UserControl ASCX files into a DLL. I found this <a href="http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/ASP2UserControlLibrary.aspx</a> that might work for you too.</p> http://stackoverflow.com/questions/35106/is-there-a-built-in-way-in-net-ajax-to-manually-serialize-an-object-to-a-json-st/35128#35128 4 Answer by Joseph Kingry for Is there a built in way in .Net AJAX to manually serialize an object to a JSON string? Joseph Kingry 2008-08-29T19:37:45Z 2008-08-29T19:37:45Z <p>I think what you're looking for is this class:</p> <p>System.ServiceModel.Web.DataContractJsonSerializer</p> <p>Here's an example from Rick Strahl: <a href="http://www.west-wind.com/WebLog/posts/218001.aspx" rel="nofollow">DataContractJsonSerializer in .NET 3.5</a></p> http://stackoverflow.com/questions/34708/how-can-i-generate-a-unique-small-random-and-user-friendly-key/34757#34757 0 Answer by Joseph Kingry for How can I generate a unique, small, random, and user-friendly key? Joseph Kingry 2008-08-29T17:07:09Z 2008-08-29T17:07:09Z <p>If by user friendly, you mean that a user could type the answer in then I think you would want to look in a different direction. I've seen and done implementations for initial random passwords that pick random words and numbers as an easier and less error prone string. </p> <p>If though you're looking for a way to encode a random code in the URL string which is an issue I've dealt with for awhile then I what I have done is use 64-bit encoded GUIDs.</p> http://stackoverflow.com/questions/34709/how-do-you-use-the-new-modelbinder-classes-in-asp-net-mvc-preview-5/34725#34725 2 Answer by Joseph Kingry for How do you use the new ModelBinder classes in ASP.NET MVC Preview 5 Joseph Kingry 2008-08-29T16:55:37Z 2008-08-29T16:55:37Z <p>Well I looked into this. ASP.NET provides a common location for registering the implementation of IControlBinders. They also have the basics of this working via the new Controller.UpdateModel method. </p> <p>So I essentially combined these two concepts by creating an implementation of IModelBinder that does the same thing as Controller.UpdateModel for all public properties of the modelClass.</p> <pre><code>public class ModelBinder : IModelBinder { public object GetValue(ControllerContext controllerContext, string modelName, Type modelType, ModelStateDictionary modelState) { object model = Activator.CreateInstance(modelType); PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(model); foreach (PropertyDescriptor descriptor in properties) { string key = modelName + "." + descriptor.Name; object value = ModelBinders.GetBinder(descriptor.PropertyType).GetValue(controllerContext, key, descriptor.PropertyType, modelState); if (value != null) { try { descriptor.SetValue(model, value); continue; } catch { string errorMessage = String.Format("The value '{0}' is invalid for property '{1}'.", value, key); string attemptedValue = Convert.ToString(value); modelState.AddModelError(key, attemptedValue, errorMessage); } } } return model; } } </code></pre> <p>In your Global.asax.cs you'd need to add something like this:</p> <pre><code> protected void Application_Start() { ModelBinders.Binders.Add(typeof(Contact), new ModelBinder()); </code></pre> http://stackoverflow.com/questions/1799820/msbuild-and-c/1799865#1799865 Comment by Joseph Kingry on MSBuild and C++ Joseph Kingry 2009-11-25T21:06:23Z 2009-11-25T21:06:23Z I would be more interested in the the MSBuild file itself, unless it is just the project/solution file format from XNA http://stackoverflow.com/questions/189988/inline-class-instantiation-in-php-for-ease-of-method-chaining/190052#190052 Comment by Joseph Kingry on "Inline" Class Instantiation in PHP? (For Ease of Method Chaining) Joseph Kingry 2009-11-20T04:08:53Z 2009-11-20T04:08:53Z Well at least I now have confirmation that you can't do this. Can you point me to where in the PHP language reference that says why you can't do this? Argh. http://stackoverflow.com/questions/1086539/assigning-the-return-value-of-new-by-reference-is-deprecated/1086559#1086559 Comment by Joseph Kingry on Assigning the return value of new by reference is deprecated Joseph Kingry 2009-11-19T15:54:31Z 2009-11-19T15:54:31Z manual page link is dead http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/148866#148866 Comment by Joseph Kingry on What is the opposite of 'parse'? Joseph Kingry 2009-10-20T20:08:35Z 2009-10-20T20:08:35Z made my previous comment before seeing that the question was language-agnostic. ToString() seems to be the accepted standard by .NET http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/148866#148866 Comment by Joseph Kingry on What is the opposite of 'parse'? Joseph Kingry 2009-10-20T20:06:54Z 2009-10-20T20:06:54Z err.. why not ToString() ? Seems to be the standard set by the likes of Int32, etc http://stackoverflow.com/questions/1545973/net-zlib-stream-compatible-with-actionscript-bytearray-uncompress/1556075#1556075 Comment by Joseph Kingry on .NET zlib Stream compatible with Actionscript ByteArray.uncompress Joseph Kingry 2009-10-13T07:59:26Z 2009-10-13T07:59:26Z DEFLATE only works in Air applications, which won't work for my scenario. http://stackoverflow.com/questions/1545973/net-zlib-stream-compatible-with-actionscript-bytearray-uncompress/1552497#1552497 Comment by Joseph Kingry on .NET zlib Stream compatible with Actionscript ByteArray.uncompress Joseph Kingry 2009-10-12T18:08:28Z 2009-10-12T18:08:28Z ZlibStream in DotNetZip worked. Thanks! http://stackoverflow.com/questions/1545973/net-zlib-stream-compatible-with-actionscript-bytearray-uncompress Comment by Joseph Kingry on .NET zlib Stream compatible with Actionscript ByteArray.uncompress Joseph Kingry 2009-10-12T00:29:47Z 2009-10-12T00:29:47Z Nope, having got frustrated with the issue I left it for the night. I'm going to try to repro the simplest case possible to see if something else isn't wrong. http://stackoverflow.com/questions/1330507/best-c-solution-for-multithreaded-threadsafe-read-write-locking/1330551#1330551 Comment by Joseph Kingry on Best C# solution for multithreaded threadsafe read/write locking? Joseph Kingry 2009-08-31T15:13:35Z 2009-08-31T15:13:35Z As stated in comments to Andrew Hare's answer, the lock here isn't doing anything given an int-valued field. http://stackoverflow.com/questions/1330507/best-c-solution-for-multithreaded-threadsafe-read-write-locking/1330523#1330523 Comment by Joseph Kingry on Best C# solution for multithreaded threadsafe read/write locking? Joseph Kingry 2009-08-28T14:06:40Z 2009-08-28T14:06:40Z In fact, for small value types I don't think you even need the lock statement, just mark the backing field as volatile http://stackoverflow.com/questions/1336709/how-do-you-close-tcp-connections-gracefully-without-exceptions/1336832#1336832 Comment by Joseph Kingry on How do you close TCP connections gracefully without exceptions? Joseph Kingry 2009-08-26T19:07:48Z 2009-08-26T19:07:48Z The current example above will throw an exception if one side closes the connection. The using will not trap the exception. Regardless, I am looking for a way to avoid throwing an exception entirely during a graceful shutdown. http://stackoverflow.com/questions/1330507/best-c-solution-for-multithreaded-threadsafe-read-write-locking/1330523#1330523 Comment by Joseph Kingry on Best C# solution for multithreaded threadsafe read/write locking? Joseph Kingry 2009-08-26T13:32:58Z 2009-08-26T13:32:58Z There needs to be a get lock if you are dealing with value types that are larger then 32-bits. http://stackoverflow.com/questions/1127632/anonymous-functions-local-variable-hoisting-is-getting-in-the-way/1127666#1127666 Comment by Joseph Kingry on Anonymous functions local variable hoisting is getting in the way Joseph Kingry 2009-07-14T20:15:16Z 2009-07-14T20:15:16Z Thank you Mr. Skeet, informative as always. Because ultimately I need the anonymous function as an event handler I will be going with the local variable route, can't use the LINQ alternative. http://stackoverflow.com/questions/997363/database-concurrency-needed-when-adding-rows-best-practice/997439#997439 Comment by Joseph Kingry on Database Concurrency Needed when ADDING rows - Best Practice? Joseph Kingry 2009-06-15T18:16:12Z 2009-06-15T18:16:12Z Why not just &quot;INSERT t1(i) SELECT MAX(i) + 1 FROM t1&quot; Of course you need to work into this the whole second part of the key (A,B,etc from the question) http://stackoverflow.com/questions/940440/page-load-or-page-init/940452#940452 Comment by Joseph Kingry on page load() or page init() Joseph Kingry 2009-06-02T16:47:21Z 2009-06-02T16:47:21Z Any guidance though on best practice? With so many events to choose from initially it seems like there's no clear best choice. In particular PreRender vs. control DataBinding event handler. Argh, thank goodness for MVC