User Kev - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T20:19:42Z http://stackoverflow.com/feeds/user/419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/476499/naming-conventions-in-c-compared-to-java/476504#476504 4 Answer by Kev for Naming conventions in C# compared to Java Kev 2009-01-24T19:03:54Z 2009-12-11T21:49:12Z <p>AKU's answer should help you out:</p> <p><a href="http://stackoverflow.com/questions/55692/-net-namespaces#55700">http://stackoverflow.com/questions/55692/-net-namespaces#55700</a></p> <p>He links to Microsoft's guidelines: </p> <p><a href="http://msdn.microsoft.com/en-us/library/893ke618%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/893ke618(VS.71).aspx</a></p> <p>You should consider reading the the rest of the guidelines starting here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/czefa0ke%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/czefa0ke(VS.71).aspx</a></p> <p>The remainder of the post is also very informative:</p> <p><a href="http://stackoverflow.com/questions/55692/-net-namespaces">http://stackoverflow.com/questions/55692/-net-namespaces</a></p> <p>In your case you would go with:</p> <pre><code>CompanyName.ProductName CompanyName.ProductName.ClassName CompanyName.ClassName.IsUpperCase(string str) </code></pre> <p>The .NET guidelines don't follow the Java style of using reversed FQ domain names to specify namespaces, and I've yet to see a commercial component such as Telerik or Infragistics for example follow anything other the guidelines than the MS ones.</p> <p>HTH<br> Kev</p> http://stackoverflow.com/questions/1883619/get-iis6-to-load-json-files-without-server-wide-change/1885441#1885441 0 Answer by Kev for get IIS6+ to load JSON files without server-wide change? Kev 2009-12-11T02:20:11Z 2009-12-11T02:20:11Z <p>In IIS6, unfortunately, unless you can persuade all your customers to add the <code>.json</code> mime type, you're kind of out of luck.</p> <p>I don't see any downside of storing the JSON content as say <code>.json.txt</code> however.</p> <p>On IIS 7, if the hoster has delegated control of the <code>&lt;staticContent&gt;</code> configuration section in <code>&lt;system.webServer&gt;</code> to the site user then you can control this in the <code>web.config</code> file.</p> http://stackoverflow.com/questions/338430/visual-studio-2008-sometimes-wont-open-aspx-html-markup 1 Visual Studio 2008 sometimes won't open .aspx html markup Kev 2008-12-03T19:27:48Z 2009-12-10T21:24:36Z <p>Every now and again I encounter a problem where Visual Studio Professional 2008 (SP1) refuses to open an aspx page. My site is in a Web Application Project. </p> <p>Double clicking on the aspx page in solution explorer just causes the tree view node with the code behind and .designer.cs to collapse and expand, it's almost as if VS thinks the file is already open, but it's definately not. </p> <p>I've also tried right-click + View Markup or View Designer but no joy. I also tried unloading/reloading the project in solution explorer but that doesn't solve the problem either, I actually have to close the whole solution then re-open again (which can take a while if there's lots of projects in the solution).</p> <p>This sometimes happens on just one or two files, others open without any problems. Anyone else seen this and know of any work arounds and cause?</p> <p>Cheers<br /> Kev</p> http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically/1867266#1867266 1 Answer by Kev for How to set Authentication Methods in IIS programattically Kev 2009-12-08T14:20:59Z 2009-12-09T00:32:49Z <p>I answered a very similar question a wee while back. The example uses the <code>asdutil.vbs</code> tool which you can call from your batch file:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/1571609/setting-ntauthenticationproviders-at-an-application-level-in-iis-6/1576017#1576017">Setting NTAuthenticationProviders at an Application level in IIS 6 (Stack Overflow)</a></p> </blockquote> <p><strong>Updated:</strong></p> <p>Because you've already got a <em>CScript</em> script to create the website, you can just set the <code>AuthFlags</code> in the script:</p> <pre><code>'' Some values just as an example iisNumber = 668 ipAddress = "172.16.3.200" hostName = "myserver.com" wwwfolder = "c:\mysites\www" Dim serverBindings(1) serverBindings(0) = ipAddress &amp; ":80:www." &amp; hostName serverBindings(1) = ipAddress &amp; ":80:" &amp; hostName '' Create server Set w3svc = GetObject("IIS://localhost/w3svc") Set newWebServer = w3svc.Create("IIsWebServer", iisNumber) newWebServer.ServerBindings = serverBindings newWebServer.ServerComment = "Server is: " &amp; hostName newWebServer.SetInfo '' Create /root app Set rootApp = newWebServer.Create("IIsWebVirtualDir", "ROOT") rootApp.Path = wwwFolder rootApp.AccessRead = true rootApp.AccessScript = true rootApp.AppCreate(True) rootApp.AuthFlags = 4 '' &lt;== Set AuthFlags here rootApp.SetInfo </code></pre> http://stackoverflow.com/questions/1571609/setting-ntauthenticationproviders-at-an-application-level-in-iis-6/1576017#1576017 1 Answer by Kev for Setting NTAuthenticationProviders at an Application level in IIS 6 Kev 2009-10-16T01:27:10Z 2009-12-08T14:40:56Z <p>The metabase property that controls the Authenticated Access property values on the IIS Directory Security -> Authentication Methods dialogue is actually called <code>AuthFlags</code>.</p> <p>The value is a flag and is documented here:</p> <blockquote> <p><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/6cc53bc1-6487-412c-ae93-063cd86b4f6e.mspx?mfr=true" rel="nofollow">AuthFlags Metabase Property (IIS 6.0) (TechNet)</a></p> </blockquote> <p>To set this value to Integrated Windows Authentication (<code>AuthNTLM</code>) use the following command (<em>take care because this command operates on the Default Website, IISNumber:1</em>) -</p> <blockquote> <p><code>adsutil.vbs SET /W3SVC/1/ROOT/MyApplication/AuthFlags 4</code></p> </blockquote> <p>If you want to set, say, both NTLM and Basic authentication then you would boolean OR the values together, e.g. <code>MD_AUTH_BASIC | AuthNTLM</code>. This would product an integer result of <code>6</code>:</p> <blockquote> <p><code>:: Set both NTLM and Basic authentication</code><br> <code>adsutil.vbs SET /W3SVC/1/ROOT/MyApplication/AuthFlags 6</code></p> </blockquote> <p>If you inspect the metabase file (<code>C:\WINDOWS\system32\inetsrv\MetaBase.xml</code>) and search for:</p> <blockquote> <p><code>Location="/LM/W3SVC/1/ROOT/MyApplication"</code></p> </blockquote> <p>...you will see the attribute that controls this setting (after setting to 6 as above):</p> <blockquote> <p><code>AuthFlags="AuthBasic | AuthNTLM"</code></p> </blockquote> <p>It may take some time before this value updates in the metabase because changes such as this aren't immediately flushed to the file (although IISRESET will cause it to update immediately). </p> http://stackoverflow.com/questions/1860108/where-can-i-find-management-scripts-for-iis-6-0/1861389#1861389 1 Answer by Kev for Where can I find management scripts for IIS 6.0? Kev 2009-12-07T17:09:42Z 2009-12-07T17:09:42Z <p>I answered a similar question the other day:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/1850225/automated-creation-of-iis-websites/1856590#1856590">Automated creation of IIS websites (Stack Overflow)</a></p> </blockquote> <p>You can use the <code>System.DirectoryServices</code> namespace directly from PowerShell as well as C#.</p> http://stackoverflow.com/questions/1861113/how-to-use-microsoft-web-administration-without-iis7/1861327#1861327 0 Answer by Kev for How to use Microsoft.Web.Administration without IIS7 Kev 2009-12-07T17:00:10Z 2009-12-07T17:00:10Z <p>The short answer is no, you can't do this. IIS6 and IIS7 are completely different products and there are major differences in the way that configuration data is stored.</p> <p>You could mock/stub the <code>Microsoft.Web.Administration</code> namespace but I think your time would be better spent moving to an OS that runs IIS7 (Vista, Windows 7, Windows 2008).</p> http://stackoverflow.com/questions/1861135/how-do-i-create-a-windows-service-using-vb-net-in-studio-2008-standard-no-templa/1861229#1861229 2 Answer by Kev for How do I create a Windows Service using vb.net in Studio 2008 Standard (No template) Kev 2009-12-07T16:45:51Z 2009-12-07T16:45:51Z <p>There's nothing really special about the Windows Service template. It creates two class files in your project and adds a reference to <code>System.ServiceProcess</code>:</p> <p>Service1.vb:</p> <pre><code>Public Class Service1 Protected Overrides Sub OnStart(ByVal args() As String) '' Add code here to start your service. This method should set things '' in motion so your service can do its work. End Sub Protected Overrides Sub OnStop() '' Add code here to perform any tear-down necessary to stop your service. End Sub End Class </code></pre> <p>Service1.Designer.vb:</p> <pre><code>Imports System.ServiceProcess &lt;Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()&gt; _ Partial Class Service1 Inherits System.ServiceProcess.ServiceBase ''UserService overrides dispose to clean up the component list. &lt;System.Diagnostics.DebuggerNonUserCode()&gt; _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub '' The main entry point for the process &lt;MTAThread()&gt; _ &lt;System.Diagnostics.DebuggerNonUserCode()&gt; _ Shared Sub Main() Dim ServicesToRun() As System.ServiceProcess.ServiceBase '' More than one NT Service may run within the same process. To add '' another service to this process, change the following line to '' create a second service object. For example, '' '' ServicesToRun = New System.ServiceProcess.ServiceBase () {New Service1, New MySecondUserService} '' ServicesToRun = New System.ServiceProcess.ServiceBase() {New Service1} System.ServiceProcess.ServiceBase.Run(ServicesToRun) End Sub ''Required by the Component Designer Private components As System.ComponentModel.IContainer '' NOTE: The following procedure is required by the Component Designer '' It can be modified using the Component Designer. '' Do not modify it using the code editor. &lt;System.Diagnostics.DebuggerStepThrough()&gt; _ Private Sub InitializeComponent() components = New System.ComponentModel.Container() Me.ServiceName = "Service1" End Sub End Class </code></pre> http://stackoverflow.com/questions/1850225/automated-creation-of-iis-websites/1856590#1856590 1 Answer by Kev for Automated creation of IIS websites Kev 2009-12-06T21:01:03Z 2009-12-06T21:01:03Z <p>If you wanted to do this in a WinForms/Console application then I'd highly recommend looking at the <code>System.DirectoryServices</code> namespace.</p> <p>There's some good documentation here:</p> <blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/ms525791.aspx" rel="nofollow">Using System.DirectoryServices to Configure IIS (MSDN)</a></p> </blockquote> <p>For example, to create sites and virtual directories:</p> <blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/ms524896.aspx" rel="nofollow">Creating Sites and Virtual Directories Using System.DirectoryServices (MSDN)</a></p> </blockquote> <p>The <code>System.DirectoryServices</code> namespace is a managed wrapper around the ADSI API's that the various IIS administration scripts use.</p> <p>For more information on the various metabase properties you'll encounter I recommend this reference:</p> <blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/ms525644.aspx" rel="nofollow">IIS Metabase Properties (MSDN)</a></p> </blockquote> <p>If or when you move onto IIS7 then I recommend taking a look at the <code>Microsoft.Web.Administration</code> namespace and the <code>APPCMD</code> tool.</p> http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query 1 How do I fix this SQL GROUP BY query? Kev 2009-12-03T10:50:38Z 2009-12-03T11:27:53Z <p>I have the following query:</p> <pre><code>SELECT dev.DeviceName, Count(dom.DomainID) AS CountOfDomains FROM tblDevices dev JOIN tblIPNumbers ip ON dev.DeviceName = ip.ServerName JOIN tblDomains dom ON dom.IPNumberID = ip.IPNumberID WHERE dom.PointerTo=0 AND dev.DeviceType='3' AND (dev.[System]='32' OR dev.[System]='33') AND dom.ClosedDate IS NULL AND dev.Active=1 GROUP BY dev.DeviceName ORDER BY Count(dom.DomainID) </code></pre> <p>The tables look like:</p> <pre> tblDomains ========== DomainID int IPNumberID int ClosedDate datetime PointerTo int tblIPNumbers ============ IPNumberID int ServerName varchar(200) tblDevices ========== DeviceID int DeviceName varchar(200) System varchar(10) DeviceType varchar(10) Active bit </pre> <p>Sample Data:</p> <pre> tblDomains: =========== DomainID: 1234 IPNumberID: 1000 ClosedDate: NULL PointerTo: 0 tblIPNumbers: ============= IPNumberID: 1000 ServerName: WIN2008-01 tblDevices: =========== DeviceID: 1 DeviceName: WIN2008-01 System: 32 Active: 1 DeviceType: 3 </pre> <p>The problem is that if there are no rows in <code>tblDomains</code> that match an <code>IPNumberID</code> in <code>tblIPNumbers</code> I get no rows returned. I'd like the query to return a single row of <code>0</code> for <code>Count(dom.DomainID) AS CountOfDomains</code> in this case.</p> <p>I've tried various combinations of <code>LEFT</code> and <code>RIGHT</code> joins and it seems like a simple problem but my SQL-fu is low today.</p> http://stackoverflow.com/questions/1829531/how-do-i-merge-multiple-net-assemblies-into-a-single-assembly/1829542#1829542 5 Answer by Kev for How do I merge multiple .net assemblies into a single assembly? Kev 2009-12-01T22:57:13Z 2009-12-01T22:57:13Z <p>ILMerge is the tool you're looking for:</p> <blockquote> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&amp;displaylang=en" rel="nofollow">ILMerge</a></p> </blockquote> http://stackoverflow.com/questions/1804509/is-there-a-way-to-fail-over-to-a-local-copy-of-script-libraries-if-googles-cdn-g 0 Is there a way to fail-over to a local copy of script libraries if Google's CDN goes down? [closed] Kev 2009-11-26T16:00:12Z 2009-11-26T16:04:25Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1014203/best-way-to-use-googles-hosted-jquery-but-fall-back-to-my-hosted-library-on-goo">Best way to use Google&rsquo;s hosted jQuery, but fall back to my hosted library on Google fail</a> </p> </blockquote> <p>Current/best practice advice seems to advocate using Google (or say Microsoft's) CDN to host common JavaScript libraries such as jQuery and Prototype.</p> <p>In the rare event that either of these CDN's become unavailable to the end user, is it possible to fail-over to another CDN or local script repository (on the site's web server)?</p> <p>If so, what is the best approach?</p> http://stackoverflow.com/questions/1797192/how-to-manage-multiple-ado-net-database-connections-from-asmx-web-service/1799319#1799319 0 Answer by Kev for how to manage multiple ado.net database connections from asmx Web Service Kev 2009-11-25T19:15:28Z 2009-11-25T19:15:28Z <p>As Darin correctly states in <a href="http://stackoverflow.com/questions/1797192/how-to-manage-multiple-ado-net-database-connections-from-asmx-web-service/1797225#1797225">his answer</a>, you should allow the connection pooling mechanism to do its job. Don't try and build something 'clever', it won't be as good.</p> <p>The golden rule with expensive resources such as database connections is to acquire late and release early. As long as you abide by that then you'll do just fine.</p> http://stackoverflow.com/questions/1798157/iis-6-ignores-web-config-authorization-settings/1799282#1799282 0 Answer by Kev for IIS 6 ignores Web.config authorization settings Kev 2009-11-25T19:10:34Z 2009-11-25T19:10:34Z <p>Static files such as <code>.jpg</code>, <code>.xml</code> and <code>.pdf</code> are by default handled directly by the kernel mode <code>http.sys</code> driver. Unless you've mapped these extensions to ASP.NET they will never hit the ASP.NET pipeline and hence the authorisation mechanism within ASP.NET.</p> http://stackoverflow.com/questions/1039062/c-net-server-path-to-default-index-page/1039093#1039093 5 Answer by Kev for C#/.NET Server Path to default/index page Kev 2009-06-24T15:26:52Z 2009-11-25T17:56:13Z <p>ASP.NET has no knowledge of this. You would need to query IIS for the default document list.</p> <p>The reason for this is that IIS will look in your web folder for the first matching file in the IIS default document list then hand off to the matching ISAPI extension for that file type (by extension) in the script mappings.</p> <p>To obtain the default document list you can do the following (using the Default Website as an example where the IIS Number = 1):</p> <pre><code>using System; using System.DirectoryServices; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { using (DirectoryEntry w3svc = new DirectoryEntry("IIS://Localhost/W3SVC/1/root")) { string[] defaultDocs = w3svc.Properties["DefaultDoc"].Value.ToString().Split(','); } } } } </code></pre> <p>It would then be a case of iterating the <code>defaultDocs</code> array to see which file exists in the folder, the first match is the default document. For example:</p> <pre><code>// Call me using: string doc = GetDefaultDocument("/"); public string GetDefaultDocument(string serverPath) { using (DirectoryEntry w3svc = new DirectoryEntry("IIS://Localhost/W3SVC/1/root")) { string[] defaultDocs = w3svc.Properties["DefaultDoc"].Value.ToString().Split(','); string path = Server.MapPath(serverPath); foreach (string docName in defaultDocs) { if(File.Exists(Path.Combine(path, docName))) { Console.WriteLine("Default Doc is: " + docName); return docName; } } // No matching default document found return null; } } </code></pre> <p>Sadly this won't work if you're in a partial trust ASP.NET environment (for example shared hosting).</p> http://stackoverflow.com/questions/1791749/how-can-i-get-asp-net-version-in-iis-through-c/1792358#1792358 0 Answer by Kev for How can I get ASP.Net version in IIS through C#? Kev 2009-11-24T19:25:24Z 2009-11-24T21:49:23Z <p>I'm assuming you're using IIS 6. In IIS 6 there is no way to set the ASP.NET version by setting a single property.</p> <p>What you need to do is set the script maps for the ASP.NET extensions (<code>.aspx</code>, <code>.asmx</code> and so on) to the following path:</p> <blockquote> <p><code>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll</code></p> </blockquote> http://stackoverflow.com/questions/1729449/how-to-use-appcmd-to-set-debugfalse-in-iis7/1734631#1734631 1 Answer by Kev for How to use appcmd to set debug=false in IIS7 Kev 2009-11-14T15:53:51Z 2009-11-20T20:02:32Z <p>I think this is a bug or 'by design'. Having investigated this I noticed that it's possible to add and modify other attributes of the <code>&lt;compilation /&gt;</code> section (I haven't tried them all).</p> <p>For example the following work just fine:</p> <blockquote> <p><code>APPCMD SET CONFIG "SITE/VDIR" section:compilation /batch:False /commit:APP</code><br> <code>APPCMD SET CONFIG "SITE/VDIR" section:compilation /defaultLanguage:"c#" /commit:APP</code></p> </blockquote> <p>But as you observe it's just not possible to alter the <code>debug</code> attribute. It may be worth raising this as a bug on the MS Connect site if you've got that ability:</p> <blockquote> <p><a href="http://connect.microsoft.com/" rel="nofollow">Microsoft Connect</a></p> </blockquote> <p>I also popped a question on the IIS forums:</p> <blockquote> <p><a href="http://forums.iis.net/p/1162636/1924758.aspx" rel="nofollow">Possible bug: Unable to set the "debug" attribute in the "compilation" section in web.config (IIS.NET)</a></p> </blockquote> <p><strong>Update:</strong></p> <p>This has been confirmed as an issue by a Microsoft employee:</p> <blockquote> <p><a href="http://forums.iis.net/p/1162636/1925544.aspx#1925544" rel="nofollow">Reply to Possible bug: Unable to set the "debug" attribute in the "compilation" section in web.config (IIS.NET)</a></p> </blockquote> http://stackoverflow.com/questions/1766282/is-it-possible-to-debug-iis-without-affecting-all-users-of-the-service/1767723#1767723 1 Answer by Kev for Is it possible to debug IIS without affecting all users of the service? Kev 2009-11-20T01:11:48Z 2009-11-20T01:11:48Z <blockquote> <p>"When someone attaches the debugger and steps through the code, we find that all users are affected. In essence the web server stops handling all requests from all users."</p> </blockquote> <p>This is normal, once you attach a debugger to a process such as <code>inetinfo.exe</code> or <code>w3wp.exe</code> and set a break point, every request/thread will be blocked until you allow the debugger to continue, until the next break-point.</p> http://stackoverflow.com/questions/1764040/file-copy-filenotfoundexception-reported-randomly-when-its-never-true/1764101#1764101 0 Answer by Kev for File.Copy FileNotFoundException reported randomly when it's never true Kev 2009-11-19T15:29:12Z 2009-11-19T15:29:12Z <p>I agree with <a href="http://stackoverflow.com/questions/1764040/file-copy-filenotfoundexception-reported-randomly-when-its-never-true/1764069#1764069">Dave's answer</a> that this looks like a timing issue. Also, if a file can't be deleted for any reason then usually <code>File.Delete</code> will throw an exception. Perhaps you should be catching that instead and reworking your logic.</p> http://stackoverflow.com/questions/1763491/net-webservice-doesnt-return-json-data-anymore/1763583#1763583 0 Answer by Kev for .NET Webservice doesn't return JSON data anymore Kev 2009-11-19T14:16:29Z 2009-11-19T14:39:54Z <p>Are you missing the following attributes from your web service methods?:</p> <pre><code>[WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] </code></pre> <p>Also what happens when you use a relative URL, i.e.:</p> <pre><code>xhrGegevens.open("POST", "ZDFMobielWebservice.asmx/getGegevensVerzekerde", true); </code></pre> http://stackoverflow.com/questions/1763439/how-to-turn-off-the-sound-of-alert-or-is-there-any-good-alternative-in-jquery/1763490#1763490 0 Answer by Kev for How to turn off the sound of alert(), or is there any good alternative in Jquery? Kev 2009-11-19T14:05:30Z 2009-11-19T14:05:30Z <p>You could try <a href="http://www.malsup.com/jquery/block/#dialog" rel="nofollow">BlockUI</a> or <a href="http://dev.iceburg.net/jquery/jqModal/#examples" rel="nofollow">jqModal</a> for jQuery, both very cool and easy to use.</p> http://stackoverflow.com/questions/1756917/path-propfind-is-forbidden/1761150#1761150 1 Answer by Kev for Path 'PROPFIND' is forbidden? Kev 2009-11-19T05:47:30Z 2009-11-19T05:47:30Z <p>It could be one of two issues:</p> <ol> <li><code>PROPFIND</code> is not defined as a permissable verb on the website for the ASP.NET scriptmap.</li> <li>The server is running UrlScan and does not permit <code>PROPFIND</code>. Check the <code>[AllowVerbs]</code> and <code>[DenyVerbs]</code> sections of <code>c:\Windows\System32\InetSrv\urlscan\UrlScan.ini</code></li> </ol> http://stackoverflow.com/questions/1756868/splitting-a-string-in-c/1756965#1756965 1 Answer by Kev for Splitting a string in C# Kev 2009-11-18T15:53:09Z 2009-11-18T15:53:09Z <p>For the benefit of the folks who suggest RegEx, can I just point to this answer:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">RegEx match open tags except XHTML self-contained tags (Stack Overflow)</a></p> </blockquote> <p>Just say no.</p> http://stackoverflow.com/questions/1756860/implicit-conversion-from-void-to-xmldocument/1756893#1756893 2 Answer by Kev for Implicit conversion from void to XmlDocument Kev 2009-11-18T15:43:53Z 2009-11-18T15:43:53Z <p>The problem is this line:</p> <pre><code>return _Doc.LoadXml(_File); </code></pre> <p>You're trying to return a value from a method that has a return type of <code>void</code>.</p> <p>Try this instead:</p> <pre><code>private XmlDocument XmlDoc { get { XmlDocument _Doc = new XmlDocument(); _Doc.LoadXml(_File); return _Doc; } } </code></pre> http://stackoverflow.com/questions/1755416/how-can-i-parse-the-following-text-file/1755886#1755886 0 Answer by Kev for How can I parse the following text file? Kev 2009-11-18T13:15:31Z 2009-11-18T13:23:45Z <p>Here's some code that might help you get started. I've made a number of assumptions based on the data file format:</p> <ol> <li>Each row in the person address has the Name, Building/Flat and Card ID at fixed positions.</li> <li>The name of the person is Firstname and Surname (although can cope with any number of middle names/initials)</li> <li>The Town ID and name are on the first row</li> <li>The person row always starts with at least two spaces</li> <li>Empty rows are just that, empty</li> </ol> <p>It's a bit of a hack, doesn't use any regular expressions but does work for the layout examples given above (I'm presuming these are machine generated). The code just parses a single file to a Citizen class which you can then insert to a database table, I'm assuming you know how to do that.</p> <p>I'm sure there's plenty of optimisations, but it's there to get you going:</p> <pre><code>using System; using System.IO; namespace AddressParser { class Program { public class TownInfo { public int TownID { get; set; } public string TownIDAsString { get; set; } public string Town { get; set; } } public class Citizen { public TownInfo Town { get; set; } public string Street { get; set; } public string FirstName { get; set; } public string Surname { get; set; } public string Building { get; set; } public string Flat { get; set; } public string CardID { get; set; } } static void Main(string[] args) { string dataFile = @"d:\testdata\TextFile1.txt"; ParseAddressFileToDatabase(dataFile); } static void ParseAddressFileToDatabase(string dataFile) { using(StreamReader sr = new StreamReader(dataFile)) { string line; bool isFirstLine = true; string currentStreet = null; TownInfo townInfo = null; while((line = sr.ReadLine()) != null) { if(isFirstLine) { townInfo = ParseTown(line); isFirstLine = false; } if(line.Trim() == String.Empty) continue; while(line != null &amp;&amp; line.StartsWith(" ")) { Citizen citizen = ParseCitizen(line, townInfo, currentStreet); // // Insert record into DB here // line = sr.ReadLine(); } currentStreet = line; } } } private static TownInfo ParseTown(string line) { string[] town = line.Split('-'); return new TownInfo() { TownID = Int32.Parse(town[0].Trim()), TownIDAsString = town[0].Trim(), Town = town[1].Replace("(Citizens)","").Trim() }; } private static Citizen ParseCitizen(string line, TownInfo townInfo, string currentStreet) { string[] name = line.Substring(2, 23).Trim().Split(' '); string firstName = name[0]; string surname = name[name.Length - 1]; // Assumes fixed positions for some fields string buildingOrFlat = line.Substring(24, 22).Trim(); string cardID = line.Substring(46).Trim(); // Split building or flat string[] flat = buildingOrFlat.Split(','); return new Citizen() { Town = townInfo, Street = currentStreet, FirstName = firstName, Surname = surname, Building = flat.Length == 0 ? buildingOrFlat : flat[0], Flat = flat.Length == 2 ? flat[1].Trim() : "", CardID = cardID }; } } } </code></pre> http://stackoverflow.com/questions/1750417/multithreading-with-asp-net-and-iis/1750539#1750539 7 Answer by Kev for Multithreading with ASP.NET and IIS Kev 2009-11-17T17:42:47Z 2009-11-18T11:40:30Z <p>IIS isn't really the place you should be executing long running tasks such as this. We have very similar requirements where we need to initiate long running maintenance tasks on our web servers. These jobs are started via a web service and then handed off to a Windows Service. As long as the Windows service is still alive we can query the tasks for their progress. This means our long running tasks can survive an <code>IISRESET</code>. </p> <p><code>IISRESET</code> is pretty much all or nothing and is insensitive to .NET threads you have running in your ASP.NET application.</p> <p>The <code>/NOFORCE</code> switch is there to tell <code>IISRESET</code> not to forcefully reset IIS if the service doesn't respond within one minute. <code>IISRESET</code> has no knowledge of your .NET applications and will kill your application dead.</p> <p><strong>Update:</strong></p> <p>To answer the question in Steve's comment: "How do you recommend passing data to the Windows Service from IIS?". What to do is host a .NET Remoting or WCF application in the windows service and pass data/messages using Named Pipes (only if intra-machine calls are required).</p> http://stackoverflow.com/questions/1738596/net-c-order-management-library/1738695#1738695 0 Answer by Kev for .net c# order management library Kev 2009-11-15T20:21:48Z 2009-11-15T20:21:48Z <p>This might help start you off if you're stuck with getting started with your database schema, it's a library of free database models:</p> <blockquote> <p><a href="http://www.databaseanswers.org/data%5Fmodels/" rel="nofollow">Library of Free Data Models from DatabaseAnswers.org</a></p> </blockquote> <p>There's even a sample <a href="http://www.databaseanswers.org/data%5Fmodels/e%5Fcommerce/index.htm" rel="nofollow">Orders and Shipping model</a> you could start off with.</p> <p>I'd then suggest starting off with tool such as SubSonic or Linq to SQL to build your data access widgets:</p> <blockquote> <p><a href="http://www.subsonicproject.com/" rel="nofollow">SubSonic Project</a></p> </blockquote> http://stackoverflow.com/questions/1737610/utilizing-less-memory-in-asp-net/1738352#1738352 0 Answer by Kev for Utilizing less memory in ASP.NET Kev 2009-11-15T18:24:23Z 2009-11-15T18:47:23Z <p>There will always be a baseline minimum amount of memory required to start even the most basic of ASP.NET applications. This is because there's not just your application but there's also the ASP.NET infrastructure, CLR and assorted plumbing being loaded into the worker process (and whatever memory reservations the managed heap is making up front). </p> <p>Stop worrying about this until you encounter real memory pressure issues such as leaks. What you're seeing is normal.</p> http://stackoverflow.com/questions/1731248/programmatic-html-post-with-c-net-1-1/1731378#1731378 1 Answer by Kev for Programmatic HTML POST with C#.NET 1.1 Kev 2009-11-13T19:31:53Z 2009-11-13T19:31:53Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx" rel="nofollow">HttpWebRequest</a> and <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.aspx" rel="nofollow">HttpWebResponse</a> classes to achieve this.</p> <p>For example, to POST to an HTML form that has two fields, <code>username</code> and <code>password</code> you would do something like this:</p> <pre><code>NameValueCollection nv = new NameValueCollection(); nv.Add("username", "bob"); nv.Add("password", "password"); string method = "POST"; // or GET string url = "http://www.somesite.com/form.html"; HttpStatusCode httpStatusCode; string response = SendHTTPRequest(nv, method, url, out httpStatusCode); public static string SendHTTPRequest(NameValueCollection data, string method, string url, out HttpStatusCode httpStatusCode) { StringBuilder postData = new StringBuilder(); foreach(string key in data) { postData.Append(key + "=" + data[key] + "&amp;"); } if(method == "GET" &amp;&amp; data.Count &gt; 0) { url += "?" + postData.ToString(); } HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.Method = method; httpWebRequest.Accept = "*/*"; httpWebRequest.ContentType = "application/x-www-form-urlencoded"; if(method == "POST") { using(Stream requestStream = httpWebRequest.GetRequestStream()) { using(MemoryStream ms = new MemoryStream()) { using(BinaryWriter bw = new BinaryWriter(ms)) { bw.Write(Encoding.GetEncoding(1252).GetBytes(postData.ToString())); ms.WriteTo(requestStream); } } } } return GetWebResponse(httpWebRequest, out HttpStatusCode httpStatusCode); } private static string GetWebResponse(HttpWebRequest httpWebRequest, out HttpStatusCode httpStatusCode) { using(HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse()) { httpStatusCode = httpWebResponse.StatusCode; if(httpStatusCode == HttpStatusCode.OK) { using(Stream responseStream = httpWebResponse.GetResponseStream()) { using(StreamReader responseReader = new StreamReader(responseStream)) { StringBuilder response = new StringBuilder(); char[] read = new Char[256]; int count = responseReader.Read(read, 0, 256); while(count &gt; 0) { response.Append(read, 0, count); count = responseReader.Read(read, 0, 256); } responseReader.Close(); return response.ToString(); } } } return null; } } </code></pre> http://stackoverflow.com/questions/1729973/filter-sql-queries-on-the-xml-column-using-xpath-xquery/1730176#1730176 1 Answer by Kev for Filter SQL queries on the XML column using XPath/XQuery Kev 2009-11-13T16:07:07Z 2009-11-13T16:07:07Z <p>If you haven't already done so, I'd also suggest making sure you've got indexes on your XML columns.</p> <blockquote> <p><a href="http://sqlserverpedia.com/wiki/XML%5FIndexes%5FOverview" rel="nofollow">XML Indexes Overview (SQLServerPedia.com)</a></p> </blockquote> http://stackoverflow.com/questions/1910658/how-can-i-set-global-mime-types-for-iis6-programmatically Comment by Kev on How can I set global mime-types for IIS6 programmatically? Kev 2009-12-17T17:01:56Z 2009-12-17T17:01:56Z Is PowerShell or C#/.NET available on the machine? http://stackoverflow.com/questions/1916848/retrieving-data-from-oledb-query-not-displaying-in-messagebox/1916876#1916876 Comment by Kev on Retrieving data from OleDb query not displaying in MessageBox Kev 2009-12-16T19:01:16Z 2009-12-16T19:01:16Z Yes you do have to call <code>rdr.Read()</code>. http://stackoverflow.com/questions/338430/visual-studio-2008-sometimes-wont-open-aspx-html-markup/1884139#1884139 Comment by Kev on Visual Studio 2008 sometimes won't open .aspx html markup Kev 2009-12-10T23:35:50Z 2009-12-10T23:35:50Z Sorry should have mentioned that I did once install DevExpress CodeRush (demo edition) but it got uninstalled because I preferred ReSharper. I don't remember now if it was installed at that time. http://stackoverflow.com/questions/338430/visual-studio-2008-sometimes-wont-open-aspx-html-markup/1884139#1884139 Comment by Kev on Visual Studio 2008 sometimes won't open .aspx html markup Kev 2009-12-10T23:33:44Z 2009-12-10T23:33:44Z This hasn't happened for ages now. I've also re-paved the machine since so I think the cause is now lost forever. http://stackoverflow.com/questions/1873611/what-am-i-missing-my-app-can-send-e-mail-via-gmail-on-my-dev-box-but-not-on-my Comment by Kev on What am I missing? My app can send e-mail via gmail on my dev box, but not on my server Kev 2009-12-09T19:06:40Z 2009-12-09T19:06:40Z Which IIS version, what language/framwork? ASP, .NET, PHP? What component are you using to send the mail? http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically Comment by Kev on How to set Authentication Methods in IIS programattically Kev 2009-12-09T00:33:52Z 2009-12-09T00:33:52Z I've updated my answer with a sample cscript snippet. http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programattically Comment by Kev on How to set Authentication Methods in IIS programattically Kev 2009-12-09T00:19:06Z 2009-12-09T00:19:06Z What exactly do you do in the script you run by cscript.exe. Do you create the site in this script? Or do you use <code>IIsWeb.vbs</code> in the batch file? http://stackoverflow.com/questions/1856559/kill-running-php-script-via-process-id Comment by Kev on Kill Running PHP Script via Process ID? Kev 2009-12-06T20:52:11Z 2009-12-06T20:52:11Z Which OS? Windows, Unix? http://stackoverflow.com/questions/1845797/how-to-add-reflection-permission-to-iis-or-to-add-it-to-web-config Comment by Kev on how to add Reflection Permission to IIS or to add it to web.config ? Kev 2009-12-04T16:27:31Z 2009-12-04T16:27:31Z Can you paste the full exception? http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query/1839182#1839182 Comment by Kev on How do I fix this SQL GROUP BY query? Kev 2009-12-03T11:29:00Z 2009-12-03T11:29:00Z The <code>WHERE</code> clause + the <code>LEFT JOIN</code> did the trick. +1 http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query/1839216#1839216 Comment by Kev on How do I fix this SQL GROUP BY query? Kev 2009-12-03T11:26:52Z 2009-12-03T11:26:52Z Combination of PP's and Romain's answer got this working. Thanks folks for the quick work. http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query/1839182#1839182 Comment by Kev on How do I fix this SQL GROUP BY query? Kev 2009-12-03T10:54:24Z 2009-12-03T10:54:24Z I tried that but it sadly doesn't work. http://stackoverflow.com/questions/1718417/tricking-iis-6-0-html-web-site-into-thinking-its-at-the-root/1723289#1723289 Comment by Kev on Tricking IIS 6.0 html web site into thinking it's at the root Kev 2009-12-02T16:52:00Z 2009-12-02T16:52:00Z That would work, but why not just host headers for the new site? http://stackoverflow.com/questions/1763491/net-webservice-doesnt-return-json-data-anymore/1770284#1770284 Comment by Kev on .NET Webservice doesn't return JSON data anymore Kev 2009-12-01T18:15:52Z 2009-12-01T18:15:52Z LOL...it's always the last thing you think of :) http://stackoverflow.com/questions/1804509/is-there-a-way-to-fail-over-to-a-local-copy-of-script-libraries-if-googles-cdn-g Comment by Kev on Is there a way to fail-over to a local copy of script libraries if Google's CDN goes down? Kev 2009-11-26T16:12:55Z 2009-11-26T16:12:55Z Ah....my SO google-fu failed me on this one.