User Bruce - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T03:47:14Zhttp://stackoverflow.com/feeds/user/6310http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1610122/tricky-c-syntax-for-out-function-parameter/1610156#16101562Answer by Bruce for Tricky C# syntax for out function parameterBruce2009-10-22T21:43:04Z2009-10-22T21:43:04Z<p>The Queue is going to be passed by reference anyway, its not a value type. Just don't use 'out'. UPDATE: Pardon me, I was thinking of 'ref' - but the fact that you're passing a Queue data type in, and not just an unallocated reference, makes me think that you want to be using 'ref' anyway. Except of course that you don't need to use 'ref' because the Queue isn't a value type; its already going to be passed in 'by reference', by default.</p>
http://stackoverflow.com/questions/1609440/camel-case-method-names/1609588#1609588-1Answer by Bruce for camel case method namesBruce2009-10-22T19:56:39Z2009-10-22T19:56:39Z<p>We use lower-case on the first letter to save a little ink in our printouts.</p>
http://stackoverflow.com/questions/1608953/very-strange-char-array-behaviour/1608978#16089783Answer by Bruce for Very strange char array behaviourBruce2009-10-22T18:04:25Z2009-10-22T18:04:25Z<p>Sounds like the string in the file isn't null-terminated, and intellisense is assuming that it is. Or perhaps when you wrote the length of the string (30) into the file, you didn't include the null character in that count. Try adding:</p>
<pre><code>fname[fname_length] = '\0';
</code></pre>
<p>after the file.read(). Oh yeah, you'll need to allocate an extra character too:</p>
<pre><code>char * fname = new char[fname_length + 1];
</code></pre>
http://stackoverflow.com/questions/1608854/what-is-the-difference-between-antixss-htmlencode-and-httputility-htmlencode/1608956#16089561Answer by Bruce for What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?Bruce2009-10-22T18:01:15Z2009-10-22T18:01:15Z<p>We use the white-list approach for Microsoft's Windows Live sites. I'm sure that there are any number of security attacks that we haven't thought of yet, so I'm more comfortable with the paranoid approach. I suspect there have been cases where the black-list exposed vulnerabilities that the white-list did not, but I couldn't tell you the details.</p>
http://stackoverflow.com/questions/1128996/jquery-on-hover-with-multiple-function-calls-is-not-working-as-i-expected/1129013#11290130Answer by Bruce for jQuery on hover with multiple function() calls is not working as I expectedBruce2009-07-15T01:56:57Z2009-07-15T01:56:57Z<p>.hover only takes two function parameters; try this:</p>
<pre><code>$(".navLinkTD").hover(
function () { $(this).removeClass("navLinkTD").addClass("navLinkTDActive"); },
function () { $(this).removeClass("navLinkTDActive").addClass("navLinkTD"); }
);
</code></pre>
http://stackoverflow.com/questions/1093706/how-do-i-distinguish-between-duplicate-cookies0How do I distinguish between duplicate cookies?Bruce2009-07-07T17:36:20Z2009-07-07T18:37:35Z
<p>I am observing, on both Firefox and IE, that if I have a cookie 'x' on the domain a.b.c.com, and also have a cookie with the same name 'x' on domain a.b.com, then when I look at the value of document.cookie on the a.b.c.com domain, it shows both cookies. I would like to see just the cookie from the a.b.c.com domain, and not the one from the other domain. (I'm assuming this occurs because one domain is the same as the other one, with an additional segment on the hostname.) Is there a way to do this?</p>
<p>I don't have control over the contents of the cookie, and I don't see anything obvious in those contents that distinguishes one domain from the other.</p>
http://stackoverflow.com/questions/1029215/how-do-i-debug-asp-net-compilation-errors1How do I debug ASP.NET compilation errors?Bruce2009-06-22T20:22:53Z2009-06-22T20:51:16Z
<p>I have a large, complicated web site, mostly written by other people. I've made some changes, and now when I try to access any page on the site (not just where my changes are), I get the error described below. While I'd like to know how to fix this problem, I'd even more like to know the general diagnostic steps I should take next in order to track down the problem - I'd like to be able to solve it myself next time. Thanks in advance for the help!</p>
<p>When I navigate a browser to any page on the site, I get a server error back:</p>
<pre><code>Parser Error
Parser Error Message: Object reference not set to an instance of an object.
Source Error: [No relevant source lines]
</code></pre>
<p>I checked the event log on the server, and got some slightly more detailed information:</p>
<pre><code>Event code: 3006
Event message: A parser error has occurred.
Exception information:
Exception type: HttpException
Exception message: Object reference not set to an instance of an object.
Stack trace:
at System.Web.Compilation.BuildManager.ReportTopLevelCompilationException()
at System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled()
at System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters)
</code></pre>
http://stackoverflow.com/questions/1019141/should-web-services-throw-exceptions-or-result-objects/1019167#10191670Answer by Bruce for Should web services throw exceptions OR result objects.Bruce2009-06-19T17:40:30Z2009-06-19T17:40:30Z<p>Can you clarify a bit? The server-side of a web service can throw an exception. The server-side of a web service can return a message to the client-side. That message may contain error information, and that error information may specifically include exception details. Or it may not. On the client-side, you typically have a generated proxy to deal with the message from the server. This proxy may generate an exception if that response contains error information.</p>
<p>Which part of this scenario are you wondering about?</p>
http://stackoverflow.com/questions/1005149/is-there-a-way-to-derive-from-a-class-with-an-internal-constructor/1005193#10051932Answer by Bruce for Is there a way to derive from a class with an internal constructor?Bruce2009-06-17T05:02:48Z2009-06-17T05:02:48Z<p>Sounds like a perfect application for extension methods:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">MSDN extension method docs</a></p>
<p>"Extension methods enable you to "add" methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type. Extension methods are a special kind of static method, but they are called as if they were instance methods on the extended type. For client code written in C# and Visual Basic, there is no apparent difference between calling an extension method and the methods that are actually defined in a type."</p>
http://stackoverflow.com/questions/1005154/how-to-use-datetime-in-where-clause-linq/1005175#10051755Answer by Bruce for How to use DateTime in WHERE clause (LINQ)?Bruce2009-06-17T04:49:56Z2009-06-17T04:49:56Z<p>You can extract just the 'date' portion of a DateTime as follows:</p>
<pre><code>opp.CreatedDate.Date == Convert.ToDateTime(createdDate).Date
</code></pre>
http://stackoverflow.com/questions/1005122/jquery-ajax-call-gets-resolved-to-the-current-controller-folder-instead-of-root/1005146#10051460Answer by Bruce for JQuery Ajax call gets resolved to the current Controller Folder, Instead of root FolderBruce2009-06-17T04:38:41Z2009-06-17T04:38:41Z<p>jQuery doesn't know anything about MVC, controllers, or actions. You're telling it: "here is a relative URL - take the URL of the current page and append the relative URL to it." You probably want to say something like:</p>
<pre><code>var newURL = "http://" + document.domain + "/ViewRecord/GetSoftwareChoice";
</code></pre>
http://stackoverflow.com/questions/1005082/static-web-service-over-non-static/1005113#10051131Answer by Bruce for Static Web Service over non-staticBruce2009-06-17T04:25:10Z2009-06-17T04:25:10Z<p>Static data won't be garbage-collected until the containing AppDomain is shut down; commonly this means the memory will stay allocated until the app is shut down, unless you're doing some kind of special AppDomain management. Non-static objects will be collected by the garbage collector, by the normal rules - no more references, and whenever the GC runs.</p>
http://stackoverflow.com/questions/949239/can-i-get-wcf-to-run-on-vs-express/949257#9492571Answer by Bruce for Can I get WCF to run on VS ExpressBruce2009-06-04T08:29:45Z2009-06-04T08:29:45Z<p>Yes, it is possible. Are you finding otherwise?</p>
http://stackoverflow.com/questions/943191/assigning-character-to-char-pointer/943219#9432191Answer by Bruce for assigning character to char pointerBruce2009-06-03T05:38:37Z2009-06-03T05:38:37Z<p>In addition to the *p issue others have pointed out, you also have memory usage issues. You have one buffer of 100 bytes, with unknown contents. You have another buffer of 7 bytes, containing the string "123056" and a null terminator. You're doing this:</p>
<ol>
<li>num is set to point to the 100 byte buffer</li>
<li>p is set to point to num; ie, it points to the 100 byte buffer</li>
<li>you reset num to point to the 7 byte buffer; p is still pointing to the 100 byte buffer</li>
<li>You use p to modify the 100 byte buffer</li>
<li>then you use num to print out the 7 byte buffer</li>
</ol>
<p>So you're not printing the same buffer that you are modifying.</p>
http://stackoverflow.com/questions/943135/do-you-prefer-to-return-the-modified-object-or-not/943154#9431540Answer by Bruce for Do you prefer to return the modified object or not?Bruce2009-06-03T05:13:13Z2009-06-03T05:13:13Z<p>First off, if you're just changing one property, I wouldn't have a separate modification function at all; I'd just change the property directly. With that out of the way, lets assume you are giving a simple example of something more complicated, with perhaps several different changes inside the modification function.</p>
<p>I'd use the one that returns the 'Class' object. It lets you chain multiple calls together. Again, I'm assuming this is a simple example of a system that is actually more complicated; suppose instead you had MakeModification(), MakeAnotherModification(), and MakeAThirdModification(). If you return the 'Class' object, you can get the following syntactic nicety:</p>
<pre><code>Class c = new Class();
c.MakeModification().MakeAnotherModification().MakeAThirdModification();
</code></pre>
http://stackoverflow.com/questions/942768/what-might-cause-an-xmlhttprequest-to-never-change-state-in-firefox/942793#9427930Answer by Bruce for What might cause an XMLHttpRequest to never change state in Firefox?Bruce2009-06-03T02:24:39Z2009-06-03T02:24:39Z<p>It seems unlikely that onreadystatechange would stop working. Is it possible that the 'alert' function has somehow been disabled or overridden? Can you replace the alert with some code to make a visible change in the page, and check its functionality that way? (I know, its a stretch, but it just seems so strange that onreadystatechange wouldn't work!)</p>
http://stackoverflow.com/questions/942615/lambda-extension-to-combine-lists/942713#9427134Answer by Bruce for lambda extension to combine listsBruce2009-06-03T01:33:14Z2009-06-03T01:33:14Z<p>A bit of a guess (haven't tried running it), but:</p>
<pre><code>var filteredResults = from obj in objects
join result in results on obj.id equals result.id
select result;
</code></pre>
<p>Note that this should replace both the lines of code you have in your question.</p>
http://stackoverflow.com/questions/942676/recursively-freeing-c-structs/942686#9426860Answer by Bruce for Recursively freeing C structsBruce2009-06-03T01:18:48Z2009-06-03T01:18:48Z<p>Not with those structures. You could add another entry to your top-level 'model' struct containing a list of pointers to be freed, and iterate that list. But I doubt if the added complexity and reduced understandability of that solution would be worth it. (Unless you've got a lot bigger and more deeply-nested set of entries to free in the top-level 'model' struct than you are showing here.)</p>
http://stackoverflow.com/questions/929009/how-to-write-a-transactional-multi-threaded-wcf-service-consuming-msmq/929268#9292680Answer by Bruce for How to write a transactional, multi-threaded WCF service consuming MSMQBruce2009-05-30T07:41:11Z2009-06-02T06:15:33Z<p>Instead of immediately pushing messages to the DB after taking them out of the queue, keep a list of pending messages in memory. When you get an A or B, check to see if the matching one is in the list. If so, submit them both (in the right order) to the database, and remove the matching one from the list. Otherwise, just add the new message to that list.</p>
<p>If checking for a match is too expensive a task to serialize - I assume you are multithreading for a reason - the you could have another thread process the list. The existing multiple threads read, immediately submit most messages to the DB, but put the As and Bs aside in the (threadsafe) list. The background thread scavenges through that list finding matching As and Bs and when it finds them it submits them in the right order (and removes them from the list).</p>
<p>The bottom line is - since your removing items from the queue with multiple threads, you're going to have to serialize somewhere, in order to ensure ordering. The trick is to minimize the number of times and length of time you spend locked up in serial code.</p>
<p>There might also be something you could do at the database level, with triggers or something, to reorder the entries when it detects this situation. I'm afraid I don't know enough about DB programming to help there.</p>
<p>UPDATE: Assuming the messages contain some id that lets you associate a message 'A' with the correct associated message 'B', the following code will make sure A goes in the database before B. Note that it does not make sure they are adjacent records in the database - there could be other messages between A and B. Also, if for some reason you get an A or B without ever receiving the matching message of the other type, this code will leak memory since it hangs onto the unmatched message forever.</p>
<p>(You could extract those two 'lock'ed blocks into a single subroutine, but I'm leaving it like this for clarity with respect to A and B.)</p>
<pre><code>static private object dictionaryLock = new object();
static private Dictionary<int, MyMessage> receivedA =
new Dictionary<int, MyMessage>();
static private Dictionary<int, MyMessage> receivedB =
new Dictionary<int, MyMessage>();
public void MessageHandler(MyMessage message)
{
MyMessage matchingMessage = null;
if (IsA(message))
{
InsertIntoDB(message);
lock (dictionaryLock)
{
if (receivedB.TryGetValue(message.id, out matchingMessage))
{
receivedB.Remove(message.id);
}
else
{
receivedA.Add(message.id, message);
}
}
if (matchingMessage != null)
{
InsertIntoDB(matchingMessage);
}
}
else if (IsB(message))
{
lock (dictionaryLock)
{
if (receivedA.TryGetValue(message.id, out matchingMessage))
{
receivedA.Remove(message.id);
}
else
{
receivedB.Add(message.id, message);
}
}
if (matchingMessage != null)
{
InsertIntoDB(message);
}
}
else
{
// not A or B, do whatever
}
}
</code></pre>
http://stackoverflow.com/questions/930207/loading-unicode-characters-from-xml-and-push-into-form-via-ajax/930269#9302690Answer by Bruce for Loading Unicode Characters from XML and push into Form via AJAXBruce2009-05-30T18:20:38Z2009-05-31T03:31:13Z<p>That's a javascript format; javascript understands it and converts it to the appropriate character, but the XML parser does not. Instead of '\u2122' use '™' in XML.</p>
http://stackoverflow.com/questions/930190/protected-methods-in-c/930221#9302212Answer by Bruce for "protected" methods in C# ?Bruce2009-05-30T17:58:38Z2009-05-30T18:55:11Z<p>Often 'protected' is used when you want to have a child class override an otherwise 'private' method.</p>
<pre><code>public class Base {
public void Api() {
InternalUtilityMethod();
}
protected virtual void InternalUtilityMethod() {
Console.WriteLine("do Base work");
}
}
public class Derived : Base {
protected override void InternalUtilityMethod() {
Console.WriteLine("do Derived work");
}
}
</code></pre>
<p>So we have the override behavior we know and love from inheritance, without unnecessarily exposing the InternalUtilityMethod to anyone outside our classes.</p>
<pre><code>var b = new Base();
b.Api(); // returns "do Base work"
var d = new Derived();
d.Api(); // returns "do Derived work"
</code></pre>
http://stackoverflow.com/questions/930138/is-clrscr-a-function-in-c/930146#9301461Answer by Bruce for Is clrscr(); a function in C++?Bruce2009-05-30T17:20:55Z2009-05-30T17:20:55Z<p>A web search says the header file you want is 'conio.h' - I haven't tried it out, so no guarantees. Its existence may also depend on what platform you are compiling against.</p>
http://stackoverflow.com/questions/930124/reuse-types-in-current-assembly-for-wcf-proxies/930132#9301320Answer by Bruce for Reuse types in current assembly for WCF ProxiesBruce2009-05-30T17:12:28Z2009-05-30T17:12:28Z<p>Could you clarify your scenario? Normally when presented with a question like "how do I use a type defined in the assembly I'm currently writing", my answer would be "just use it." What is preventing you from just 'new'ing up the type, or otherwise using it, since you're in the same assembly?</p>
http://stackoverflow.com/questions/930100/asp-net-wont-send-email-and-no-error-message-weird/930112#9301123Answer by Bruce for ASP.NET won't send email and no error message, weird!Bruce2009-05-30T16:59:25Z2009-05-30T16:59:25Z<p>Your try/catch block is deliberately throwning away any error message. Remove that and see what you get.</p>
http://stackoverflow.com/questions/930089/what-is-the-difference-between-read-and-readline-in-c/930107#9301072Answer by Bruce for What is the difference between read and readline in C#?Bruce2009-05-30T16:57:39Z2009-05-30T16:57:39Z<p>If you're talking about Console.Read and Console.ReadLine, the difference is that Read only returns a single character, while ReadLine returns the entire input line. Its important to note that in both cases, the API call won't return until the user presses ENTER to submit the text to the program. So if you type "abc" but don't press ENTER, both Read and ReadLine will block until you do.</p>
http://stackoverflow.com/questions/929276/how-to-recursively-list-all-the-files-in-a-directory-in-c/929281#9292816Answer by Bruce for How to recursively list all the files in a directory in C#?Bruce2009-05-30T07:54:32Z2009-05-30T07:54:32Z<p>string [] filenames = Directory.GetFiles( path, "*", SearchOption.AllDirectories )</p>
http://stackoverflow.com/questions/929124/http-request-and-response/929229#9292290Answer by Bruce for HTTP request and ResponseBruce2009-05-30T07:13:20Z2009-05-30T07:13:20Z<p>The easiest way to generate a request to a web server and get a response back is to use a web browser - if you know the URL of the web service that is supplying the XML data, just navigate to that URL in the browser. Note that this makes a few assumptions; for example, that the web service responds to GET requests (as opposed to POST, or other HTTP verbs). If you clarify the scenario some more, we can provide more detailed guidance.</p>
http://stackoverflow.com/questions/929131/how-do-i-resolve-http-error-500-19-internal-server-error-on-iis7-0/929225#9292251Answer by Bruce for How do I resolve "HTTP Error 500.19 - Internal Server Error" on IIS7.0Bruce2009-05-30T07:09:30Z2009-05-30T07:09:30Z<p>Looks like the user account you're using for your app pool doesn't have rights to the web site directory, so it can't read config from there. Check the app pool and see what user it is configured to run as. Check the directory and see if that user has appropriate rights to it. While you're at it, check the event log and see if IIS logged any more detailed diagnostic information there.</p>
http://stackoverflow.com/questions/908404/how-can-i-navigate-to-different-webpages-in-the-same-msie-window-in-vb-net/908458#9084580Answer by Bruce for How can I navigate to different webpages in the same MSIE window in VB.NETBruce2009-05-26T00:24:55Z2009-05-26T00:35:57Z<p>In order of increasing difficulty and increased control/power:</p>
<ol>
<li>Send input text to your IE process. Alt-D to focus on the navigation bar, then the URL, then ENTER.</li>
<li>Use MSAA to find the navigation bar and send it text, as above.</li>
<li>Use MSAA to get IHTMLDocument access to the browser, and then programmatically drive the browser with that, and the related interfaces.</li>
</ol>
<p>I don't know your exact scenario, but if you can host your own instance of MSHTML, or a WebBrowser control, it will make it a lot easier to get the interfaces and do the manipulations mentioned in #3 above; doing that stuff cross-process is fraught with peril.</p>
<p>I just did a web search and turned up a <a href="http://watin.sourceforge.net/" rel="nofollow" title="WatiN">WatiN</a> tool that apparently wraps a lot of this work; perhaps it would be useful for you.</p>
http://stackoverflow.com/questions/908283/javascript-securty-an-ajax-call-to-record-the-users-screen-resolution-is-it-po/908325#9083254Answer by Bruce for javascript securty: an AJAX call to record the user's screen resolution, is it possible to prevent fake numbers?Bruce2009-05-25T23:02:01Z2009-05-25T23:09:32Z<p>If you start with the assumption that the user you are communicating with is malicious, then no; there is nothing you can do to control what data they pass you. Certainly not with 100% certainty - in the worst case, they can use network tools to rewrite or replace any "correct" content with whatever they want.</p>
<p>If you just want to prevent casual maliciousness, you could obfuscate or encrypt your code and/or data. This will not deter a determined attacker.</p>
<p>If you actually trust the real user, but suspect that others might try to impersonate them, you can use other techniques like a dynamic canary: send the user a random number, and if they return that same number to you, you know that it really came from them. (Or you're being hit by a man-in-the-middle attack, but hey; that's what SSL is for.)</p>
http://stackoverflow.com/questions/1610122/tricky-c-syntax-for-out-function-parameter/1610156#1610156Comment by Bruce on Tricky C# syntax for out function parameterBruce2009-10-22T23:59:34Z2009-10-22T23:59:34ZThanks! Excellent detail. So while Queue is a reference type, the necessity for a 'ref' parameter depends on whether or not he sets that parameter to a different Queue object in his function, with the expectation of the caller seeing the new object.http://stackoverflow.com/questions/1610122/tricky-c-syntax-for-out-function-parameter/1610138#1610138Comment by Bruce on Tricky C# syntax for out function parameterBruce2009-10-22T21:47:40Z2009-10-22T21:47:40ZI checked the docs, it appears it actually is ok to initialize an out variable; presumably the reference to the old value is discarded when the function returns a new one.http://stackoverflow.com/questions/1608953/very-strange-char-array-behaviour/1608978#1608978Comment by Bruce on Very strange char array behaviourBruce2009-10-22T18:13:07Z2009-10-22T18:13:07Zwhere does 'fname_length' come from when you do that write? If it is just strlen(fname) then it won't include the null terminator character.http://stackoverflow.com/questions/1196422/cleanest-way-to-parse-this-pattern-of-stringsComment by Bruce on Cleanest way to parse this pattern of strings?Bruce2009-07-28T20:14:59Z2009-07-28T20:14:59ZHere are some more test cases for you:
Prince Remix (1999) (1999)
2001 Soundtrack (2001) (1974)http://stackoverflow.com/questions/1093706/how-do-i-distinguish-between-duplicate-cookies/1093915#1093915Comment by Bruce on How do I distinguish between duplicate cookies?Bruce2009-07-08T22:09:05Z2009-07-08T22:09:05ZYeah, that's what the IE team told me too. Major bummer.http://stackoverflow.com/questions/1093706/how-do-i-distinguish-between-duplicate-cookiesComment by Bruce on How do I distinguish between duplicate cookies?Bruce2009-07-07T18:03:46Z2009-07-07T18:03:46ZInteresting, but unfortunately I don't have control over where and how the cookie gets created.http://stackoverflow.com/questions/1093706/how-do-i-distinguish-between-duplicate-cookiesComment by Bruce on How do I distinguish between duplicate cookies?Bruce2009-07-07T17:57:37Z2009-07-07T17:57:37ZYes, exactly - I only want to see the cookie for the subdomain. How can I tell them apart?http://stackoverflow.com/questions/1093706/how-do-i-distinguish-between-duplicate-cookiesComment by Bruce on How do I distinguish between duplicate cookies?Bruce2009-07-07T17:47:00Z2009-07-07T17:47:00ZI don't know the correct wording for a domain that is the same as another domain, but with an additional segment on the hostname. Hopefully the example makes it clear. I changed the wording to replace 'parent' with some more detailed parenthetical text.http://stackoverflow.com/questions/1029215/how-do-i-debug-asp-net-compilation-errors/1029289#1029289Comment by Bruce on How do I debug ASP.NET compilation errors?Bruce2009-06-23T04:53:40Z2009-06-23T04:53:40ZThanks for the pointers! It turned out to be a combination of configuration problems, which was pulling in stale components, which was breaking some code generation the site was doing. Some other folks on the team put me on the chance, so fortunately or unfortunately I didn't get much chance to practice the debugging tips you described. Maybe next time.http://stackoverflow.com/questions/1005149/is-there-a-way-to-derive-from-a-class-with-an-internal-constructor/1005193#1005193Comment by Bruce on Is there a way to derive from a class with an internal constructor?Bruce2009-06-17T06:01:03Z2009-06-17T06:01:03ZUnderstood about the state - there are limitations. I don't understand your comment about static methods - sure, the extension method is static, but it has access to the object instance via the 'this' parameter.http://stackoverflow.com/questions/1005149/is-there-a-way-to-derive-from-a-class-with-an-internal-constructor/1005193#1005193Comment by Bruce on Is there a way to derive from a class with an internal constructor?Bruce2009-06-17T05:32:20Z2009-06-17T05:32:20ZYou just 'new' it up the same way you do already - it magically gets new methods that you've added to it.http://stackoverflow.com/questions/942768/what-might-cause-an-xmlhttprequest-to-never-change-state-in-firefox/942793#942793Comment by Bruce on What might cause an XMLHttpRequest to never change state in Firefox?Bruce2009-06-03T02:39:37Z2009-06-03T02:39:37Zif onreadystatechange wasn't working, I think the web would collapse. maybe the XmlHttpRequest object is being deleted or aborted before the response comes back? Is there more to the repro code, or is what you show the whole thing? Maybe your firefox installation is corrupt? <i>grin</i>http://stackoverflow.com/questions/929009/how-to-write-a-transactional-multi-threaded-wcf-service-consuming-msmq/929268#929268Comment by Bruce on How to write a transactional, multi-threaded WCF service consuming MSMQBruce2009-06-02T04:27:21Z2009-06-02T04:27:21ZBefore I try writing code, can you clarify one point? Is your thought that the message contains a unique identifier, and that A and B both have the same identifier? So if you receive messsages A1, A2, A3 and B1, B2, B3 you know that A1 goes with B1, etc? I hope that is the case, because with multiple threads receiving messages at the same time, I don't know how else you'll know which A goes with which B.http://stackoverflow.com/questions/929009/how-to-write-a-transactional-multi-threaded-wcf-service-consuming-msmq/929268#929268Comment by Bruce on How to write a transactional, multi-threaded WCF service consuming MSMQBruce2009-06-02T04:17:16Z2009-06-02T04:17:16ZStatic dictionary is not thread-safe. I'll update my answer with some sample code.http://stackoverflow.com/questions/930207/loading-unicode-characters-from-xml-and-push-into-form-via-ajax/930269#930269Comment by Bruce on Loading Unicode Characters from XML and push into Form via AJAXBruce2009-06-01T02:31:26Z2009-06-01T02:31:26ZI'll see about producing a working sample. In the meantime, what are you doing with the posted data? How are you verifying that it doesn't work?