Example(s): ssldiag.exe /selfssl /s:262211793 /n:”CN=myDomainName” /v:9999 ssldiag.exe /selfssl /s:262210475 /n:”CN=myDomainName” /v:9999 SSL Diagnostics Version 1.1 (x86) http://www.microsoft.com/downloads/details.aspx?familyid=cabea1d0-5a10-41bc-83d4-06c814265282&displaylang=en SSL Diagnostics Version 1.1 (x64) http://www.microsoft.com/downloads/details.aspx?FamilyID=1CBFB70E-F442-4BB2-940B-351C3A7D62CF&displaylang=en&displaylang=en
SelfSSL Error – Failed to build the subject name blob: 0x80092023
If you get this error “Failed to build the subject name blob: 0x80092023” it is because you have incorrectly typed the required parameters for SelfSSL. The format should be: selfssl /T /N:CN=mydomain.com.au /V:9999 /S:1946911163 Note: ‘CN’ must be specified before your domain name or machine name.
Great Links for migrating from TFS2008 to TFS2010
This link is just about all you will need to migrate from TFS2008 to TFS2010. http://rules.ssw.com.au/TFS/RulesToBetterTFS2010Migration/Pages/default.aspx This link came in handy quite a few times – it contains the commands to un-configure TFS2010. http://blog.accentient.com/2011/01/21/UnconfiguringTeamFoundationServer2010.aspx And finally a great link to backing up your TFS2010 install. http://blogs.msdn.com/b/bharry/archive/2010/08/18/backing-up-and-restoring-your-tfs-server.aspx This link talks about Visual Studio compatability http://social.msdn.microsoft.com/Forums/en-US/tfsadmin/thread/670baee4-a5b4-471c-add9-a9bebc1a4f3d/
SQL 2008 R2 – The report server has encountered a configuration error. (rsServerConfigurationError)
After installing SQL server 2008 or SQL server 2008 R2 and using reporting services for the first time you may encounter this error: The report server has encountered a configuration error. (rsServerConfigurationError) Exactly as the error message says – you have not configured reporting services correctly. In my case it was because I had not… Continue reading SQL 2008 R2 – The report server has encountered a configuration error. (rsServerConfigurationError)
Incorrect rendering of SSRS HTML in Outlook
There seems to be a limitation in outlook when rendering emails which have SSRS reports embedded within them where tables widths are smaller than expected. To get around this place a text box in the headerfooterbody with a continues alphanumeric string. Also, set the InteractiveSize property within the report to 0,0 so that no paging will display within the… Continue reading Incorrect rendering of SSRS HTML in Outlook
Bind Dictionary to GridView
If your looking to bind a Dictionary object to a GridView control, like most GridView bindings, here are 3 ways of doing it: Option 1 Declaring the GridView with no coloum specific information: [xhtml] <asp:GridView ID=”SearchResults” runat=”server”> </asp:GridView> [/xhtml] Option 2 Declaring the GridView using the bound column method: [xhtml] <asp:GridView ID=”SearchResults” runat=”server”… Continue reading Bind Dictionary to GridView
Force GridView to display PagerTemplate
When writing custom paging and presenting the data in a GridView, you will need to force the PagerTemplate to display. One method of doing this is by using the GridViews OnPreRender event to force it to happen. [csharp] protected void SearchResults_PreRender(object sender, EventArgs e) { GridViewRow pagerRow = SearchResults.BottomPagerRow; if (pagerRow != null && pagerRow.Visible… Continue reading Force GridView to display PagerTemplate
Managing small ad-hoc development requests
After being involved in an request from an internal customer that left both parties dissatisfied with the interation, I decided to dedicate some time to thinking and investigating a more structured course of action to handle ad-hoc development requests. Some requests are more valid than others, and I’m hoping to use my findings as a… Continue reading Managing small ad-hoc development requests
Rebuild MS SQL full text catalogs for commerce server 2007 search
If you are getting unexpected search results from you commerce server web application it could be caused by your SQL Server full text catalog indexs not been rebuilt. We experienced this issue while using the CS2007 agent APIs to created/modify virtual catalogs. The last step in the process triggers the rebuild of all the indexes using this SQL: … Continue reading Rebuild MS SQL full text catalogs for commerce server 2007 search