User Jesse Weigert - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:43:47Zhttp://stackoverflow.com/feeds/user/7618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1203811/how-to-submit-a-multipart-form-data-http-post-request-from-c4How to submit a multipart/form-data HTTP POST request from C#Jesse Weigert2009-07-30T00:24:46Z2009-11-05T21:02:02Z
<p>What is the easiest way to submit an HTTP POST request with a multipart/form-data content type from C#? There has to be a better way than building my own request.</p>
<p>The reason I'm asking is to upload photos to Flickr using this api:</p>
<p><a href="http://www.flickr.com/services/api/upload.api.html" rel="nofollow">http://www.flickr.com/services/api/upload.api.html</a></p>
http://stackoverflow.com/questions/1683058/ie6-javascript-problems-with-revision-in-the-filename/1683150#16831500Answer by Jesse Weigert for IE6 Javascript problems with $Revision$ in the filenameJesse Weigert2009-11-05T19:59:49Z2009-11-05T19:59:49Z<p>I think this is a very clever idea. However, I think the issue could be related to the spaces in the url. Technically, the url should have the spaces encoded.</p>
<p>See if you can customize the keywords in SVN to generate a revision number without special characters.</p>
http://stackoverflow.com/questions/1638599/how-can-i-embed-a-textarea-inside-of-another-textarea-in-html/1638819#16388191Answer by Jesse Weigert for How can I embed a textarea inside of another textarea in HTML?Jesse Weigert2009-10-28T17:30:53Z2009-10-28T17:30:53Z<p>No. You can't do it. The only thing valid inside of a textarea is text. It's a textarea. :-)</p>
http://stackoverflow.com/questions/1634650/best-open-source-database-for-large-web-based-application/1634658#16346580Answer by Jesse Weigert for Best open source database for large web based applicationJesse Weigert2009-10-28T01:16:03Z2009-10-28T01:16:03Z<p>It really depends on your requirements. If you don't need triggers or other "advanced" features, MySql will scale quite nicely. Otherwise, look at using PostgreSQL. </p>
<p>Whatever solution you choose, be sure to write your application to use a database abstraction library and use stored procedures. When your requirements change and you get money for a full commercial database, doing those two things will make the transition that much easier.</p>
http://stackoverflow.com/questions/1622947/how-session-and-cookie-works/1623023#16230230Answer by Jesse Weigert for How session and cookie works?Jesse Weigert2009-10-26T04:10:34Z2009-10-26T04:10:34Z<p>Generally, session data is stored on the server, and it uses a tracking cookie to attach a user with the data. Cookies on the other hand are set directly in the user's browser.</p>
<p>One key difference: Session variables generally can't be seen by the end user, but cookies can(with the right browser plugin)</p>
<p>Also, if you have multiple front-end web servers, cookies will be sent to all front end servers, but session data is not shared between them without extra work.</p>
http://stackoverflow.com/questions/1619836/c-random-number/1620232#16202322Answer by Jesse Weigert for C# Random NumberJesse Weigert2009-10-25T07:12:00Z2009-10-25T07:12:00Z<p>Looking at your original code:</p>
<p>You're creating a new random number generator in each loop. Create it once and keep calling the .Next() function it that.</p>
http://stackoverflow.com/questions/1514171/download-link-hidden/1514703#15147030Answer by Jesse Weigert for download link hiddenJesse Weigert2009-10-03T20:08:46Z2009-10-03T20:15:42Z<p>If you're ever going to try and scale this service, I suggest taking a look at perlbal. One of the neat tricks that it does is that your app can send a special header which tells perlbal to serve a static file some another server. This way you don't need to tie up a PHP thread with pushing bits down to a client.</p>
http://stackoverflow.com/questions/1419800/auto-update-is-this-secure/1469014#14690146Answer by Jesse Weigert for Auto update: Is this secure?Jesse Weigert2009-09-23T23:19:25Z2009-09-30T22:46:21Z<p>Dan Kaminsky has a good set of guidelines for an updater:</p>
<p>To succeed, your update package must be: </p>
<ul>
<li>Signed.</li>
<li>Signed by you.</li>
<li>Signed by you, using the right EKU
(Extended Key Usage)</li>
<li>Signed from an unrevoked signature</li>
<li>Be the same product</li>
<li>Be a new version</li>
</ul>
<p>From your description in this question, it appears that you have the first 3.</p>
http://stackoverflow.com/questions/1426191/listening-for-incoming-emails-from-an-exchange-server/1474830#14748301Answer by Jesse Weigert for Listening for incoming emails from an Exchange Server.Jesse Weigert2009-09-25T00:23:33Z2009-09-25T00:23:33Z<p>I think WCF Exchange Server Mail Transport or Exchange Web Services is your best bet. You're going to have a hard time finding a solution that works with both Exchange 2007 and earlier versions that doesn't involve programming directly with MAPI or CDO.</p>
http://stackoverflow.com/questions/836493/cheaper-alternative-to-fogbugz/1468986#14689860Answer by Jesse Weigert for Cheaper alternative to FogBugzJesse Weigert2009-09-23T23:10:32Z2009-09-23T23:10:32Z<p>I really like <a href="http://www.mantisbt.org/" rel="nofollow">Mantis</a> because of the flexibility of creating bug workflows, and the simplicity of setting everything up. It's also free.</p>
<p>However, it's quite limited. It tracks bugs really well, but that's about it.</p>
http://stackoverflow.com/questions/1126378/how-can-i-run-some-script-code-when-an-item-is-forwarded-to-an-exchange-public-fo/1320726#13207261Answer by Jesse Weigert for How can I run some script code when an item is forwarded to an Exchange public folder?Jesse Weigert2009-08-24T06:19:28Z2009-08-24T06:19:28Z<p>You can do this by writing an Exchange 2007 transport agent. </p>
<p><a href="http://www.msexchange.org/articles%5Ftutorials/exchange-server-2007/planning-architecture/understanding-transport-agents-part1.html" rel="nofollow">http://www.msexchange.org/articles%5Ftutorials/exchange-server-2007/planning-architecture/understanding-transport-agents-part1.html</a></p>
http://stackoverflow.com/questions/1320654/will-subversion-efficiently-store-openxml-office-documents/1320703#13207031Answer by Jesse Weigert for Will Subversion efficiently store OpenXML Office documents?Jesse Weigert2009-08-24T06:10:04Z2009-08-24T06:10:04Z<p>Sadly, you can't currently do this with Subversion, but there has been some discussion around this:</p>
<p><a href="http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=651443" rel="nofollow">http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=651443</a></p>
http://stackoverflow.com/questions/1307998/stopping-session-sharing-between-malicious-users-in-rails/1310322#13103221Answer by Jesse Weigert for Stopping Session Sharing between malicious users in RailsJesse Weigert2009-08-21T06:22:23Z2009-08-21T06:22:23Z<p>One way I can think of would be to set the same random value in both the session and a cookie with every page refresh. Check the two to make sure they are the same. If someone shares their session, the cookie and session will get out of sync.</p>
http://stackoverflow.com/questions/1288533/centralized-credentials-service-for-various-apps/1291894#12918940Answer by Jesse Weigert for Centralized Credentials Service For Various AppsJesse Weigert2009-08-18T05:06:21Z2009-08-18T05:06:21Z<p>Ideally, you should be able to use Windows Impersonation to use the client Kerberos ticket to authenticate and do things on behalf of the client.</p>
<p>The second example on this page explains how to do it:
<a href="http://msdn.microsoft.com/en-us/library/aa302385.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa302385.aspx</a></p>
http://stackoverflow.com/questions/1163074/how-can-i-protect-a-directory-using-php/1163086#11630861Answer by Jesse Weigert for How can I protect a directory using PHP?Jesse Weigert2009-07-22T04:35:04Z2009-07-22T04:35:04Z<p>Why using PHP? .htaccess files were designed for this purpose. If you're trying to do something like store user logons in a database, look at the something like <a href="http://modauthmysql.sourceforge.net/" rel="nofollow">Mod_auth_mysql</a></p>
<p>What you can do is place the files outside of your webroot and write a php script to serve those files after passing your authentication logic.</p>
http://stackoverflow.com/questions/1037770/is-sub-domain-better-or-sub-folder/1163080#11630800Answer by Jesse Weigert for Is sub-domain better or sub-folder?Jesse Weigert2009-07-22T04:33:37Z2009-07-22T04:33:37Z<p>If your site can be easily partitioned by the subdomains and each subdomain can operate independently then do it! You can then easily scale out your application by deploying different servers(or clusters) for each subdomain.</p>
<p>Examples:
Craigslist: by region(seattle.craigslist.org, sfbay.craigslist.org, etc)
Livejournal: by community/user</p>
<p>Technically, you can do this with folders, but it requires a web proxy farm, whereas subdomains can be done with simple DNS entries.</p>
http://stackoverflow.com/questions/1152011/asp-net-application-pool-and-garbage-collection/1152066#11520662Answer by Jesse Weigert for asp.net application pool and garbage collectionJesse Weigert2009-07-20T07:09:39Z2009-07-20T07:09:39Z<p>Yes, recycling the app pool kills and restarts the IIS process responsible for running your application. All resources are freed at this point, simply because the process is exiting.</p>
<p>If the process is never restarted and simply leaks handles, the garbage collector will eventually clean them up. However, it's likely that you'll run out of handles for whatever resource is leaking before this happens. This is why it's important to call Dispose() on these objects(preferably by the "using" pattern) so that the resources are freed as soon as the app is done with them and not when the garbage collector gets around to it.</p>
http://stackoverflow.com/questions/1114854/avoid-network-login-prompt/1114889#11148891Answer by Jesse Weigert for Avoid network login promptJesse Weigert2009-07-11T23:11:56Z2009-07-11T23:11:56Z<p>How are the accounts set up on the domains? Users shouldn't have more than one account. Either the account is on the staff domain or the student domain. If you need to authenticate a student account on a staff server, you need to ensure that your domains are in the same forest. If they aren't in the same forest, you need to set up a trust between the forests.</p>
http://stackoverflow.com/questions/1030125/coming-from-bash-what-windows-scripting-language-to-learn/1030160#10301601Answer by Jesse Weigert for coming from bash, what windows scripting language to learn?Jesse Weigert2009-06-23T01:04:12Z2009-06-23T01:04:12Z<p>VBScript, batch and Powershell are the big ones I can think of. Also, learn how WMI works and how you can call it from VBScript/Powershell.</p>
http://stackoverflow.com/questions/1008723/who-owns-a-file-handle-in-windows/1008735#10087350Answer by Jesse Weigert for Who owns a file handle in windows?Jesse Weigert2009-06-17T18:19:48Z2009-06-17T18:19:48Z<p>Process explorer from Sysinternals will tell you this.</p>
http://stackoverflow.com/questions/1003381/difference-between-like-and-in-mysql/1003395#10033957Answer by Jesse Weigert for Difference between LIKE and = in MYSQL?Jesse Weigert2009-06-16T19:07:19Z2009-06-16T19:07:19Z<p>LIKE can do wildcard matching:</p>
<pre><code>SELECT foo FROM bar WHERE foobar LIKE "Foo%"
</code></pre>
<p>If you don't need pattern matching, then use = instead of LIKE. It's faster and more secure. (You are using parameterized queries, right?)</p>
http://stackoverflow.com/questions/992532/what-net-files-should-be-excluded-from-source-control/992536#9925363Answer by Jesse Weigert for What .net files should be excluded from source control?Jesse Weigert2009-06-14T09:44:16Z2009-06-14T09:44:16Z<p>It really depends on your build system. Check in the minimum files you need to run a full build. </p>
<p>Generally, this means you exclude everything except your csproj, and *.cs files. You can probably check in your .sln file if you want.</p>
http://stackoverflow.com/questions/966389/how-to-change-user-credentials-of-windows-service-from-command-line/966566#9665660Answer by Jesse Weigert for How to change user credentials of windows service from command line?Jesse Weigert2009-06-08T19:35:07Z2009-06-08T19:35:07Z<p>I simply called WMI from powershell to do this.</p>
<pre><code>$Svc = Get-WmiObject win32_service -filter "name='ServiceName'"
$Svc.Change($Null, $Null, $Null, $Null, $Null, $Null, "User", "Password")
</code></pre>
<p>Don't forget to restart the service afterwards:</p>
<pre><code>Stop-Service -Name 'ServiceName'
Start-Service -Name 'ServiceName'
</code></pre>
<p>For more fun with WMI and services, see
<a href="http://msdn.microsoft.com/en-us/library/aa394418.aspx" rel="nofollow">Win32_Service Class</a></p>
http://stackoverflow.com/questions/900596/which-development-platform-should-i-use-for-desktop-windows-application/900624#9006241Answer by Jesse Weigert for Which development platform should I use for desktop Windows application?Jesse Weigert2009-05-23T01:28:26Z2009-05-23T01:28:26Z<p>My preference would be C# with MSSQL Express. You can use the visual studio express edition for your development environment.</p>
http://stackoverflow.com/questions/876635/how-can-i-block-website/876645#8766454Answer by Jesse Weigert for how can i block website ?Jesse Weigert2009-05-18T07:52:01Z2009-05-18T07:52:01Z<p>First, this is not an effective method to block websites, but if you really want to do it this way, then look up the format of the hosts file.</p>
<p>If you want to block a website by essentially hijacking the DNS lookup, you need to redirect the hostname only.</p>
<p>The hosts file you are generating looks something like this:</p>
<p>127.0.0.1 <a href="http://website/file" rel="nofollow">http://website/file</a></p>
<p>What you want to see in the file is this:</p>
<p>127.0.0.1 website</p>
http://stackoverflow.com/questions/838994/is-there-a-concept-of-server-side-cookies-in-asp-net/839032#8390321Answer by Jesse Weigert for Is there a concept of server-side cookies in ASP.NET?Jesse Weigert2009-05-08T09:34:49Z2009-05-08T09:34:49Z<p>ASP.NET has a concept of the session object. It should store a small bit of information whether or not the user has cookies enabled.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms972429.aspx</a></p>
http://stackoverflow.com/questions/820899/creating-an-msi-installer-for-a-windows-service/820959#8209592Answer by Jesse Weigert for Creating an MSI installer for a Windows ServiceJesse Weigert2009-05-04T17:05:07Z2009-05-04T17:05:07Z<p>If you're willing to use WiX, you can use the <ServiceInstall> element to install your service.</p>
<p><a href="http://www.wixwiki.com/index.php?title=ServiceInstall_Element" rel="nofollow">http://www.wixwiki.com/index.php?title=ServiceInstall_Element</a></p>
http://stackoverflow.com/questions/685162/how-much-traffic-can-shared-web-hosting-take/685180#6851801Answer by Jesse Weigert for How Much Traffic Can Shared Web Hosting Take?Jesse Weigert2009-03-26T10:20:25Z2009-03-26T10:20:25Z<p>It would be best if you ask your provider these questions. Every provider is going to be different.</p>
<p>Generally what happens is that the provider can handle the requests, but they'll simply shut down your site once it reaches a certain threshold.</p>
http://stackoverflow.com/questions/685082/cannot-access-disposed-object-net/685129#6851291Answer by Jesse Weigert for Cannot access disposed object .NETJesse Weigert2009-03-26T09:54:05Z2009-03-26T09:54:05Z<p>Why do you need to dispose the user control? Typically, when the form closes, it will dispose of all of it's child controls for you.</p>
<p>When you call dispose on an object, you are essentially telling it to go away.. you don't want it anymore. You can't change your mind -- once it's disposed, it's gone. Don't try to use it anymore.</p>
<p>Typically, you don't call dispose on an object directly; you should use the "using" pattern to avoid disposing of an object before you need it again, and to ensure the object is disposed once you are done with it.</p>
http://stackoverflow.com/questions/684811/how-to-get-around-a-by-design-issue-with-windows-dir/684826#6848260Answer by Jesse Weigert for How to get around a 'by design' issue with Windows dir?Jesse Weigert2009-03-26T07:36:14Z2009-03-26T07:36:14Z<p>You could write your own directory listing executable. It wouldn't take much to whip up something in C#. Use Directory.GetFiles() to retrieve the directory listing, and pass each one into the "GetShortPathName()" Win32 function.</p>
<p>This page has a decent example of how to call GetShortPathName() from C#:
<a href="http://csharparticles.blogspot.com/2005/07/long-and-short-file-name-conversion-in.html" rel="nofollow">http://csharparticles.blogspot.com/2005/07/long-and-short-file-name-conversion-in.html</a></p>
http://stackoverflow.com/questions/1807256/alternative-to-mysqlfetcharrayComment by Jesse Weigert on alternative to mysql_fetch_array()Jesse Weigert2009-11-27T07:49:08Z2009-11-27T07:49:08ZYes, there are two big advantages:
1. Built in SQL parametrization support which when used correctly eliminates SQL injection problems.
2. Allows you to easily switch database engines by changing the connection string. (No need to replace all your mysql_fetch_array() calls with the equivalent postgresql/Oracle/MSSQL calls.)
There are plenty of other advantages as well.
<a href="http://pear.php.net/package/MDB2/" rel="nofollow">pear.php.net/package/MDB2</a>
http://stackoverflow.com/questions/1807256/alternative-to-mysqlfetcharrayComment by Jesse Weigert on alternative to mysql_fetch_array()Jesse Weigert2009-11-27T07:42:43Z2009-11-27T07:42:43ZPlease try using the PEAR::MDB2 database abstraction library instead of calling the mysql function calls directly.http://stackoverflow.com/questions/1773381/what-is-the-shell-namespace-way-to-create-a-new-folder/1773663#1773663Comment by Jesse Weigert on What is the "Shell Namespace" way to create a new folder?Jesse Weigert2009-11-20T22:40:51Z2009-11-20T22:40:51ZYes.. Call SHChangeNotify as this is the correct way to do it. Poking around in the IContextMenu is a good way to ensure your program breaks on the next version of Windows.http://stackoverflow.com/questions/1736626/how-can-be-2-1-99999/1736641#1736641Comment by Jesse Weigert on How can be 2 = 1.99999....?Jesse Weigert2009-11-15T05:06:43Z2009-11-15T05:06:43ZTechnically not a "rounding error". 1.9999... is exactly equal to 2http://stackoverflow.com/questions/1634650/best-open-source-database-for-large-web-based-application/1634658#1634658Comment by Jesse Weigert on Best open source database for large web based applicationJesse Weigert2009-10-28T07:37:24Z2009-10-28T07:37:24Z@James: Exactly, but if the need arises....
@Larry: Well written stored procedures should conform to the SQL specification, and switching to a new database would only require minor changes to the schema and stored procedures, but not any changes to your application. In fact, your application could be written such that the database engine could be configurable at run time. If you hard coded SQL statements into your application, then changing the database engine might require changes to the application itself.http://stackoverflow.com/questions/1634650/best-open-source-database-for-large-web-based-applicationComment by Jesse Weigert on Best open source database for large web based applicationJesse Weigert2009-10-28T01:17:20Z2009-10-28T01:17:20ZMSSQL express has built in limitations which limit scaling or using in any environment with more than about 5 clients.http://stackoverflow.com/questions/1634255/how-do-i-make-it-so-that-people-can-use-https-on-my-domainComment by Jesse Weigert on How do I make it so that people can use "https://" on my domain?Jesse Weigert2009-10-27T23:24:14Z2009-10-27T23:24:14ZThis probably belongs on serverfault.comhttp://stackoverflow.com/questions/1399146/send-e-mail-using-c-not-so-easy/1584214#1584214Comment by Jesse Weigert on Send E-mail using C# - Not so easy.Jesse Weigert2009-10-26T06:00:12Z2009-10-26T06:00:12ZCode sample is good, but please use the using pattern instead of manually disposing of the mail object.http://stackoverflow.com/questions/1514171/download-link-hidden/1514185#1514185Comment by Jesse Weigert on download link hiddenJesse Weigert2009-10-03T20:10:06Z2009-10-03T20:10:06ZThe first example should work and is necessary so that the browser has a clue on what to call the file.http://stackoverflow.com/questions/1419800/auto-update-is-this-secure/1469014#1469014Comment by Jesse Weigert on Auto update: Is this secure?Jesse Weigert2009-09-30T22:47:54Z2009-09-30T22:47:54ZThe user of the library should be able to pass the name of the application and the current version, and the library could read the metadata from the installer to check the last two points.http://stackoverflow.com/questions/1146076/exchange-iis-and-multiple-nicsComment by Jesse Weigert on Exchange, IIS and multiple nicsJesse Weigert2009-09-26T00:56:51Z2009-09-26T00:56:51ZDon't delete it. Post your answer and accept it.http://stackoverflow.com/questions/339027/add-appointment-to-calendar-through-exchange-programatically/339095#339095Comment by Jesse Weigert on Add appointment to calendar through Exchange programaticallyJesse Weigert2009-09-12T18:40:14Z2009-09-12T18:40:14ZUse CDO for Exchange 2003 and EWS for 2007/2010. Btw, EWS is MUCH easier than CDO.http://stackoverflow.com/questions/1126378/how-can-i-run-some-script-code-when-an-item-is-forwarded-to-an-exchange-public-fo/1128236#1128236Comment by Jesse Weigert on How can I run some script code when an item is forwarded to an Exchange public folder?Jesse Weigert2009-08-24T06:20:34Z2009-08-24T06:20:34ZEvent sinks were always a bad idea and I don't think they're even supported in Exchange 2007 anymore. If they are, they definitely won't be supported in Exchange 2010.http://stackoverflow.com/questions/1291584/is-jdbc-secure/1291601#1291601Comment by Jesse Weigert on Is JDBC secure?Jesse Weigert2009-08-18T05:01:01Z2009-08-18T05:01:01ZThis works for PHP/MySQL as well as pretty much any other modern/web programming language. http://stackoverflow.com/questions/855926/how-to-stop-exchange-from-automatically-converting-plain-text-emails-to-htmlComment by Jesse Weigert on How to stop Exchange from automatically converting plain text emails to HTML?Jesse Weigert2009-08-10T21:09:01Z2009-08-10T21:09:01ZHow is your application retrieving the mails?