User spender - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:53:52Z http://stackoverflow.com/feeds/user/14357 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830041/how-to-most-elegantly-iterate-through-parallel-collections-in-c/1830068#1830068 3 Answer by spender for How to most elegantly iterate through parallel collections in C#? spender 2009-12-02T01:10:10Z 2009-12-02T01:18:35Z <p>The mighty Bart de Smet talks about zip functions here:</p> <p><a href="http://community.bartdesmet.net/blogs/bart/archive/2008/11/03/c-4-0-feature-focus-part-3-intermezzo-linq-s-new-zip-operator.aspx" rel="nofollow">http://community.bartdesmet.net/blogs/bart/archive/2008/11/03/c-4-0-feature-focus-part-3-intermezzo-linq-s-new-zip-operator.aspx</a></p> <p>His most elegant solution takes advantage of an overload of select that takes a 2 parameter Func delegate as its parameter.</p> <pre><code>a.Select((t,i)=&gt;new{t,i}); </code></pre> <p>In this example, i simply represents the index of the item being processed. So you can create 2 new enumerables of these anonymous objects and join them on i.</p> <p>Performance-wise, I'd go with a more obvious yielding loop.</p> http://stackoverflow.com/questions/1822499/adding-silverlight-mimetype-using-adsutil/1822533#1822533 0 Answer by spender for Adding Silverlight MimeType using adsutil spender 2009-11-30T21:31:11Z 2009-11-30T21:31:11Z <p>You could always add the MimeType using web.config instead:</p> <pre><code>&lt;configuration&gt; &lt;system.webServer&gt; &lt;staticContent&gt; &lt;mimeMap fileExtension=".xaml" mimeType="application/xaml+xml" /&gt; &lt;mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" /&gt; &lt;mimeMap fileExtension=".xbap" mimeType="application/x-ms-xbap" /&gt; &lt;/staticContent&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1819055/network-load-balancing-nlb-is-it-suitable-for-stateful-asp-net-applications/1819086#1819086 0 Answer by spender for Network Load Balancing (NLB): is it suitable for "stateful" ASP.NET applications? spender 2009-11-30T10:48:12Z 2009-11-30T10:48:12Z <p>Absolutely, yes. There are strategies you can employ to maintain state between servers in your farm. The machineKey settings should be the same for all webservers in your farm so that auth tickets are valid between machines. </p> <p><a href="http://msdn.microsoft.com/en-us/library/ms998288.aspx#paght000007%5Fwebfarmdeploymentconsiderations" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms998288.aspx#paght000007%5Fwebfarmdeploymentconsiderations</a></p> <p>There are a few options for managing session state between your webservers:</p> <p><a href="http://msdn.microsoft.com/en-us/library/z1hkazw7.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/z1hkazw7.aspx</a></p> <p><a href="http://support.microsoft.com/kb/311209" rel="nofollow">http://support.microsoft.com/kb/311209</a></p> http://stackoverflow.com/questions/1818762/html-scraper-to-remove-and-modify-html-pages/1818827#1818827 0 Answer by spender for HTML scraper to remove and modify html pages? spender 2009-11-30T09:49:46Z 2009-11-30T09:49:46Z <p>If you don't trust HTML agility pack, then you can use HTML agility pack to "cast" your HTML into XML, and then attack the problem with LINQ to XML. </p> <p><a href="http://web.archive.org/web/20080719181517/http%3A//vijay.screamingpens.com/archive/2008/05/26/linq-amp-lambda-part-3-html-agility-pack-to-linq.aspx" rel="nofollow">http://web.archive.org/web/20080719181517/http%3A//vijay.screamingpens.com/archive/2008/05/26/linq-amp-lambda-part-3-html-agility-pack-to-linq.aspx</a></p> <p>From there, it should be easy to complete your requirements.</p> <p>Here's an extension method to do just that, reproduced from the archived page above:</p> <pre><code>public static class HtmlDocumentExtensions { public static XDocument ToXDocument(this HtmlDocument document) { using (StringWriter sw = new StringWriter()) { document.OptionOutputAsXml = true; document.Save(sw); return XDocument.Parse(sw.GetStringBuilder().ToString()); } } } </code></pre> http://stackoverflow.com/questions/1813734/asp-net-session-state-server-with-sql-server 0 Asp.net session state server with SQL Server spender 2009-11-28T20:39:38Z 2009-11-28T22:24:13Z <p>We're trying to get session state working using the following web.config line:</p> <pre><code>&lt;sessionState mode="SQLServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="Data Source=dbServer;User ID=stateUser;Password='thepassword'" cookieless="false" timeout="20"/&gt; </code></pre> <p>On dbServer, we've run the following command to set up the ASPState db:</p> <pre><code>aspnet_regsql.exe -S localhost-E -ssadd -sstype p </code></pre> <p>On the webServer, we've started the ASP.Net state service, however, no records show up in tables ASPStateTempApplications or ASPStateTempSessions, and it seems very much like session is still being stored in process.</p> <p>What's wrong? Should the state service be running on the DB server? Does it get installed with IIS, because it's not available on that machine, despite .net 3.5.1 being installed.</p> <p>The IIS logs show no hint of failure. What's wrong?</p> http://stackoverflow.com/questions/1802512/displaying-attributes-in-xml/1802529#1802529 1 Answer by spender for Displaying attributes in XML spender 2009-11-26T09:19:46Z 2009-11-26T09:19:46Z <p>Yes. XML generally ignores whitespace, although you can turn this feature on/off in most XML processors. Within a tag, it makes no difference whatsoever.</p> <p>This is also equivalent:</p> <pre><code>&lt;contents cpid="1" cpnm="1"/&gt; </code></pre> http://stackoverflow.com/questions/1801056/flex-randomly-dropping-connections-to-server/1801084#1801084 2 Answer by spender for Flex randomly dropping connections to server spender 2009-11-26T01:29:47Z 2009-11-26T01:29:47Z <p>I've experienced this problem, stemming from not holding on to a reference to the loading object (<code>URLLoader</code>?), thinking that adding all the correct event listeners to it would be sufficient, once it is set up. It gets garbage collected and fails to complete. The solution was to keep all loading <code>URLLoader</code>s in a rooted collection, like a dictionary, and removing them on completion.</p> <p>Could your problem be related?</p> http://stackoverflow.com/questions/1790810/most-suitable-net-timer-for-a-scheduler 1 Most suitable .net Timer for a scheduler spender 2009-11-24T15:31:10Z 2009-11-24T15:53:36Z <p>We've identified a hotspot in our code using <a href="http://msdn.microsoft.com/en-us/library/microsoft.ccr.core.dispatcherqueue.enqueuetimer.aspx" rel="nofollow">CCR timers</a>. It appears that if we enqueue many thousands of timers that the code suffers terminal slowdown.</p> <p>The fix is to choose the soonest scheduled item and enqueue a timer for this event. When it fires, we repeat. In this way, we're only ever enqueueing one timer interval at a time.</p> <p>What we're finding now is that the SortedList instance which we're using to manage the scheduled items is burning with the weight of the removals from the list.</p> <p>Do all .net timers suffer from the problem of increased CPU usage with the number of items enqueued, or is there one that is more intelligently written.</p> <p>Alternatively, is there a better suited data structure for keeping our scheduled items in ordered fashion, that supports fast insertion and fast removal from the front of the list?</p> http://stackoverflow.com/questions/1785035/when-programming-for-an-hourly-rate-should-you-keep-the-timer-running-while-proc/1785050#1785050 2 Answer by spender for When programming for an hourly rate, should you keep the timer running while processing code automatically in the background? spender 2009-11-23T18:27:33Z 2009-11-23T18:27:33Z <p>Absolutely yes, unless it's a task that can be left to out of hours times.</p> http://stackoverflow.com/questions/1780384/should-if-statement-always-have-an-else-clause/1780417#1780417 2 Answer by spender for Should 'if' statement always have an 'else' clause? spender 2009-11-22T23:33:01Z 2009-11-22T23:33:01Z <p>Requiring an <code>else</code> stinks. Use it when needed. All programmers understand the construct and the implication of a missing <code>else</code>. It's like a pointless comment that echoes the code. It's plain daft IMO.</p> http://stackoverflow.com/questions/1759662/text-shadow-in-ie-alternatives/1759707#1759707 0 Answer by spender for Text shadow in IE, alternatives spender 2009-11-18T22:48:55Z 2009-11-18T22:55:05Z <p>I think that here, with your core requirements, Flash is your best best. I'm not sure if SIFR supports shadow, but that's worth looking into.</p> <p>It's certainly a cheaper burden on your users than forcing Chrome frame.</p> <p>EDIT:</p> <p>Looks like SIFR is quite flexible on this front:</p> <p><a href="http://fortysevenmedia.com/blog/archives/sifr%5F3%5Fhard%5Fdrop%5Fshadows/" rel="nofollow">http://fortysevenmedia.com/blog/archives/sifr%5F3%5Fhard%5Fdrop%5Fshadows/</a></p> <p>Even more promising, unless I'm mistaken, it looks like it may be supported in IE:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms533086%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms533086%28VS.85%29.aspx</a></p> <p>so:</p> <pre><code>.className { filter:progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45); } </code></pre> http://stackoverflow.com/questions/1704121/flex-flash-shoutcast-player/1759614#1759614 0 Answer by spender for Flex/Flash Shoutcast player spender 2009-11-18T22:28:58Z 2009-11-18T22:28:58Z <p>I just posted a solution on this thread:</p> <p><a href="http://stackoverflow.com/questions/1273454/how-to-stream-a-shoutcast-radio-broadcast-in-flash-shoutcast-flash-player">http://stackoverflow.com/questions/1273454/how-to-stream-a-shoutcast-radio-broadcast-in-flash-shoutcast-flash-player</a></p> http://stackoverflow.com/questions/1273454/how-to-stream-a-shoutcast-radio-broadcast-in-flash-shoutcast-flash-player/1759607#1759607 1 Answer by spender for How to stream a shoutcast radio broadcast in Flash (Shoutcast Flash Player) spender 2009-11-18T22:27:20Z 2009-11-18T22:27:20Z <p>You're almost there. The full mantra is:</p> <pre><code>s = new Sound(); s.loadSound ("http://url.of.shoutcaststream:8003/;",true); </code></pre> <p>Notice the trailing slash and semicolon. Shoutcast servers (DNAS) look at the useragent of a request to detect what to send back in the response. If it's a broswer then it serves a page of HTML. If it's not a browser UA, it sends the stream. Trailing semicolon (for some undocumented reason) causes DNAS to ignore the UA and always send a stream.</p> <p>There's no satisfactory solution to playing AAC streams, although Flash has the equipment to do so, for some reason the API for AAC is completely different and cannot play AAC Shoutcast.</p> <p>The NetStream solution here is unlikely to provide a solution.</p> <p>See my blog for more info:</p> <p><a href="http://www.flexiblefactory.co.uk/flexible/?p=51" rel="nofollow">http://www.flexiblefactory.co.uk/flexible/?p=51</a></p> http://stackoverflow.com/questions/1756023/how-to-create-a-thread-safe-pool-of-objects/1756055#1756055 1 Answer by spender for How to create a thread-safe pool of objects? spender 2009-11-18T13:42:15Z 2009-11-18T13:42:15Z <p>This post will be of interest:</p> <p><a href="http://stackoverflow.com/questions/1698738/objectpoolt-or-similar-for-net-already-in-a-library">http://stackoverflow.com/questions/1698738/objectpoolt-or-similar-for-net-already-in-a-library</a></p> http://stackoverflow.com/questions/1755986/flex-image-scale-stopped-working-after-deploy-to-server/1756002#1756002 0 Answer by spender for Flex: image scale stopped working after deploy to server spender 2009-11-18T13:36:12Z 2009-11-18T13:36:12Z <p>I imagine it's because you're hooking the wrong event and it hasn't loaded by the time <code>callLater</code> is called. Are you sure that <code>updateComplete</code> is the right event?</p> <p><code>complete</code> looks like a better choice of event:</p> <p><a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/SWFLoader.html#event%3Acomplete" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/controls/SWFLoader.html#event%3Acomplete</a></p> <p>Of course, if you've migrated your app from a Windows environment to a case sensitive environment, case-sensitivity in the path might be an issue.</p> http://stackoverflow.com/questions/1753221/inserting-a-group-by-result-into-another-table/1753244#1753244 4 Answer by spender for Inserting a GROUP BY result into another table spender 2009-11-18T02:30:25Z 2009-11-18T02:30:25Z <pre><code>INSERT INTO foo (fieldName1,fieldName2,fieldName3) SELECT '',bar,'' FROM baz GROUP BY bar </code></pre> http://stackoverflow.com/questions/1753158/how-risky-is-development-against-sql-server-2008-with-production-on-sql-server-20/1753170#1753170 5 Answer by spender for How risky is development against SQL Server 2008 with production on SQL Server 2005 spender 2009-11-18T02:03:20Z 2009-11-18T02:03:20Z <p>It seems worth looking at this page:</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb510680.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb510680.aspx</a></p> <p>which describes compatibility levels which can be set against a DB.</p> http://stackoverflow.com/questions/1745691/linq-when-to-use-singleordefault-vs-firstordefault-with-filtering-criteria/1745718#1745718 1 Answer by spender for LINQ: When to use SingleOrDefault vs. FirstOrDefault() with filtering criteria spender 2009-11-17T00:05:25Z 2009-11-17T00:05:25Z <p>I use <code>SingleOrDefault</code> in situations where my logic dictates that the will be either zero or one results. If there are more, it's an error situation, which is helpful.</p> http://stackoverflow.com/questions/1735707/speeding-up-lookup-of-ranges-of-data-from-a-collection 1 Speeding up lookup of ranges of data from a collection spender 2009-11-14T21:42:56Z 2009-11-14T21:51:23Z <p>Say I have a class</p> <pre><code>public class TimestampedTrackId { private readonly int trackId; private readonly DateTime insertTime; public TimestampedTrackId(int trackId, DateTime insertTime) { this.trackId = trackId; this.insertTime = insertTime; } public int TrackId { get { return trackId; } } public DateTime InsertTime { get { return insertTime; } } } </code></pre> <p>I have a large list of type <code>List&lt;TimestampedTrackId&gt;</code> and need to extract <code>TimestampedTrackId</code> instances from this list where the property InsertTime lies between a minimum and a maximum DateTime. </p> <pre><code>List&lt;TimestampedTrackId&gt; tracks; //Count=largeNumber ... tracks.Where(t=&gt;t.InsertTime&gt;min&amp;&amp;t.InsertTime&lt;max) </code></pre> <p>A <code>List&lt;T&gt;</code> is obviously not the correct container for this task as it requires a search on every item to check if <code>InsertTime</code> lies between the min and max values. </p> <p>So, I am assuming that part of speeding up this code would involve repackaging the list in a more suitable collection, but which collection? </p> <p>Given the correct collection (which might be keyed), what query might I use to leverage maximum lookup speed?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1733082/implement-a-comet-server-in-c/1733158#1733158 3 Answer by spender for Implement a Comet server in C# spender 2009-11-14T03:39:02Z 2009-11-14T04:15:48Z <p>Let's get this straight. </p> <p>I'm assuming this is a followup to this question: <a href="http://stackoverflow.com/questions/1719935/communication-between-java-and-c">http://stackoverflow.com/questions/1719935/communication-between-java-and-c</a> </p> <p>This is app to app communication on the same machine with only strings as the payload, right? </p> <p>Why COMET? Why not just send null terminated strings directly via a socket connection? Implementing a Comet server is far from trivial, and is only used in situations where more direct communication is disallowed (i.e. server to browser push). Comet for app to app communication on the same machine would be very complex for a solution that is easily solved with sockets.</p> http://stackoverflow.com/questions/1733027/asynchronous-processing-in-sql-server-vs-net-asynchronous-processing/1733226#1733226 3 Answer by spender for Asynchronous processing in SQL Server vs. .NET Asynchronous processing spender 2009-11-14T04:08:10Z 2009-11-14T04:13:34Z <p>The problem with .NET asynchronous processing (<code>BeginInvoke(...)</code>) is that all this is doing is spinning off a thread to process the code synchronously. A 5 minute query will tie up a thread for 5 minutes, blocking (i.e. doing nothing for ~99% of the time) while a result is calculated at the remote end. Under strain (many queries at once) this will exhaust the threadpool, tying up all threads in a blocked state. The threadpool will become unresponsive and new work requests will suffer big latency waiting for the threadpool to fire up extra threads. This is not the intended use of the threadpool, as it is designed with the expectation that the tasks it is asked to complete are to be short-lived and non-blocking. </p> <p>With Begin/EndAction APM pairs, one can invoke the same action in a non-blocking way, and it is only when the result is returned via an IO completion port that it is queued as a work item in the threadpool. None of your threads are tied up in the interim, and at the point that the queued response is dealt with, data is available meaning user code does not block on IO, and can be completed quickly... a much more efficient use of the threadpool which scales to many more client requests without the cost of a thread per outstanding operation.</p> http://stackoverflow.com/questions/1719606/generic-method-syntax-clarification/1719619#1719619 1 Answer by spender for Generic method syntax clarification spender 2009-11-12T03:05:39Z 2009-11-12T03:05:39Z <ol> <li><p>indeed, in your example, both parameters are of type T therefore need to ..um.. be of type T. You could of course declare a method that uses different types.</p> <p>static void Sample&lt;T&gt;(T a,SomeType b)</p></li> <li><p>Yes, it is not generic unless you specify Sample<b>&lt;T&gt;</b>(T a,T b)</p></li> </ol> http://stackoverflow.com/questions/1714412/connect-using-specific-ip-multiple-ips-on-nic/1714503#1714503 1 Answer by spender for Connect using specific IP (multiple IPs on NIC) spender 2009-11-11T11:09:31Z 2009-11-11T11:09:31Z <p><a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.bind.aspx" rel="nofollow">Socket.Bind</a> is your friend.</p> http://stackoverflow.com/questions/1698738/objectpoolt-or-similar-for-net-already-in-a-library/1698845#1698845 4 Answer by spender for ObjectPool<T> or similar for .NET already in a library? spender 2009-11-09T02:44:40Z 2009-11-09T02:49:55Z <p>A while back I faced this problem and came up with a lightweight (rough'n'ready) threadsafe (I hope) pool that has proved very useful, reusable and robust:</p> <pre><code> public class Pool&lt;T&gt; where T : class { private readonly Queue&lt;AsyncResult&lt;T&gt;&gt; asyncQueue = new Queue&lt;AsyncResult&lt;T&gt;&gt;(); private readonly Func&lt;T&gt; createFunction; private readonly HashSet&lt;T&gt; pool; private readonly Action&lt;T&gt; resetFunction; public Pool(Func&lt;T&gt; createFunction, Action&lt;T&gt; resetFunction, int poolCapacity) { this.createFunction = createFunction; this.resetFunction = resetFunction; pool = new HashSet&lt;T&gt;(); CreatePoolItems(poolCapacity); } public Pool(Func&lt;T&gt; createFunction, int poolCapacity) : this(createFunction, null, poolCapacity) { } public int Count { get { return pool.Count; } } private void CreatePoolItems(int numItems) { for (var i = 0; i &lt; numItems; i++) { var item = createFunction(); pool.Add(item); } } public void Push(T item) { if (item == null) { Console.WriteLine("Push-ing null item. ERROR"); throw new ArgumentNullException(); } if (resetFunction != null) { resetFunction(item); } lock (asyncQueue) { if (asyncQueue.Count &gt; 0) { var result = asyncQueue.Dequeue(); result.SetAsCompletedAsync(item); return; } } lock (pool) { pool.Add(item); } } public T Pop() { T item; lock (pool) { if (pool.Count == 0) { return null; } item = pool.First(); pool.Remove(item); } return item; } public IAsyncResult BeginPop(AsyncCallback callback) { var result = new AsyncResult&lt;T&gt;(); result.AsyncCallback = callback; lock (pool) { if (pool.Count == 0) { lock (asyncQueue) { asyncQueue.Enqueue(result); return result; } } var poppedItem = pool.First(); pool.Remove(poppedItem); result.SetAsCompleted(poppedItem); return result; } } public T EndPop(IAsyncResult asyncResult) { var result = (AsyncResult&lt;T&gt;) asyncResult; return result.EndInvoke(); } } </code></pre> <p>In order to avoid any interface requirements of the pooled objects, both the creation and resetting of the objects is performed by user supplied delegates: i.e.</p> <pre><code>Pool&lt;MemoryStream&gt; msPool = new Pool&lt;MemoryStream&gt;(() =&gt; new MemoryStream(2048), pms =&gt; { pms.Position = 0; pms.SetLength(0); }, 500); </code></pre> <p>In the case that the pool is empty, the BeginPop/EndPop pair provide an APM (ish) means of retrieving the object asynchronously when one becomes available (using Jeff Richter's excellent <a href="http://msdn.microsoft.com/en-us/magazine/cc163467.aspx" rel="nofollow">AsyncResult&lt;TResult&gt;</a> implementation).</p> <p>I can't quite remember why it is constained to T : class... there's probably none.</p> http://stackoverflow.com/questions/1698534/how-do-i-play-movies-in-a-c-winform-application/1698554#1698554 2 Answer by spender for How do I play movies in a C# WinForm application spender 2009-11-09T00:49:58Z 2009-11-09T00:49:58Z <p>I think this is probably the path of least resistance:</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb383953.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb383953.aspx</a></p> http://stackoverflow.com/questions/1698176/how-to-keep-a-http-connection-alive/1698208#1698208 3 Answer by spender for How to keep a HTTP connection alive? spender 2009-11-08T22:52:36Z 2009-11-08T22:52:36Z <p>In short, I think the concept of long lived http connections in javascript really revolve around a style of communication called COMET. This can be achieved in several different ways, but essentially involves the client (using XmlHttp powers) requesting data from the server immediately, and the server withholding the response until some event triggers it. Upon receipt of this response, the client immediately makes another request (which will once again hang at the server end until something needs sending). This simulates server push, but is effectively nothing more than a delayed response used in a clever way. In the worst case, there can be fairly high latency (i.e. 2 messages need sending, so the cycle must be twice repeated, with all the costs involved) but generally, if the messaging rate is low, this gives a reasonable impression of real-time push.</p> <p>Implementing the server-side for this kind of communication is far from trivial, and requires a good deal of asynchronous communications, concurrency issues and the like. It's quite easy to write an implementation that can support a few hundred users each on their own thread, but to scale to the thousands requires a much more considered approach.</p> http://stackoverflow.com/questions/1691085/obfuscating-your-jquery-code/1691110#1691110 2 Answer by spender for Obfuscating your jquery code. spender 2009-11-06T23:00:45Z 2009-11-06T23:00:45Z <p>I think your best option here is to use one of the more complex minifiers that perform their own unpacking. Names escape me at the moment. Realistically, it's probably a good thing to realize that there is no protecting your javascript from the determined, and as such, there's really not much point giving this too much thought.</p> http://stackoverflow.com/questions/1686611/should-latest-programming-languages-be-introduced-in-colleges/1686648#1686648 5 Answer by spender for Should latest programming languages be introduced in colleges spender 2009-11-06T10:14:11Z 2009-11-06T10:14:11Z <p>Where would these professionals come from? I know that if I had to prepare to give courses at college/university, then I would not have the time to learn what it takes to stay at the top of my game. School isn't about learning the latest and greatest, because development tends to be somewhat faddish and what's hot today could prove to be tomorrow's turkey. It's more about equipping the student with the tools to learn what it takes to become a professional. You can really never be taught it, rather you can be equipped to learn it.</p> http://stackoverflow.com/questions/1487278/asp-net-semi-authenticated-user 0 Asp.net semi-authenticated user? spender 2009-09-28T14:14:55Z 2009-10-24T21:47:18Z <p>We've got an asp.net mvc website that is currently in a private beta state. As such we are sending out invite codes that must be supplied as part of the registration process for registration to succeed. We'd like to reduce the bar of entry such that users only have to supply the code to gain access rather than going through a more laborious registration process. We do have anonymousIdentification enabled, and as such, I assume that these users would remain anonymous.</p> <p>Is it possible to somehow differentiate between a plain-old anonymous user and one that has supplied the correct code? For instance, can anonymous users be added to a role? Any other suggestions?</p> http://stackoverflow.com/questions/1606192/securing-a-server-application 0 Securing a server application spender 2009-10-22T09:58:52Z 2009-10-22T10:42:12Z <p>We have two backend applications, one that is reponsible for acquiring data from the internet and storing it in a database, and the other that is effectively a COMET server, accepting connections from the internet, hooked into the http pipeline via the <a href="http://msdn.microsoft.com/en-us/library/system.net.httplistener.aspx" rel="nofollow">HttpListener</a> API. </p> <p>In development, both these items have been created as console applications that are started manually under an admin account. Obviously, this is unsatisfactory from a security POV.</p> <p>When we move to production, both these applications will be ported to run as Windows services using <a href="http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicebase.run.aspx" rel="nofollow">ServiceBase.Run</a> and provided as installers for installation on the deployment platform. </p> <p>As somebody who knows very little about Windows security, ACLs and the like, I would like to know what steps I can take to secure these applications (such as have them run in an account of lowest necessary privilege) and how one would create an installer that sets up the necessary service accounts and privileges for these accounts.</p> <p>To be clear, I am not asking how to make a service installer - we have this already, but rather what steps are required to make the service installer actually install the service under a low privilege account with rights only to the minimum resources required to get the job done. <strike>Part of the answer would be how to allow the service account access to the Http pipeline.</strike> </p> <p>EDIT: We can probably use a custom action with code from <a href="http://urlreservation.codeplex.com/" rel="nofollow">here</a> for the http pipeline reservation.</p> <p>Are there any other steps one might take to shore up the security of such applications?</p> <p>TIA</p> http://stackoverflow.com/questions/1818762/html-scraper-to-remove-and-modify-html-pages/1818827#1818827 Comment by spender on HTML scraper to remove and modify html pages? spender 2009-11-30T10:35:28Z 2009-11-30T10:35:28Z I'd suggest that your mistrust of HTMLAgility pack is misplaced. Once you convert to XML, you're using standard .Net XML manipulation which doesn't require a knowlege of XPath, is well documented, efficient, reliable and about as simple as it gets. Using the technique above means you need know very little about HTMLAgility pack. It works. We use this technique to good effect. http://stackoverflow.com/questions/1814562/how-to-split-strings-on-carriage-return-with-c/1814568#1814568 Comment by spender on How to split strings on carriage return with C#? spender 2009-11-29T03:47:31Z 2009-11-29T03:47:31Z Is there a guarantee that this wouldn't first split by \n, leaving \r\n reduced to \r? http://stackoverflow.com/questions/1813734/asp-net-session-state-server-with-sql-server/1813796#1813796 Comment by spender on Asp.net session state server with SQL Server spender 2009-11-29T03:12:53Z 2009-11-29T03:12:53Z Bingo. I was under the impression that session state also is responsible for maintaining forms authentication (I'm running a few servers under a balancer). Session state is indeed being saved (just unused on the pages I was testing). What I actually needed to do was set the same machineKey keys to preserve authentication as users are shunted between nodes of my farm. A severe case of RTFM. http://stackoverflow.com/questions/1813734/asp-net-session-state-server-with-sql-server/1813787#1813787 Comment by spender on Asp.net session state server with SQL Server spender 2009-11-29T03:11:12Z 2009-11-29T03:11:12Z +1 for not requiring the state service. See comments under marcc's post to learn of my stupidity! http://stackoverflow.com/questions/1800333/stubbing-sinatra-helper-in-cucumber Comment by spender on Stubbing Sinatra helper in Cucumber spender 2009-11-25T22:25:31Z 2009-11-25T22:25:31Z Being completely unfamiliar with any of these, I simply congratulate you on your question title. http://stackoverflow.com/questions/1790810/most-suitable-net-timer-for-a-scheduler/1790864#1790864 Comment by spender on Most suitable .net Timer for a scheduler spender 2009-11-24T15:44:07Z 2009-11-24T15:44:07Z I'm looking into the usages of the scheduler. My belief is that all items are submitted in chronological order, so this may indeed be the best fix. http://stackoverflow.com/questions/1782114/why-dont-these-two-math-functions-return-the-same-result Comment by spender on Why don't these two math functions return the same result? spender 2009-11-23T09:50:32Z 2009-11-23T09:50:32Z What magnitude of difference is there between the two? This isn't the typical floating point accuracy issue that catches so many people out is it? http://stackoverflow.com/questions/1780384/should-if-statement-always-have-an-else-clause Comment by spender on Should 'if' statement always have an 'else' clause? spender 2009-11-22T23:38:36Z 2009-11-22T23:38:36Z They aren't paid per line are they? http://stackoverflow.com/questions/1780260/write-a-value-into-pe-file Comment by spender on Write a value into PE file spender 2009-11-22T22:35:24Z 2009-11-22T22:35:24Z Won't the checksum be different once it's written into the file? http://stackoverflow.com/questions/1704121/flex-flash-shoutcast-player/1759614#1759614 Comment by spender on Flex/Flash Shoutcast player spender 2009-11-22T02:42:07Z 2009-11-22T02:42:07Z ok, but the real gold is the semicolon (stream.mp3 is not necessary). looks like you got there in the end. http://stackoverflow.com/questions/1755964/whats-wrong-with-word-recursion-in-google-search Comment by spender on What's wrong with word 'recursion' in Google Search? spender 2009-11-18T13:30:25Z 2009-11-18T13:30:25Z Hmm. That's interesting, but a problem with Google and not programming related. Voting to close http://stackoverflow.com/questions/1753184/compare-strings-in-c Comment by spender on Compare Strings in C# spender 2009-11-18T02:26:41Z 2009-11-18T02:26:41Z ...but there's quite a few other questions waiting to be asked ;) http://stackoverflow.com/questions/1735707/speeding-up-lookup-of-ranges-of-data-from-a-collection Comment by spender on Speeding up lookup of ranges of data from a collection spender 2009-11-14T22:06:55Z 2009-11-14T22:06:55Z The collection itself is not amazingly large... thousands... but I have thousands of these collections and need to lookup tens/hundreds of date ranges on each one, so speed is of the essence. http://stackoverflow.com/questions/1733079/whats-a-good-swf-optimizer Comment by spender on What's a good SWF optimizer? spender 2009-11-14T03:48:47Z 2009-11-14T03:48:47Z perhaps it's better to contact James Ward directly? http://stackoverflow.com/questions/1719633/50off-ugg-boots-55-ed-hardy-t-shirt15-jeans-coach-handbag33-air-max90-dunk-po Comment by spender on 50%off ugg boots $55,ed hardy t-shirt$15 jeans,coach handbag$33,air max90,dunk,polo t-shirt$13,,lacoste t-shirt $13 air jordan for sale,$35,nfl nba jersy for sale spender 2009-11-12T03:11:03Z 2009-11-12T03:11:03Z someone is desperate!