Monday, May 15, 2006
SocketException on host over SmartPass VPN
Thursday, February 02, 2006
SQL 2K: User Defined Types are such a pain!
Friday, January 27, 2006
Don't use SQL Server 2000 Table Variables
- Table variables cannot be defined using User Defined Types. We use UDTs frequently to enforce consistency in even the smallest dbs. Table variables force you to break this best practice and reverse its benefits.
- Unclear that the variable is a table. The # (or ##) prefix of temp tables gives immediate indication that it is a table. Although good naming conventions could be used to reduce this, naming conventions aren't validated by the compiler.
Friday, January 06, 2006
Power Blogger?
MS Enterprise Library for GAC
Update App Config After GAC'ing Enterprise Library
The biggest gotcha I ran into is that using the E/L config tool for an application sets PublicKeyToken=null in the reference info. This will cause exceptions similar to "Logging.Configuration.ConfigurationException" to occur. To correct this problem, add the PublicKeyToken from the GAC for each E/L assembly to the appropriate location in the app's config files.
Wednesday, June 22, 2005
ASP.NET Apps within SharePoint
If your app needs to impersonate, the capabilities are limited. Setting impersonation in the identity element causes the Windows Identity to be IUSR_
ASP.NET Impersonation and Principals
Assumptions:
- VRoot requires authentication (anonymous disabled)
- VRoot's App Pool identity using NETWORK SERVICE
- "IEUser" is the end user
- "ImpersonatedUser" is the user config'd in the identity element
| Scenario | Page User | Thread CurrentPrincipal | WindowsIdentity |
| impersonate=false | IEUser | IEUser | NETWORK SERVICE |
| impersonate=true; userName not set | IEUser | IEUser | IEUser |
| impersonate=true; userName set | IEUser | IEUser | ImpersonatedUser |
So, the identity of System.Security.Principal.WindowsIdentity is the only one that changes. Page.User should typically be used for IsInRole checks.
Tuesday, March 08, 2005
SharePoint & WSS_Medium
Applications in SharePoint
WebParts are very similar to Server Controls in ASP.NET -- code in an assembly writes HTML to the output stream. No big deal from the output standpoint, but you don't get as much of the input benefits from ASP.NET controls (DataGrid is a good example).
Thursday, October 14, 2004
XSLT, XPath and GUID's
<xsl:template match="//Person[@PersonID='3'] >
...
</xsl:template>
But what if the unique identifier for Person nodes is a GUID?
<xsl:template match="//Person[@PersonID='
{4C22F4FA-0C4A-4FCF-85DF-F9B7A902244E}'] >
...
</xsl:template>
- What GUID format is used in the XML?
- Bracket notation?
- Hyphenated?
- Mixtures?
- With which casing are the alphabetic portion of the hex values stored in the XML?
- Upper case?
- Lower case?
- Mixture?
As you can see from just these two items, the matrix of problems expands rapidly. In the particular case I am dealing with, I am able to control format (bracketed, hyphenated), but not case. I have had to assume that case will be either upper or lower, but that mixed case will not occur (a fairly reasonable assumption since the GUIDs are not manually edited; for code to render mixed case it has to do extra work). So, my XSLT file finds the appropriate node by this method:
<xsl:param name='FindThisGuid'>
<xsl:variable name='UCaseGuid' select='translate($FindThisGuid, "abcdef", "ABCDEF")'>
<xsl:variable name='LCaseGuid' select='translate($FindThisGuid, "ABCDEF", "abcdef")'>
<xsl:template match='Person[@PersonID = $UCaseGuid) Person[@PersonID = ($LCaseGuid)]>
...
</xsl:template>
Now the Good News: XSLT 2.0 will hopefully resolve this issue by promoting GUID to a first class citizen (actual type).
Thursday, September 16, 2004
IE Gotcha! Do Not Use Self-Closing Script Tag
<script type='text/JavaScript' src='uitools.js' />
<script type='text/JavaScript'>
function DoSomething() {
//...
}
</script>
Seems harmless enough, right? For the longest time we could not determine why DoSomething was not accessible to page elements. We tried all kinds of things until we stumbled upon a surprising resolution. We began to drill in on the issue when I moved the DoSomething function into the upper script block (which required breaking open the self-closing script tag). Suddenly, page elements could use the function successfully. After we moved the function back to its rightful home, everything still worked. Then I realized that the only difference was that the upper script block was no longer self-closing. When I converted it back to self-closing, sure enough the page stopped working again.
For some reason IE (and possibly other browsers) does not handle self-closing script tags in an XML compliant manner. Go figure!
BP: 15 Minutes Isn't Enough
The person who does these builds seems to think that everyone receives the email instantaneously and that they will act on the information immediately. As is predictable, however, the builder frequently sends email along these lines, "Everybody stop checking in! I haven't been able to build." or "We will not have a build today because too many checkins occurred after the cut-off."
The problem is that people are not immediately in tune with email in some Borg-like fashion. We need consistent, dependable builds; but we're trying to deliver randomly.