Category: General Development

  • soapUI random data cheat sheet

    Adding for my own archival purposes: Date – ${=String.format(‘%tF’, new Date() + 1)} GUID – Guid_${=(int)(Math.random()*100000000)}

  • Visual Studio 2010 access denied on “Publish”

    I was getting the errors below when publishing to a file system: Connecting to C:\inetpub\wwwroot\webapp… Transformed Web.config using Web.Debug.config into obj\Debug\TransformWebConfig\transformed\Web.config. Copying all files to temporary location below for package/publish: obj\Debug\Package\PackageTmp. Publishing folder /… Unable to add ‘Web.config’ to the Web site.  Unable to add file ‘Web.config’.  Access is denied. Publishing folder Account… Publishing folder…

  • Using Visual SourceSafe 2005 with Visual Studio 2010

    You may notice that when you attempt to add your solution to a source control in Visual Studio 2010, that it only shows a TFS server as a choice. Don’t be alarmed, however, just: 1. Go to Tools > Options. 2. Click Show all settings if not checked, then go to Source Control. 3. Go…

  • Web Service Reference in Visual Studio 2010

    If you’ve used Visual Studio 2008 or 2010, you’ll notice that Web Reference is no longer there (like in VS 2005 and previous), instead, you see Service Reference –– actually, it’s STILL there, just hidden! So, what’s the difference?  Well, according to this post: Add Web Reference is the old-style, deprecated ASP.NET webservices (ASMX) technology…

  • Reference for jsSHA

    jsSHA – A JavaScript implementation of the complete Secure Hash Standard family             (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) by Brian Turek About ————————- jsSHA is a javaScript implementation of the complete Secure Hash Algorithm family as defined by FIPS PUB 180-2 (http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf) With the slow phasing out of MD5 as the standard hash to use…