User Josh Hinman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T10:50:46Zhttp://stackoverflow.com/feeds/user/2527http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210657/jsp-how-can-i-still-get-the-code-on-my-error-page-to-run-even-if-i-cant-displa3JSP: How can I still get the code on my error page to run, even if I can't display it?Josh Hinman2008-10-16T23:37:05Z2009-12-03T00:31:44Z
<p>I've defined an error-page in my web.xml:</p>
<pre><code> <error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.jsp</location>
</error-page>
</code></pre>
<p>In that error page, I have a custom tag that I created. The tag handler for this tag e-mails me the stacktrace of whatever error occurred. For the most part this works great.</p>
<p>Where it doesn't work great is if the output has already begun being sent to the client at the time the error occurs. In that case, we get this:</p>
<pre><code>SEVERE: Exception Processing ErrorPage[exceptionType=java.lang.Exception, location=/error.jsp]
java.lang.IllegalStateException
</code></pre>
<p>I believe this error happens because we can't redirect a request to the error page after output has already started. The work-around I've used is to increase the buffer size on particularly large JSP pages. But I'm trying to write a generic error handler that I can apply to existing applications, and I'm not sure it's feasible to go through hundreds of JSP pages making sure their buffers are big enough.</p>
<p>Is there a way to still allow my stack trace e-mail code to execute in this case, even if I can't actually display the error page to the client?</p>
http://stackoverflow.com/questions/675730/finding-your-applications-url-with-only-a-servletcontext2Finding your application's URL with only a ServletContextJosh Hinman2009-03-24T00:29:05Z2009-10-27T08:24:55Z
<p>I'm writing a Java web app using Spring MVC. I have a background process that goes through the database and finds notifications that must be e-mailed to my users. These e-mail messages need to include hyperlinks to the application. This seems like a fairly common pattern for a web app, but I'm having trouble.</p>
<p>How do I derive my application's fully qualified URL, with server name and context path? I don't have access to any of the methods in HttpServletRequest because I'm running this as a background process, not in response to a web request. The best I can do is get access to ServletContext.</p>
<p>Currently I'm putting the base URL into a configuration file and reading it at startup, but this application is going to be licensed and deployed to customers' application servers, and if possible I'd like them not to have to configure this manually.</p>
http://stackoverflow.com/questions/1590059/retrieve-data-from-two-columns-with-the-same-name-but-different-table/1590067#15900671Answer by Josh Hinman for retrieve data from two columns with the same name but different tableJosh Hinman2009-10-19T17:40:29Z2009-10-19T17:46:08Z<p>Alias the columns in the select clause:</p>
<pre><code>select u.user AS u_user, d.user AS d_user ....
</code></pre>
<p>then you can use:</p>
<pre><code>echo $row['u_user']
echo $row['d_user']
</code></pre>
http://stackoverflow.com/questions/1545131/entities-adding-a-navigation-property-between-a-view-and-table/1575329#15753291Answer by Josh Hinman for Entities: Adding a Navigation Property between a View and TableJosh Hinman2009-10-15T21:55:20Z2009-10-19T17:45:39Z<p>By default, when you add a database view to your model, Entity Framework will assume every single column is part of the primary key. It does the same thing if you add a table without a primary key defined.</p>
<p>The solution is to manually edit the edmx file with an XML editor and define the primary key yourself. Find the <EntityType> tag for your view (<EntityType Name="MyView">), then there will be a <Key> element. Remove any non-key columns from that element.</p>
http://stackoverflow.com/questions/1574476/adding-custom-headers-to-attachments-using-system-net-mail0Adding Custom Headers to Attachments using System.Net.Mail?Josh Hinman2009-10-15T19:19:00Z2009-10-16T01:45:09Z
<p>I'm using System.Net.Mail to send HTML e-mail with attachments.</p>
<p>I'd like to add a custom header to the attachments, like so:</p>
<pre>
--multipart_related_boundary
Content-Type: image/png
MIME-Version: 1.0
Content-Transfer-Encoding: base64
Content-Location: http://example.com/images/logo.png
</pre>
<p>See that last header, Content-Location? That's the one I can't figure out how to set. The rest are properties of the System.Net.Mail.Attachment class, but does anybody know how I can add a Content-Location header?</p>
<p>The reason I'm doing this is that I'd like to include images in my messages, and I'd also like to embed those images in the message itself so that e-mail clients will show them by default without requiring the user to click "show images". <a href="http://www.campaignmonitor.com/blog/post/1759/embedding-images-revisited/" rel="nofollow">This blog post</a> mentions the Content-Location header as the best way of doing this (it's in the comments), and I'd like to try it out, since all the other methods I've tried have various deal-breaking drawbacks.</p>
http://stackoverflow.com/questions/733378/whats-a-good-way-of-doing-string-templating-in-net/733540#7335400Answer by Josh Hinman for What's a good way of doing string templating in .NET?Josh Hinman2009-04-09T09:45:20Z2009-04-09T09:45:20Z<p>There are some excellent suggestions in the answers to this question:</p>
<p><a href="http://stackoverflow.com/questions/620265/">http://stackoverflow.com/questions/620265/</a></p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks3How do I prevent replay attacks?Josh Hinman2008-09-04T18:23:22Z2009-03-16T23:23:41Z
<p>This is related to <a href="http://beta.stackoverflow.com/questions/43324/can-i-put-an-aspnet-session-id-in-a-hidden-form-field" rel="nofollow">another question I asked</a>. In summary, I have a special case of a URL where, when a form is POSTed to it, I can't rely on cookies for authentication or to maintain the user's session, but I somehow need to know who they are, and I need to know they're logged in!</p>
<p>I think I came up with a solution to my problem, but it needs fleshing out. Here's what I'm thinking. I create a hidden form field called "username", and place within it the user's username, encrypted. Then, when the form POSTs, even though I don't receive any cookies from the browser, I know they're logged in because I can decrypt the hidden form field and get the username.</p>
<p>The major security flaw I can see is replay attacks. How do I prevent someone from getting ahold of that encrypted string, and POSTing as that user? I know I can use SSL to make it harder to steal that string, and maybe I can rotate the encryption key on a regular basis to limit the amount of time that the string is good for, but I'd really like to find a bulletproof solution. Anybody have any ideas? Does the ASP.Net ViewState prevent replay? If so, how do they do it?</p>
<p><strong>Edit</strong>: I'm hoping for a solution that doesn't require anything stored in a database. Application state would be okay, except that it won't survive an IIS restart or work at all in a web farm or garden scenario. I'm accepting Chris's answer, for now, because I'm not convinced it's even possible to secure this without a database. But if someone comes up with an answer that does not involve the database, I'll accept it!</p>
http://stackoverflow.com/questions/55506/how-do-i-conditionally-create-a-stored-procedure-in-sql-server3How do I conditionally create a stored procedure in SQL Server?Josh Hinman2008-09-10T23:45:27Z2009-01-14T05:05:36Z
<p>As part of my integration strategy, I have a few SQL scripts that run in order to update the database. The first thing all of these scripts do is check to see if they need to run, e.g.:</p>
<pre><code>if @version <> @expects
begin
declare @error varchar(100);
set @error = 'Invalid version. Your version is ' + convert(varchar, @version) + '. This script expects version ' + convert(varchar, @expects) + '.';
raiserror(@error, 10, 1);
end
else
begin
...sql statements here...
end
</code></pre>
<p>Works great! Except if I need to add a stored procedure. The "create proc" command must be the only command in a batch of sql commands. Putting a "create proc" in my IF statement causes this error:</p>
<pre><code>'CREATE/ALTER PROCEDURE' must be the first statement in a query batch.
</code></pre>
<p>Ouch! How do I put the CREATE PROC command in my script, and have it only execute if it needs to?</p>
http://stackoverflow.com/questions/43324/can-i-put-an-asp-net-session-id-in-a-hidden-form-field2Can I put an ASP.Net session ID in a hidden form field?Josh Hinman2008-09-04T08:08:40Z2009-01-05T15:17:13Z
<p>I'm using the Yahoo Uploader, part of the Yahoo UI Library, on my ASP.Net website to allow users to upload files. For those unfamiliar, the uploader works by using a Flash applet to give me more control over the FileOpen dialog. I can specify a filter for file types, allow multiple files to be selected, etc. It's great, but it has the following documented limitation:</p>
<blockquote>
<p>Because of a known Flash bug, the Uploader running in Firefox in Windows does not send the correct cookies with the upload; instead of sending Firefox cookies, it sends Internet Explorer’s cookies for the respective domain. As a workaround, we suggest either using a cookieless upload method or appending document.cookie to the upload request.</p>
</blockquote>
<p>So if a user is using Firefox, I can't rely on cookies to persist their session when they upload a file. I need their session because I need to know who they are! As a workaround, I'm using the Application object thusly:</p>
<pre><code>Guid UploadID = Guid.NewGuid();
Application.Add(Guid.ToString(), User);
</code></pre>
<p>So I'm creating a unique ID and using it as a key to store the Page.User object in the Application scope. I include that ID as a variable in the POST when the file is uploaded. Then, in the handler that accepts the file upload, I grab the User object thusly:</p>
<pre><code>IPrincipal User = (IPrincipal)Application[Request.Form["uploadid"]];
</code></pre>
<p>So this actually works, but it has two glaring drawbacks: </p>
<ul>
<li>if IIS, the app pool, or even just the application is restarted between the time the user visits the upload page, and actually uploads a file, their "uploadid" is deleted from application scope and the upload fails because I can't authenticate them.</li>
<li>If I ever scale to a web farm (possibly even a web garden) scenario, this will completely break. I might not be worried, except I do plan on scaling this app in the future.</li>
</ul>
<p>Does anyone have a better way? Is there a way for me to pass the actual ASP.Net session ID in a POST variable, then use that ID at the other end to retrieve the session?</p>
<p><strong>Edit</strong>: I know I can get the session ID through Session.SessionID, and I know how to use YUI to post it to the next page. What I don't know is how to use that SessionID to grab the session from the state server.</p>
<p>Yes, I'm using a state server to store the sessions, so they persist application/IIS restarts, and will work in a web farm scenario.</p>
http://stackoverflow.com/questions/284744/how-to-pass-the-current-user-to-a-web-control-declaratively/284767#2847671Answer by Josh Hinman for How to pass the current user to a web control declarativelyJosh Hinman2008-11-12T18:00:42Z2008-11-12T18:00:42Z<p>You can do this in the codebehind:</p>
<pre><code>myid.User = User.Identity.Name
</code></pre>
http://stackoverflow.com/questions/269621/how-to-force-windows-indexing-activity/269637#2696371Answer by Josh Hinman for How to force Windows Indexing "activity"Josh Hinman2008-11-06T17:56:21Z2008-11-06T17:56:21Z<p>Right-click on the Index service icon in the system tray (the magnifying glass), and click "Index Now." I know it sounds like an action that will only happen once, but this is in fact a toggle that, when turned on, does exactly what you are asking.</p>
http://stackoverflow.com/questions/251463/minimum-time-between-subsequent-ajax-calls/251481#2514812Answer by Josh Hinman for Minimum time between subsequent AJAX callsJosh Hinman2008-10-30T19:42:31Z2008-10-30T19:42:31Z<p>The answer to this question is very much dependent on:</p>
<ol>
<li>How much data is sent in each poll</li>
<li>How many users you will have online at a time</li>
<li>How much bandwidth your server can handle</li>
<li>How "fresh" the data on your client needs to be</li>
</ol>
<p>Without knowing any of these specifics for your app, it's going to be hard to give a good recommendation. Have you looked into a method where the client connects to the server, and the server holds the connection open until there is data available? Then the server delivers the data, and the client immediately reconnects and waits again. That can be tricky to get working, but you might be able to maximize both efficiency of bandwidth AND responsiveness that way.</p>
http://stackoverflow.com/questions/251395/validate-querystrings-in-asp-net/251426#2514260Answer by Josh Hinman for Validate QueryStrings in ASP.NETJosh Hinman2008-10-30T19:29:07Z2008-10-30T19:29:07Z<p>Do you mean to ask about breaking the query string into its parts? ASP.Net already does that for you. You can access the individual paramaters via the Request.QueryString collection.</p>
<p>For the query string: ?fruit=apple&socks=white</p>
<p>Request.QueryString["fruit"] will give you "apple", and Request.QueryString["socks"] will give you "white".</p>
http://stackoverflow.com/questions/55576/asp-net-if-i-have-the-session-id-can-i-get-the-session-object/240739#2407390Answer by Josh Hinman for ASP.Net: If I have the Session ID, Can I get the Session object?Josh Hinman2008-10-27T17:30:51Z2008-10-27T17:30:51Z<p>Jonas posted a great answer to this question here:</p>
<p><a href="http://stackoverflow.com/questions/43324/can-i-put-an-aspnet-session-id-in-a-hidden-form-field#237682">http://stackoverflow.com/questions/43324/can-i-put-an-aspnet-session-id-in-a-hidden-form-field#237682</a></p>
http://stackoverflow.com/questions/55576/asp-net-if-i-have-the-session-id-can-i-get-the-session-object1ASP.Net: If I have the Session ID, Can I get the Session object?Josh Hinman2008-09-11T00:52:25Z2008-10-27T17:30:51Z
<p>This question is related to <a href="http://beta.stackoverflow.com/questions/43324/can-i-put-an-aspnet-session-id-in-a-hidden-form-field" rel="nofollow">this one</a>, though I think I was a little too long-winded there to really get a good answer. I'll keep this brief.</p>
<p>I'm working on a web handler (ashx) that accepts a form post from an aspx page. When the handler receives this form post, in order to do what it needs to do, it needs to know the user who is logged in (User.Identity.Name), but I can't rely on cookies being sent by the browser.</p>
<p>I know I can get the Session.SessionID and place it in a hidden form field, but once my handler receives the form post, how can I use that SessionID to figure out the logged-in user's identity?</p>
<p>I'm using the StateServer mode for session state.</p>
http://stackoverflow.com/questions/239082/javascript-login-form-doesnt-submit-when-user-hits-enter/239091#2390911Answer by Josh Hinman for Javascript login form doesn't submit when user hits EnterJosh Hinman2008-10-27T04:39:45Z2008-10-27T04:39:45Z<p>Instead of <input type="button">, use <input type="submit">. You can put your validation code in your form onsubmit handler:</p>
<p><form id="loginwindow" onsubmit="validate(...)"></p>
http://stackoverflow.com/questions/235608/whats-the-best-way-to-send-a-lot-of-checkboxes-to-the-client-in-asp-net/235644#2356443Answer by Josh Hinman for What's the best way to send a lot of checkboxes to the client in ASP.Net?Josh Hinman2008-10-24T23:58:57Z2008-10-24T23:58:57Z<p>Do it the same way you did it in classic ASP. Use <input type="checkbox"> instead of <asp:checkbox>. You can access the raw post paramaters using Request.Form</p>
http://stackoverflow.com/questions/223474/does-the-asp-net-login-control-encrypt-the-password-field/223487#2234871Answer by Josh Hinman for Does the asp.net login control encrypt the password field?Josh Hinman2008-10-21T21:00:10Z2008-10-21T21:00:10Z<p>The login control works as a normal form post. There is no encryption or challenge-response method. You must use SSL if you want any security.</p>
http://stackoverflow.com/questions/223163/routing-around-stupid-it-departments/223196#2231961Answer by Josh Hinman for Routing around stupid IT departmentsJosh Hinman2008-10-21T19:40:00Z2008-10-21T19:40:00Z<p>Don't join your workstation to the domain. Then you can be a local admin and do whatever you please. The obvious downside would be having to type your domain credentials constantly, every time you access a network resource. But if you have an unresponsive IT department, there may be no other way.</p>
http://stackoverflow.com/questions/22981/asp-net-how-to-do-pagination-with-a-repeater0ASP.Net: How to do pagination with a Repeater?Josh Hinman2008-08-22T17:37:54Z2008-10-08T22:36:00Z
<p>I'm using the Repeater control on my site to display data from the database. I need to do pagination ("now displaying page 1 of 10", 10 items per page, etc) but I'm not sure I'm going about it the best way possible.</p>
<p>I know the Repeater control doesn't have any built-in pagination, so I'll have to make my own. Is there a way to tell the DataSource control to return rows 10-20 of a much larger result set? If not, how do I write that into a query (SQL Server 2005)? I'm currently using the TOP keyword to only return the first 10 rows, but I'm not sure how to display rows 10-20.</p>
http://stackoverflow.com/questions/177691/what-is-your-favorite-ide-for-develop-with-websphere-application-server/177791#1777910Answer by Josh Hinman for What is your favorite IDE for develop with Websphere Application Server?Josh Hinman2008-10-07T09:47:31Z2008-10-07T09:47:31Z<p>I use Eclipse, and I love it.</p>
http://stackoverflow.com/questions/175881/sql-server-express-2008-install-side-by-side-w-sql-2005-express-fails/175894#17589410Answer by Josh Hinman for SQL Server Express 2008 Install Side-by-side w/ SQL 2005 Express FailsJosh Hinman2008-10-06T19:48:48Z2008-10-06T20:09:08Z<p>Although you should have no problem running a 2005 instance of the database engine beside a 2008 instance, The tools are installed into a shared directory, so you can't have two versions of the tools installed. Fortunately, the 2008 tools are backwards-compatible. As we speak, I'm using SSMS 2008 and Profiler 2008 to manage my 2005 Express instances. Works great.</p>
<p>Before installing the 2008 tools, you need to remove any and all "shared" components from 2005. Try going to your Add/Remove programs control panel, find Microsoft SQL Server 2005, and click "Change." Then choose "Workstation Components" and remove everything there (this will not remove your database engine).</p>
<p>I believe the 2008 installer also has an option to upgrade shared components only. You might try that. Good luck!</p>
http://stackoverflow.com/questions/155174/i-need-help-executing-a-bat-file-from-asp-net-2-0/155354#1553541Answer by Josh Hinman for I need help executing a bat file from asp.net 2.0Josh Hinman2008-09-30T22:19:32Z2008-09-30T22:19:32Z<p>I had a similar problem:</p>
<p><a href="http://stackoverflow.com/questions/34183/cnet-why-is-my-processstart-hanging">http://stackoverflow.com/questions/34183/cnet-why-is-my-processstart-hanging</a></p>
<p>It seems that Microsoft, in all their infinite wisdom, has blocked batch files from being executed by IIS in Windows Server 2003. Brenden Tompkins has a work-around here:</p>
<p><a href="http://codebetter.com/blogs/brendan.tompkins/archive/2004/05/13/13484.aspx" rel="nofollow">http://codebetter.com/blogs/brendan.tompkins/archive/2004/05/13/13484.aspx</a></p>
http://stackoverflow.com/questions/131498/what-am-i-missing-by-not-moving-my-asp-net-2-0-site-to-asp-net-3-5/131649#1316490Answer by Josh Hinman for What am I missing by not moving my ASP.NET 2.0 site to ASP.NET 3.5?Josh Hinman2008-09-25T05:50:37Z2008-09-25T05:50:37Z<p>LINQ, dude. LINQ. Don't knock it 'till you've tried it. ORM is fun again!</p>
http://stackoverflow.com/questions/130337/how-do-you-prevent-a-user-from-posting-data-multiple-times-on-a-website/130359#1303592Answer by Josh Hinman for How do you prevent a user from posting data multiple times on a websiteJosh Hinman2008-09-24T22:36:58Z2008-09-24T22:36:58Z<p>Two server-side solutions come to mind:</p>
<ol>
<li>Create one-time use "tokens" in a hidden form field. Once a token is used, it is deleted from whatever database or session context object you're storing it in. The second time, it's not accepted.</li>
<li>Cache information received, and if an identical form is received within a certain time period (10 minutes? an hour? You decide!) it is ignored.</li>
</ol>
http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130341#1303418Answer by Josh Hinman for Which chemical stimulation do you require while coding?Josh Hinman2008-09-24T22:33:50Z2008-09-24T22:33:50Z<p>Coca-cola works for me.</p>
http://stackoverflow.com/questions/123936/do-you-use-special-comments-on-bug-fixes-in-your-code/123952#1239521Answer by Josh Hinman for Do you use special comments on bug fixes in your code?Josh Hinman2008-09-23T21:18:47Z2008-09-23T21:18:47Z<p>Comments like this are why Subversion lets you type a log entry on every commit. That's where you should put this stuff, not in the code.</p>
http://stackoverflow.com/questions/113755/programmatically-add-an-application-to-windows-firewall/113772#1137720Answer by Josh Hinman for Programmatically add an application to Windows FirewallJosh Hinman2008-09-22T08:19:25Z2008-09-22T08:19:25Z<p>The fact that there might actually be a way to do this is why I don't trust software firewalls.</p>
http://stackoverflow.com/questions/55871/track-when-user-hits-back-button-on-the-browser/55888#558883Answer by Josh Hinman for Track when user hits back button on the browserJosh Hinman2008-09-11T06:14:00Z2008-09-11T06:14:00Z<p>The Yahoo User Interface Library, my personal favorite client-side JS library, has an excellent <a href="http://developer.yahoo.com/yui/history/" rel="nofollow">Browser History Manager</a> that does exactly what you're asking for.</p>
http://stackoverflow.com/questions/55506/how-do-i-conditionally-create-a-stored-procedure-in-sql-server/55546#555465Answer by Josh Hinman for How do I conditionally create a stored procedure in SQL Server?Josh Hinman2008-09-11T00:16:51Z2008-09-11T00:16:51Z<p>Here's what I came up with:</p>
<p>Wrap it in an EXEC(), like so:</p>
<pre><code>if @version <> @expects
begin
...snip...
end
else
begin
exec('CREATE PROC MyProc AS SELECT ''Victory!''');
end
</code></pre>
<p>Works like a charm!</p>
http://stackoverflow.com/questions/1766095/why-doesnt-this-work/1766148#1766148Comment by Josh Hinman on Why doesn't this work?Josh Hinman2009-11-19T22:49:13Z2009-11-19T22:49:13ZActually, for performance reasons JavaScript should be placed at the bottom of the page. See: <a href="http://developer.yahoo.com/performance/rules.html#js_bottom" rel="nofollow">developer.yahoo.com/performance/…</a>http://stackoverflow.com/questions/1595988/how-do-i-setup-a-version-control-repository-on-a-web-hosting-account/1596028#1596028Comment by Josh Hinman on How do I setup a version control repository on a web hosting account?Josh Hinman2009-10-20T17:11:48Z2009-10-20T17:11:48ZThe OP did specify that he didn't want to pay for a private repository. Nonetheless, I'm voting up this answer because I think he needs to. And I also use and love Beanstalk.http://stackoverflow.com/questions/1574476/adding-custom-headers-to-attachments-using-system-net-mailComment by Josh Hinman on Adding Custom Headers to Attachments using System.Net.Mail?Josh Hinman2009-10-15T19:36:07Z2009-10-15T19:36:07ZJohn: doubtful.http://stackoverflow.com/questions/1574476/adding-custom-headers-to-attachments-using-system-net-mail/1574507#1574507Comment by Josh Hinman on Adding Custom Headers to Attachments using System.Net.Mail?Josh Hinman2009-10-15T19:26:29Z2009-10-15T19:26:29ZI think that adds a header to the message itself, not the attachment.http://stackoverflow.com/questions/1111462/asp-net-gridview-is-not-updating-one-of-my-fieldsComment by Josh Hinman on ASP.Net GridView is not updating one of my fieldsJosh Hinman2009-07-10T19:34:01Z2009-07-10T19:34:01ZThe markup is basically as posted (I removed the RowStyle stuff). I'm not using a Type="Password" on that textbox.http://stackoverflow.com/questions/1111462/asp-net-gridview-is-not-updating-one-of-my-fieldsComment by Josh Hinman on ASP.Net GridView is not updating one of my fieldsJosh Hinman2009-07-10T19:33:23Z2009-07-10T19:33:23ZI could paste my Update method here, but the problem is happening before that. The "User" object that is passed to the Update method has null in the Password field.http://stackoverflow.com/questions/1111462/asp-net-gridview-is-not-updating-one-of-my-fields/1111488#1111488Comment by Josh Hinman on ASP.Net GridView is not updating one of my fieldsJosh Hinman2009-07-10T19:31:27Z2009-07-10T19:31:27ZI'm doing exactly that (only updating the password if one is present) in the UserCRUD.Update method. I tried your suggestion (non-visible password field in the ItemTemplate) and it didn't work, unfortunately. I even tried making it visible, still no go. :(http://stackoverflow.com/questions/878987/elmah-asp-net-multiple-connection-strings-set-sql-error-log-connection-st/879076#879076Comment by Josh Hinman on Elmah - ASP.NET -> Multiple Connection Strings -> Set SQL Error Log Connection String in CodeJosh Hinman2009-05-18T18:19:37Z2009-05-18T18:19:37ZSeconded. I followed Scott's advice in a recent project of mine, and it works quite well!http://stackoverflow.com/questions/675730/finding-your-applications-url-with-only-a-servletcontextComment by Josh Hinman on Finding your application's URL with only a ServletContextJosh Hinman2009-03-24T00:31:55Z2009-03-24T00:31:55ZRelative to what? This is being sent out in an e-mail.http://stackoverflow.com/questions/476907/best-way-to-avoid-getting-a-beer-belly-from-programming/477156#477156Comment by Josh Hinman on Best way to avoid getting a beer belly from programmingJosh Hinman2009-01-25T08:12:19Z2009-01-25T08:12:19ZStaying healthy is not all about appearance. You'll feel better, be happier, and live longer if you stay fit.http://stackoverflow.com/questions/269621/how-to-force-windows-indexing-activity/269637#269637Comment by Josh Hinman on How to force Windows Indexing "activity"Josh Hinman2008-11-06T22:11:35Z2008-11-06T22:11:35ZThis works on my XP box, after installing Office 2007http://stackoverflow.com/questions/269621/how-to-force-windows-indexing-activityComment by Josh Hinman on How to force Windows Indexing "activity"Josh Hinman2008-11-06T17:59:30Z2008-11-06T17:59:30ZAs a matter of fact, yes :) "Programatically" is the magic word!http://stackoverflow.com/questions/269621/how-to-force-windows-indexing-activityComment by Josh Hinman on How to force Windows Indexing "activity"Josh Hinman2008-11-06T17:54:34Z2008-11-06T17:54:34ZAs a matter of fact there is, but this is not a programming question, an thus, does not belong on Stack Overflowhttp://stackoverflow.com/questions/254694/why-is-it-better-to-use-readonly-properties-verses-functions/254707#254707Comment by Josh Hinman on Why is it better to use readonly properties verses functions?Josh Hinman2008-10-31T20:12:41Z2008-10-31T20:12:41ZC# requires () for good reason. Without the parentheses, it means something completely different. See: delegates.http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/245412#245412Comment by Josh Hinman on Underused features of Windows batch filesJosh Hinman2008-10-29T01:01:17Z2008-10-29T01:01:17ZSeriously? How have I never heard of this feature before?!