User wingho - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:21:29Zhttp://stackoverflow.com/feeds/user/27926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/539431/how-to-create-xml-from-xml-fragments0how to create xml from xml fragmentswingho2009-02-11T23:59:43Z2009-11-13T20:22:03Z
<p>I am using SQL Server 2005 and I have a XML Data Type column that stores xml fragments like so in one big table:</p>
<pre><code>row 1 ..... <Order date='2009-02-11' customerID='4' />
row 2...... <OrderItem OrderID='6' ItemID='477' quantity='1' />
</code></pre>
<p>I would like to create an XML using T-SQL that looks like this from these nodes:</p>
<pre><code><Orders>
<Order data='2009-02-11' customerID='4'>
<OrderItems>
<OrderItem OrderID='5' ItemID='477' quantity='1'/>
</OrderItems>
</Order>
</Orders>
</code></pre>
<p>Any suggestions? Thank-you.</p>
http://stackoverflow.com/questions/240906/why-use-hashtable-synchronized2Why use Hashtable.Synchronized?wingho2008-10-27T18:12:18Z2009-10-19T17:18:50Z
<p>From the MSDN documentation:</p>
<p>"Synchronized supports multiple writing threads, provided that no threads are reading the Hashtable. The synchronized wrapper does not provide thread-safe access in the case of one or more readers and one or more writers."</p>
<p>Source:
<a href="http://msdn.microsoft.com/en-us/library/system.collections.hashtable.synchronized.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.collections.hashtable.synchronized.aspx</a></p>
<p>It sounds like I still have to use locks anyways, so my question is why would we use Hashtable.Synchronized at all?</p>
http://stackoverflow.com/questions/210620/asp-net-http-handlers-and-global-variables1ASP.NET HTTP handlers and global variableswingho2008-10-16T23:21:32Z2009-05-25T05:36:19Z
<p>I have created HTTP handlers. </p>
<p>How do I create global variables for these handlers like I can with ASP.net web pages in global.asax?</p>
http://stackoverflow.com/questions/306891/assembly-not-loading-for-asp-net-web-application0assembly not loading for asp.net web applicationwingho2008-11-20T21:22:50Z2009-04-25T11:08:42Z
<p>I have a web application which references an external .dll (lets call this productA.dll)</p>
<p>I have updated my GAC, my web.config, and my references, checked the versions and everything looks consistent.</p>
<p>However, when I run my application, methods that I use from productA.dll cannot be called, and I get a "the specified module cannot be found" error.</p>
<p>I tried creating a windows application and I can use productA.dll perfectly fine.</p>
<p>Observing the Output window during run-time for the web application, I noticed that productA.dll symbols are not loaded, so I'm guess that is why the module cannot be found. The question is, why are the symbols not being loaded?</p>
<p>Any tips on the solution or diagnostics techniques would be greatly appreciated.</p>
http://stackoverflow.com/questions/210250/how-do-i-attach-the-debugger-to-iis-instead-of-asp-net-development-server6How do I attach the debugger to IIS instead of ASP.NET Development Server?wingho2008-10-16T20:49:40Z2009-04-24T09:45:27Z
<p>I have an ASP.NET website and when I press F5 it automatically attaches to the ASP.NET Development Server, how do I attach to IIS worker process instead when I press F5?</p>
http://stackoverflow.com/questions/529286/httpcontext-current-is-null1HttpContext.Current is null wingho2009-02-09T18:30:10Z2009-02-11T00:11:03Z
<p>I am doing some asynchronous work on a separate thread using:</p>
<p>ThreadPool.QueueUserWorkItem(...)</p>
<p>and in this separate thread, I need to call HttpContext.Current so that I can access:</p>
<p>HttpContext.Current.Cache<br />
HttpContext.Current.Server<br />
HttpContext.Current.Request </p>
<p>however, HttpContext.Current is null when I create this separate thread.</p>
<p>My question is, how do I create a new thread so that HttpContext.Current is not null,</p>
<p>or if that is not possible, is there another way I can access the Cache, Server, and Request objects?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/267045/is-there-a-benefit-to-having-both-an-abstract-class-and-an-interface/267111#2671110Answer by wingho for Is there a benefit to having both an abstract class and an interface?wingho2008-11-05T23:16:08Z2008-11-05T23:28:38Z<p>I think a benefit of keeping the interface would be the ability for future classes to implement multiple interfaces whereas a class can only inherit from one abstract class.</p>
<p>You could extend the functionality of subclasses by creating a new Interface with a different set of methods. </p>
http://stackoverflow.com/questions/243586/tortoise-svn-marks-files-as-different-between-branches-but-no-differences-exist/245164#2451640Answer by wingho for Tortoise SVN marks files as different between branches but no differences existwingho2008-10-28T22:46:08Z2008-10-28T22:46:08Z<p>try the Clean up command, but read this first:</p>
<p><a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-cleanup.html" rel="nofollow">http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-cleanup.html</a></p>
http://stackoverflow.com/questions/241789/parse-datetime-with-timezone-of-form-pst-cest-utc-etc/242136#2421362Answer by wingho for Parse DateTime with timezone of form PST/CEST/UTC/etcwingho2008-10-28T03:18:23Z2008-10-28T03:29:08Z<p>I have two answers because I'm not exactly sure what you are asking.</p>
<p>1) I see you are using CultureInfo, so if you just want to <strong>format</strong>
the date and time to be culture specific, I would separate the date/time and timezone, apply culture method on the date/time and append the timezone. If "CEST" is different for different cultures, you will have to change it by listing all the options (maybe in a case statement). </p>
<p>2) If you want date/time to be converted to another timezone, you can't use CultureInfo, </p>
<p>I suggest reading:
<a href="http://msdn.microsoft.com/en-us/library/ms973825.aspx" rel="nofollow"><strong><a href="http://msdn.microsoft.com/en-us/library/ms973825.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973825.aspx</a></strong></a></p>
<p>You can also use the .net framework 3.5 class TimeZoneInfo (different from TimeZone) to make your life easier.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx</a></p>
http://stackoverflow.com/questions/231739/how-to-retrieve-data-from-dynamically-added-textboxes/231808#2318080Answer by wingho for How to retrieve data from dynamically added textboxes?wingho2008-10-23T22:29:49Z2008-10-23T22:29:49Z<p>To create dynamic controls, I would usually use a ASP.NET PlaceHolder Control and add the dynamic controls to this container. </p>
<p>I would give each dynamic control an ID.</p>
<p>You can then subsequently use FindControl on the PlaceHolder to access the dynamic controls.</p>
<p>I say "dynamic controls" to mean controls you add at run-time</p>
http://stackoverflow.com/questions/230150/new-web-app-project-does-not-recognize-the-asp-tag-space/231207#2312071Answer by wingho for New Web App Project does not recognize the <asp: tag spacewingho2008-10-23T19:51:48Z2008-10-23T19:51:48Z<p>Since this is the standard page that visual studio creates, except that you've added a button. We can rule out that there is anything wrong with the code.</p>
<p>I would start with what you said about "repairing the .NET framework". What was broken to begin with? Maybe your repair didn't fix the issue you had.</p>
<p>So from there, I would then examine what was recently installed on your computers. </p>
<p>I would then examine the web.config file to make sure it is referencing all the correct assemblies.</p>
<p>if you can provide anymore info that would help lots.</p>
http://stackoverflow.com/questions/213784/in-my-codebehind-class-how-do-i-retrieve-the-authorized-roles/214264#2142642Answer by wingho for In my codebehind class, how do I retrieve the authorized roles?wingho2008-10-18T00:27:24Z2008-10-18T00:27:24Z<pre><code>// set the configuration path to your config file
string configPath = "??";
Configuration config = WebConfigurationManager.OpenWebConfiguration(configPath);
// Get the object related to the <identity> section.
AuthorizationSection section = (AuthorizationSection)config.GetSection("system.web/authorization");
</code></pre>
<p>from the section object get the AuthorizationRuleCollection object where you can then extract the Roles. </p>
<p>Note: You'll probably need to modify the path to the section a bit since you start with "location path="RestrictedPage.aspx"", I didn't try that scenario.</p>
http://stackoverflow.com/questions/202184/how-to-manage-concurrency-for-inserting-in-c1how to manage concurrency for inserting in C#?wingho2008-10-14T18:03:05Z2008-10-14T18:59:50Z
<p>Many optimistic concurrency examples refer to updates by using a database timestamp or flag.</p>
<p>However, I want to handle optimistic concurrency for INSERTS </p>
<p>To illustrate here is a fake scenario:</p>
<p>Multiple users can insert a journal entry at the same time, but allow only one journal entry is allowed per date. </p>
<p>Without any concurrency control since multiple users can create journal entries, I can end up with multiple journal entries on the same date. </p>
<p>How do I prevent this from happening at the application layer WITHOUT the use of the database (i.e. a database unique key constraint) </p>
http://stackoverflow.com/questions/202113/how-to-stop-worrying-about-using-the-best-materials-and-just-start-learning-net/202258#2022580Answer by wingho for How to stop worrying about using the best materials and just start learning .Net?wingho2008-10-14T18:26:03Z2008-10-14T18:26:03Z<p>When you work at a new job, you learn a lot because you have great individuals who transfer a lot of knowledge they find useful. You can review how they do things, which parts are done well and which parts are done poorly.</p>
<p>Learning by isolation is hard especially when there are so many resources out there.</p>
<p>I recommend connecting with individuals in your local community user group or an online group, or start your own group. Many of these individuals will have had real-world experience and can help direct your learning path more effectively.</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263580#263580Comment by wingho on Showing too much 'skin' detection in softwarewingho2008-11-04T21:50:21Z2008-11-04T21:50:21Zhaha yeah that's another casehttp://stackoverflow.com/questions/240906/why-use-hashtable-synchronized/240923#240923Comment by wingho on Why use Hashtable.Synchronized?wingho2008-10-27T18:28:24Z2008-10-27T18:28:24Zso the final result of all the multi-thread writes to this synchronized data structure will be the same final result if I were to had a lock on the data structure?http://stackoverflow.com/questions/240906/why-use-hashtable-synchronized/240915#240915Comment by wingho on Why use Hashtable.Synchronized?wingho2008-10-27T18:22:27Z2008-10-27T18:22:27Zwhen you say "you don't want the data to be corrupt", how would that look like if the data were corrupt? I consider displaying the wrong count as corrupt.http://stackoverflow.com/questions/48026/good-book-on-scaling-asp-net-applications/48073#48073Comment by wingho on Good Book on Scaling Asp.Net applicationswingho2008-10-22T20:23:49Z2008-10-22T20:23:49ZBuilding Scalable Web Sites by Cal Henderson (lead developer of Flickr)http://stackoverflow.com/questions/210620/asp-net-http-handlers-and-global-variables/210647#210647Comment by wingho on ASP.NET HTTP handlers and global variableswingho2008-10-16T23:40:21Z2008-10-16T23:40:21Zthanks, this is a good alternative solution that I will investigatehttp://stackoverflow.com/questions/202184/how-to-manage-concurrency-for-inserting-in-c/202207#202207Comment by wingho on how to manage concurrency for inserting in C#?wingho2008-10-14T19:01:52Z2008-10-14T19:01:52Zyou are right harley, but that's the constraint I have