User Kev - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:19:42Zhttp://stackoverflow.com/feeds/user/419http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/476499/naming-conventions-in-c-compared-to-java/476504#4765044Answer by Kev for Naming conventions in C# compared to JavaKev2009-01-24T19:03:54Z2009-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#18854410Answer by Kev for get IIS6+ to load JSON files without server-wide change?Kev2009-12-11T02:20:11Z2009-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><staticContent></code> configuration section in <code><system.webServer></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-markup1Visual Studio 2008 sometimes won't open .aspx html markupKev2008-12-03T19:27:48Z2009-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#18672661Answer by Kev for How to set Authentication Methods in IIS programatticallyKev2009-12-08T14:20:59Z2009-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 & ":80:www." & hostName
serverBindings(1) = ipAddress & ":80:" & hostName
'' Create server
Set w3svc = GetObject("IIS://localhost/w3svc")
Set newWebServer = w3svc.Create("IIsWebServer", iisNumber)
newWebServer.ServerBindings = serverBindings
newWebServer.ServerComment = "Server is: " & 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 '' <== Set AuthFlags here
rootApp.SetInfo
</code></pre>
http://stackoverflow.com/questions/1571609/setting-ntauthenticationproviders-at-an-application-level-in-iis-6/1576017#15760171Answer by Kev for Setting NTAuthenticationProviders at an Application level in IIS 6Kev2009-10-16T01:27:10Z2009-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#18613891Answer by Kev for Where can I find management scripts for IIS 6.0?Kev2009-12-07T17:09:42Z2009-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#18613270Answer by Kev for How to use Microsoft.Web.Administration without IIS7Kev2009-12-07T17:00:10Z2009-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#18612292Answer by Kev for How do I create a Windows Service using vb.net in Studio 2008 Standard (No template)Kev2009-12-07T16:45:51Z2009-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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Service1
Inherits System.ServiceProcess.ServiceBase
''UserService overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
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
<MTAThread()> _
<System.Diagnostics.DebuggerNonUserCode()> _
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.
<System.Diagnostics.DebuggerStepThrough()> _
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#18565901Answer by Kev for Automated creation of IIS websitesKev2009-12-06T21:01:03Z2009-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-query1How do I fix this SQL GROUP BY query?Kev2009-12-03T10:50:38Z2009-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#18295425Answer by Kev for How do I merge multiple .net assemblies into a single assembly?Kev2009-12-01T22:57:13Z2009-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&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-g0Is there a way to fail-over to a local copy of script libraries if Google's CDN goes down? [closed]Kev2009-11-26T16:00:12Z2009-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’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#17993190Answer by Kev for how to manage multiple ado.net database connections from asmx Web ServiceKev2009-11-25T19:15:28Z2009-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#17992820Answer by Kev for IIS 6 ignores Web.config authorization settingsKev2009-11-25T19:10:34Z2009-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#10390935Answer by Kev for C#/.NET Server Path to default/index pageKev2009-06-24T15:26:52Z2009-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#17923580Answer by Kev for How can I get ASP.Net version in IIS through C#?Kev2009-11-24T19:25:24Z2009-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#17346311Answer by Kev for How to use appcmd to set debug=false in IIS7Kev2009-11-14T15:53:51Z2009-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><compilation /></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#17677231Answer by Kev for Is it possible to debug IIS without affecting all users of the service?Kev2009-11-20T01:11:48Z2009-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#17641010Answer by Kev for File.Copy FileNotFoundException reported randomly when it's never trueKev2009-11-19T15:29:12Z2009-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#17635830Answer by Kev for .NET Webservice doesn't return JSON data anymoreKev2009-11-19T14:16:29Z2009-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#17634900Answer by Kev for How to turn off the sound of alert(), or is there any good alternative in Jquery?Kev2009-11-19T14:05:30Z2009-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#17611501Answer by Kev for Path 'PROPFIND' is forbidden?Kev2009-11-19T05:47:30Z2009-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#17569651Answer by Kev for Splitting a string in C#Kev2009-11-18T15:53:09Z2009-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#17568932Answer by Kev for Implicit conversion from void to XmlDocumentKev2009-11-18T15:43:53Z2009-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#17558860Answer by Kev for How can I parse the following text file?Kev2009-11-18T13:15:31Z2009-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 && 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#17505397Answer by Kev for Multithreading with ASP.NET and IISKev2009-11-17T17:42:47Z2009-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#17386950Answer by Kev for .net c# order management libraryKev2009-11-15T20:21:48Z2009-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#17383520Answer by Kev for Utilizing less memory in ASP.NETKev2009-11-15T18:24:23Z2009-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#17313781Answer by Kev for Programmatic HTML POST with C#.NET 1.1Kev2009-11-13T19:31:53Z2009-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] + "&");
}
if(method == "GET" && data.Count > 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 > 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#17301761Answer by Kev for Filter SQL queries on the XML column using XPath/XQueryKev2009-11-13T16:07:07Z2009-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-programmaticallyComment by Kev on How can I set global mime-types for IIS6 programmatically?Kev2009-12-17T17:01:56Z2009-12-17T17:01:56ZIs PowerShell or C#/.NET available on the machine?http://stackoverflow.com/questions/1916848/retrieving-data-from-oledb-query-not-displaying-in-messagebox/1916876#1916876Comment by Kev on Retrieving data from OleDb query not displaying in MessageBoxKev2009-12-16T19:01:16Z2009-12-16T19:01:16ZYes you do have to call <code>rdr.Read()</code>.http://stackoverflow.com/questions/338430/visual-studio-2008-sometimes-wont-open-aspx-html-markup/1884139#1884139Comment by Kev on Visual Studio 2008 sometimes won't open .aspx html markupKev2009-12-10T23:35:50Z2009-12-10T23:35:50ZSorry 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#1884139Comment by Kev on Visual Studio 2008 sometimes won't open .aspx html markupKev2009-12-10T23:33:44Z2009-12-10T23:33:44ZThis 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-myComment by Kev on What am I missing? My app can send e-mail via gmail on my dev box, but not on my serverKev2009-12-09T19:06:40Z2009-12-09T19:06:40ZWhich 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-programatticallyComment by Kev on How to set Authentication Methods in IIS programatticallyKev2009-12-09T00:33:52Z2009-12-09T00:33:52ZI've updated my answer with a sample cscript snippet.http://stackoverflow.com/questions/1862071/how-to-set-authentication-methods-in-iis-programatticallyComment by Kev on How to set Authentication Methods in IIS programatticallyKev2009-12-09T00:19:06Z2009-12-09T00:19:06ZWhat 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-idComment by Kev on Kill Running PHP Script via Process ID?Kev2009-12-06T20:52:11Z2009-12-06T20:52:11ZWhich OS? Windows, Unix?http://stackoverflow.com/questions/1845797/how-to-add-reflection-permission-to-iis-or-to-add-it-to-web-configComment by Kev on how to add Reflection Permission to IIS or to add it to web.config ?Kev2009-12-04T16:27:31Z2009-12-04T16:27:31ZCan you paste the full exception?http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query/1839182#1839182Comment by Kev on How do I fix this SQL GROUP BY query?Kev2009-12-03T11:29:00Z2009-12-03T11:29:00ZThe <code>WHERE</code> clause + the <code>LEFT JOIN</code> did the trick. +1http://stackoverflow.com/questions/1839169/how-do-i-fix-this-sql-group-by-query/1839216#1839216Comment by Kev on How do I fix this SQL GROUP BY query?Kev2009-12-03T11:26:52Z2009-12-03T11:26:52ZCombination 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#1839182Comment by Kev on How do I fix this SQL GROUP BY query?Kev2009-12-03T10:54:24Z2009-12-03T10:54:24ZI 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#1723289Comment by Kev on Tricking IIS 6.0 html web site into thinking it's at the rootKev2009-12-02T16:52:00Z2009-12-02T16:52:00ZThat 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#1770284Comment by Kev on .NET Webservice doesn't return JSON data anymoreKev2009-12-01T18:15:52Z2009-12-01T18:15:52ZLOL...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-gComment by Kev on Is there a way to fail-over to a local copy of script libraries if Google's CDN goes down?Kev2009-11-26T16:12:55Z2009-11-26T16:12:55ZAh....my SO google-fu failed me on this one.