User esarjeant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:17:58Z http://stackoverflow.com/feeds/user/644 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl 3 Coding Dojo with IE and SSL esarjeant 2008-09-12T18:44:44Z 2009-01-08T18:23:58Z <p>My application is using Dojo 1.1.1 on an SSL-only website. It is currently taking advantage of dijit.ProgressBar and a dijit.form.DateTextBox.</p> <p>Everything works fabulous in Firefox 2&amp;3, but as soon as I try the same scripts in IE7 the results are an annoying Security Information dialog:</p> <blockquote> <pre><code>This page contains both secure and nonsecure items. Do you want to display the nonsecure items? </code></pre> </blockquote> <p>I have scrutinized the page for any non-https reference to no avail. It appears to be something specific to dojo.js. There use to be an IFRAME glitch where the SRC was set to nothing, but this appears to be fixed now (on review of the source).</p> <p>Anyone else having this problem? What are the best-practices for getting Dojo to play well with IE on an SSL-only webserver?</p> http://stackoverflow.com/questions/212115/method-for-application-version-on-a-console-utility-app 1 Method for Application Version on a Console Utility App esarjeant 2008-10-17T13:31:05Z 2008-10-17T17:35:13Z <p>What is the best method for displaying major/minor versions in a C# console application?</p> <p>The System.Windows.Forms namespace includes a ProductVersion class that can be used to display the name/version information set via the Visual Studio project properties (Assembly Information). As such, here is my current mechanism:</p> <blockquote> <p>Console.WriteLine("{0} ({1})", System.Windows.Forms.Application.ProductName, System.Windows.Forms.Application.ProductVersion);</p> </blockquote> <p>Why is this part of Forms? Is this appropriate for a Console application?</p> http://stackoverflow.com/questions/184265/what-system-do-you-use-to-encrypt-files-for-a-group-of-people-os-agnostic-prefer/184501#184501 0 Answer by esarjeant for What system do you use to encrypt files for a group of people (OS agnostic prefered)? esarjeant 2008-10-08T19:40:08Z 2008-10-08T19:40:08Z <p>I have to agree with Mark here:</p> <blockquote> <p>Understanding the business needs, and especially, what threats you're trying to protect against, is the hard part</p> </blockquote> <p>For example; are you worried that unauthorized users may gain access to sensitive files? You can use file-level access control on virtually any operating system to restrict users or groups from accessing files/directories.</p> <p>Are you worried that authorized users may copy the files locally and then lose their laptop? There are a number of os-level encryption facilities that provide varying degrees of protection. I personally recommend TrueCrypt for thumb drives and other portable media, and Windows Vista now include BitLocker which provides a different level of protection.</p> <p>Another variation of the lost-laptop theme is the lost-backup theme, and many backup vendors now include encryption schemes for your tape backups for just this reason.</p> <p>Finally, if you're worried that authorized users may share the files with unauthorized users then you may be trying to solve the wrong problem. Authorized users who can decrypt these files can just as easily share a new unencrypted version of the same document.</p> http://stackoverflow.com/questions/158695/spreadsheet-like-functionality-in-webapp/158890#158890 0 Answer by esarjeant for Spreadsheet Like Functionality In WebApp esarjeant 2008-10-01T17:59:12Z 2008-10-01T17:59:12Z <p>I have used dhtmlXGrid successfully. There is an open source version that you can use freely to get your application developed. Assuming everything works out, for $200 you can purchase a license for it and distribute it with your application.</p> <p>Very easy to use; create an HTML table structure with your data in it and then bind dhtmlXGrid to the table - it automatically turns the table cells into editable fields.</p> <p>Check it out here: <a href="http://www.dhtmlx.com/docs/products/dhtmlxGrid" rel="nofollow">http://www.dhtmlx.com/docs/products/dhtmlxGrid</a></p> <p>Again, you will need to implement the spreadsheet logic yourself but dhtmlXGrid makes it straightforward to translate that into an editable column/row display.</p> http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/72805#72805 7 Answer by esarjeant for Coding Dojo with IE and SSL esarjeant 2008-09-16T14:19:24Z 2008-09-16T19:31:13Z <p>After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from an "insecure" refrence to a dynamically generated IFRAME. Note there are two versions of the script file, the uncompressed represents the original source (dijit.js.uncompressed.js) and the standard (dijit.js) has been compressed for optimal transfer time. </p> <p>Since the uncompressed version is the most readable, I will describe my solution based on that. At line #1023, an IFRAME is rendered in JavaScript:</p> <pre><code>if(dojo.isIE){ var html="&lt;iframe src='javascript:\"\"'" + " style='position: absolute; left: 0px; top: 0px;" + "z-index: -1; filter:Alpha(Opacity=\"0\");'&gt;"; iframe = dojo.doc.createElement(html); }else{... </code></pre> <p>What's the problem? IE doesn't know if the src for the IFRAME is "secure" - so I replaced it with the following:</p> <pre><code>if(dojo.isIE){ var html="&lt;iframe src='javascript:void(0);'" + " style='position: absolute; left: 0px; top: 0px;" + "z-index: -1; filter:Alpha(Opacity=\"0\");'&gt;"; iframe = dojo.doc.createElement(html); }else{... </code></pre> <p>This is the most common problem with JavaScript toolkits and SSL in IE. Since IFRAME's are used as shims due to poor overlay support for DIV's, this problem is extremely prevalent. </p> <p>My first 5-10 page reloads are fine, but then the security error starts popping up again. How is this possible? The same page is "secure" for 5 reloads and then it is selected by IE as "insecure" when loaded the 6th time.</p> <p>As it turns out, there is also a background image being set in the onload event for dijit.wai (line #1325). This reads something like this;</p> <blockquote> <p>div.style.cssText = 'border: 1px solid;' + 'border-color:red green;' + 'position: absolute;' + 'height: 5px;' + 'top: -999px;' + 'background-image: url("' + dojo.moduleUrl("dojo", "resources/blank.gif") + '");';</p> </blockquote> <p>This won't work because the background-image tag doesn't include HTTPs. Despite the fact that the location is relative, IE7 doesn't know if it's secure so the warning is posed.</p> <p>In this particular instance, this CSS is used to test for Accessibility (A11y) in Dojo. Since this is not something my application will support and since there are other general buggy issues with this method, I opted to remove everything in the onload() for dijit.wai.</p> <p>All is good! No sporadic security problems with the page loads.</p> http://stackoverflow.com/questions/15514/is-there-anyway-to-disable-the-client-side-validation-for-dojo-date-text-box/59751#59751 1 Answer by esarjeant for Is there anyway to disable the client-side validation for dojo date text box? esarjeant 2008-09-12T18:55:06Z 2008-09-12T18:55:06Z <p>I had a similar problem, where the ValidationTextBox met all my needs but it was necessary to disable the validation routines until after the user had first pressed Submit.</p> <p>My solution was to clone this into a ValidationConditionalTextBox with a couple new methods:</p> <pre><code> enableValidator:function() { this.validatorOn = true; }, disableValidator: function() { this.validatorOn = false; }, </code></pre> <p>Then -- in the validator:function() I added a single check:</p> <pre><code> if (this.validatorOn) { ... } </code></pre> <p>Fairly straightforward, my default value for validatorOn is false (this appears right at the top of the javascript). When my form submits, simply call enableValidator(). You can view the full JavaScript here:</p> <p><a href="http://lilawnsprinklers.com/js/dijit/form/ValidationTextBox.js" rel="nofollow">http://lilawnsprinklers.com/js/dijit/form/ValidationTextBox.js</a></p> http://stackoverflow.com/questions/230409/database-wide-equivalent-of-set-identityinsert-off/230423#230423 Comment by esarjeant on Database-wide equivalent of SET IDENTITY_INSERT OFF esarjeant 2008-10-23T17:00:36Z 2008-10-23T17:00:36Z You may also want to look at the bcp utility for doing this, it is designed specifically for this task. <a href="http://msdn.microsoft.com/en-us/library/ms162802.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> There is a command-line option for bcp to override the identity column with a specified file from your import data. http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/72805#72805 Comment by esarjeant on Coding Dojo with IE and SSL esarjeant 2008-10-01T20:14:37Z 2008-10-01T20:14:37Z Thanks; I had hoped it wouldn't be so intense. Good point on opening an issue with Dojo, although my fix isn't complete it should be an excellent starting point. http://stackoverflow.com/questions/59734/coding-dojo-with-ie-and-ssl/60433#60433 Comment by esarjeant on Coding Dojo with IE and SSL esarjeant 2008-09-15T13:58:06Z 2008-09-15T13:58:06Z The padlock on the status bar is not crossed out. As far as the browser is concerned, there are no unsecure links. Simply removing the JavaScript reference to Dojo does eliminate the error, so I suspect there is something buried deep in the Dojo script that is causing this.