User Doug D - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:46:03Z http://stackoverflow.com/feeds/user/113701 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#1693121 6 Answer by Doug D for XSL variable number of child nodes... Doug D 2009-11-07T14:05:21Z 2009-11-19T05:59:18Z <pre><code>&lt;xsl:template match="Images/*[starts-with(name(),'Image']"&gt; &lt;img src="{.}" /&gt; &lt;/xsl:template&gt; </code></pre> <p>BTW, perhaps you can't change the XML tag names, but it would better to name the inner tags as Image rather than ImageX, which is probably unneccesary.</p> http://stackoverflow.com/questions/1723649/jquery-checkbox-issue-do-not-check-if-its-disabled/1723711#1723711 0 Answer by Doug D for jquery checkbox issue - do not check if it's disabled Doug D 2009-11-12T16:55:39Z 2009-11-12T16:55:39Z <p>Use jQuery's ":disabled" filter instead of accessing the 'disabled' attribute.</p> http://stackoverflow.com/questions/1723053/creating-xsd-schema-for-messages-validation-problem/1723135#1723135 0 Answer by Doug D for Creating XSD schema for messages validation Problem Doug D 2009-11-12T15:38:43Z 2009-11-12T15:38:43Z <p>It could be the XML Schema targetNamespace (ref <a href="http://dev.ektron.com/kb%5Farticle.aspx?id=426" rel="nofollow">http://dev.ektron.com/kb%5Farticle.aspx?id=426</a>). If the targetNamespace is given, then you need the prefix. When defining a schema, references to defined types, elements and attributes within the schema need a prefix. Of course, references to Schema types need xs: or xsd: prefix, depending on which prefix you are using. I've seen both in common practice.</p> http://stackoverflow.com/questions/1320419/loadcontrol-vs-construct-asp-net-control/1400190#1400190 2 Answer by Doug D for LoadControl vs Construct ASP.Net Control Doug D 2009-09-09T14:47:29Z 2009-09-09T14:47:29Z <p>Apparently, using LoadControl with typeof (or GetType) has the same problem as using 'new' where the child controls are not initialized. Using LoadControl with a string to the ASCX file works.</p> <p>Does not initialize child controls.</p> <pre><code>LoadControl(typeof(MyReport), null); </code></pre> <p>Works!</p> <pre><code>LoadControl("Report.ascx"); </code></pre> http://stackoverflow.com/questions/1045460/how-to-use-html-anchors-as-a-table-of-contents-in-email/1045485#1045485 2 Answer by Doug D for How to use HTML anchors as a table of contents in email? Doug D 2009-06-25T18:27:40Z 2009-06-25T18:27:40Z <p>Try adding the 'name' attribute to the anchor as well as the 'id'.</p> <pre><code>&lt;a id="FUNDING" name="FUNDING"&gt; </code></pre> http://stackoverflow.com/questions/1038101/how-to-inline-css-and-javascript-through-xsl/1040238#1040238 1 Answer by Doug D for How to inline CSS and javascript through XSL Doug D 2009-06-24T18:54:41Z 2009-06-25T14:36:41Z <p>XSLT 2.0 provides the unparsed-text() function to read documents via URL that are not XML.</p> <p>In XSLT 1.0, if you don't need to be too script about the CSS, you can use the following to make the CSS file XML-compatible. And, fortunately, the browsers tolerate the HTML comments.</p> <p>CSS</p> <pre><code>&lt;!--/*--&gt;&lt;root&gt;&lt;![CDATA[&lt;!--*/--&gt; body { margin: 0; } div &gt; p { background-color: yellow; } &lt;!--/*--&gt;]]&gt;&lt;/root&gt;&lt;!--*/--&gt; </code></pre> <p>XSLT</p> <pre><code>&lt;style type="text/css"&gt; &lt;xsl:value-of select="document('test.css')" disable-output-escaping="yes" /&gt; &lt;/style&gt; </code></pre> http://stackoverflow.com/questions/1040880/possible-to-do-xsl-transform-on-dynamically-generated-xml/1040958#1040958 3 Answer by Doug D for Possible to do xsl transform on dynamically generated xml? Doug D 2009-06-24T20:58:35Z 2009-06-25T12:08:40Z <p>There are three essential elements to running a multi-pass transform.</p> <ul> <li><code>&lt;xsl:import&gt;</code></li> <li><code>&lt;xsl:apply-imports&gt;</code></li> <li><code>node-set()</code> extension function</li> </ul> <p>The example passes an XML document through two transforms serially. That is, it passes the content through a transform that removes namespace nodes and then takes the output from the first transform and passes it through a second transform that changes the title of the document. In this case the document is an XHTML document. The second transform is written such that it cannot accept an XHTML document with a namespace defined.</p> <p>Original XHTML document</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;This is the old title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;This is some text.&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>After pass 1 (remove namespace nodes)</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;This is the old title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;This is some text.&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Result (after pass 2)</p> <p>Note that the title text has changed.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;This is the new title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;This is some text.&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>XSLT for pass 1</p> <p>This transform applies templates in this file to the content to remove namespace nodes, but copies the rest of the content. Then, during pass 2, applies the templates that are defined in the imported XSLT by using the <code>&lt;xsl:apply-imports&gt;</code> tag. The templates for pass 2 are imported using the <code>&lt;xsl:import&gt;</code> tag.</p> <p>The results of the first pass are stored in a variable named "<code>treefrag</code>". The tree fragment is converted to a node-set using the extension function "<code>node-set()</code>". In this example, the Microsoft XML parser 4.0 is used, so the <code>urn:schemas-microsoft-com:xslt</code> namespace is declared.</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" &gt; &lt;xsl:import href="pass2.xslt" /&gt; &lt;xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" /&gt; &lt;xsl:template match="/"&gt; &lt;xsl:param name="pass"&gt;1&lt;/xsl:param&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$pass=1"&gt; &lt;xsl:variable name="treefrag"&gt; &lt;xsl:apply-templates&gt; &lt;xsl:with-param name="pass" select="$pass" /&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:variable&gt; &lt;xsl:variable name="doc" select=" msxsl:node-set($treefrag) " /&gt; &lt;xsl:apply-templates select="$doc"&gt; &lt;xsl:with-param name="pass"&gt;2&lt;/xsl:with-param&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:when&gt; &lt;xsl:when test="$pass=2"&gt; &lt;xsl:apply-imports /&gt; &lt;/xsl:when&gt; &lt;/xsl:choose&gt; &lt;/xsl:template&gt; &lt;!-- identity template without namespace nodes --&gt; &lt;xsl:template match="*"&gt; &lt;xsl:param name="pass"&gt;2&lt;/xsl:param&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$pass=1"&gt; &lt;xsl:element name="{name()}"&gt; &lt;xsl:apply-templates select="@*|node()"&gt; &lt;xsl:with-param name="pass" select="$pass" /&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:element&gt; &lt;/xsl:when&gt; &lt;xsl:when test="$pass=2"&gt; &lt;xsl:apply-imports /&gt; &lt;/xsl:when&gt; &lt;/xsl:choose&gt; &lt;/xsl:template&gt; &lt;xsl:template match="@*|text()|comment()|processing-instruction()"&gt; &lt;xsl:param name="pass"&gt;2&lt;/xsl:param&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$pass=1"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="@*|node()"&gt; &lt;xsl:with-param name="pass" select="$pass" /&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:copy&gt; &lt;/xsl:when&gt; &lt;xsl:when test="$pass=2"&gt; &lt;xsl:apply-imports /&gt; &lt;/xsl:when&gt; &lt;/xsl:choose&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>XSLT for pass 2</p> <p>This transform simply changes the contents of the TITLE tag can copies all the rest of the content.</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/&gt; &lt;xsl:template match="title"&gt; &lt;title&gt;This is the new title&lt;/title&gt; &lt;/xsl:template&gt; &lt;!-- identity template --&gt; &lt;xsl:template match="@*|node()"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="@*|node()"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Source article: <a href="http://dev.ektron.com/kb%5Farticle.aspx?id=494" rel="nofollow">"XSLT: Multi-pass transforms"</a></p> http://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041298#1041298 1 Answer by Doug D for jQuery string manipulation, regex noob. Doug D 2009-06-24T22:16:54Z 2009-06-24T22:16:54Z <pre><code>.replace(/\[([^\]]*)\]/g, link + "$1&lt;/a&gt;") </code></pre> <p>which means, find text between [ and ] and replace it with the value of link, the text itself and ''. This ensures matching square brackets. The 'g' means 'do it multiple times (globally)'.</p> http://stackoverflow.com/questions/935757/how-to-emit-bare-xml-for-a-webget-method-in-wcf 1 How to emit bare XML for a [WebGet] method in WCF? Doug D 2009-06-01T17:06:32Z 2009-06-08T16:52:49Z <p>How can I define a [OperationContract] [WebGet] method to return XML that is stored in a string, without HTML encoding the string? </p> <p>The application is using WCF service to return XML/XHTML content which has been stored as a string. The XML does not correspond to any specific class via [DataContract]. It is meant to be consumed by an XSLT.</p> <pre><code>[OperationContract] [WebGet] public XmlContent GetContent() { return new XmlContent("&lt;p&gt;given content&lt;/p&gt;"); } </code></pre> <p>I have this class:</p> <pre><code>[XmlRoot] public class XmlContent : IXmlSerializable { public XmlContent(string content) { this.Content = content; } public string Content { get; set; } #region IXmlSerializable Members public System.Xml.Schema.XmlSchema GetSchema() { return null; } public void ReadXml(XmlReader reader) { throw new NotImplementedException(); } public void WriteXml(XmlWriter writer) { writer.WriteRaw(this.Content); } #endregion } </code></pre> <p>But when serialized, there is a root tag the wraps the given content.</p> <pre><code>&lt;XmlContent&gt; &lt;p&gt;given content&lt;/p&gt; &lt;/XmlContent&gt; </code></pre> <p>I know how to change the name of the root tag ([XmlRoot(ElementName = "div")]), but I need to omit the root tag, if at all possible.</p> <p>I have also tried [DataContract] instead of IXmlSerializable, but it seems less flexible.</p> http://stackoverflow.com/questions/933664/net-xml-serialization-without-xml-root-node/955612#955612 0 Answer by Doug D for .NET XML Serialization without <?xml> root node Doug D 2009-06-05T12:33:50Z 2009-06-05T12:33:50Z <p>Derive your own XmlTextWriter to omit the XML declaration. </p> <pre><code>Private Class MyXmlTextWriter Inherits XmlTextWriter Sub New(ByVal sb As StringBuilder) MyBase.New(New StringWriter(sb)) End Sub Sub New(ByVal w As TextWriter) MyBase.New(w) End Sub Public Overrides Sub WriteStartDocument() ' Don't emit XML declaration End Sub Public Overrides Sub WriteStartDocument(ByVal standalone As Boolean) ' Don't emit XML declaration End Sub End Class </code></pre> <p>Call Serialize with an instance of the derived MyXmlTextWriter.</p> <pre><code>Dim tw As New MyXmlTextWriter(sb) Dim objXmlSerializer As New XmlSerializer(type) objXmlSerializer.Serialize(tw, obj) </code></pre> http://stackoverflow.com/questions/921276/cs2000-compiler-initialization-failed-unexpectedly/940313#940313 0 Answer by Doug D for CS2000: Compiler initialization failed unexpectedly Doug D 2009-06-02T15:48:28Z 2009-06-02T15:48:28Z <p>Tip: We had a similar problem with msxsl:script tags in XSLT using .NET compiled transform. Note that the error you reported occurs in the compile method of the serializer.</p> <p>You have checked disk space and permissions, but perhaps the process user is not admin, example, asp.net process.</p> <p>WARNING: The Microsoft .NET XslCompiledTransform class causes several problems when msxsl:script is used. The XslCompiledTransform creates a DLL in the temporary folder and locks it in memory. </p> <ol> <li>The ASP.NET process may not have access to the temporary folder and the XSLT will fail. </li> <li>The temporary DLL is not temporary and remains in the folder: one DLL for every transform that uses msxsl:script. Eventually the server's hard drive is filled to capacity. </li> <li>The DLL is locked in memory, causing a severe memory leak. </li> </ol> <p>DO NOT USE msxsl:script WITH Microsoft .NET XslCompiledTransform class. Instead, use an extension object to call C# or VB.NET methods outside the XSLT. See Microsoft's documentation on <a href="http://msdn.microsoft.com/en-us/library/tf741884.aspx" rel="nofollow">XSLT Extension Objects</a> . </p> <p>(<a href="http://dev.ektron.com/kb%5Farticle.aspx?id=482" rel="nofollow">http://dev.ektron.com/kb_article.aspx?id=482</a>)</p> http://stackoverflow.com/questions/935530/how-to-sort-in-memory-xml-with-microsoft-xmldom/935628#935628 1 Answer by Doug D for How to Sort In-Memory XML with Microsoft XMLDOM? Doug D 2009-06-01T16:37:37Z 2009-06-01T16:37:37Z <p>I'm not familiar with any method other than using XSLT to sort XML.</p> <p>Why is XSLT not an option? It's simple and should not a performance buster. You can cache the FreeThreadedDOMDocument object once it has loaded the XSLT document to avoid parsing and compiling the XSLT document each time.</p> http://stackoverflow.com/questions/935080/serializing-generic-xml-data-across-wcf-web-service-requests/935171#935171 0 Answer by Doug D for serializing generic XML data across WCF web service requests Doug D 2009-06-01T14:54:03Z 2009-06-01T14:54:03Z <p>The class returned by the method needs to implement IXmlSerializable.</p> <pre><code>public XmlContent XmlContent() { return new XmlContent(); } [XmlRoot(ElementName = "div")] public class XmlContent : IXmlSerializable { #region IXmlSerializable Members public System.Xml.Schema.XmlSchema GetSchema() { return null; } public void ReadXml(XmlReader reader) { throw new NotImplementedException(); } public void WriteXml(XmlWriter writer) { writer.WriteRaw("&lt;p&gt;some text&lt;/p&gt;"); } #endregion } </code></pre> <p>I still haven't found how to avoid serializing the root element (e.g., "div").</p> <p>I tried sending XML as a string too, but it is not output as expected, that is, the "string" is HTML encoded and wrapped in tags. This make parsing very difficult.</p> http://stackoverflow.com/questions/934859/consume-wcf-with-javascript-but-keep-it-generic-enough-for-all-clients/935119#935119 1 Answer by Doug D for Consume WCF with JavaScript but keep it generic enough for all clients? Doug D 2009-06-01T14:41:23Z 2009-06-01T14:41:23Z <p>First, since you don't want to depend on Microsoft Ajax ScriptManager, don't use &lt;enableWebScript /&gt; in the endpointBehaviors/behavior. It is Microsoft-specific JSON.</p> <p>Fortunately, however, WCF makes it very easy to allow your client to decide whether they want XML or generic JSON. </p> <ol> <li><p>Use the <strong>&lt;webHttp /&gt;</strong> behavior.<br /></p> <p>&lt;endpointBehaviors&gt;<br /> &lt;behavior name="My.WcfServices.webHttpBehavior"&gt;<br /> <strong>&lt;webHttp /&gt;</strong><br /> &lt;/behavior&gt;<br /> &lt;/endpointBehaviors&gt;<br /></p></li> <li><p>Create a custom WebServiceHost and custom property attribute as described in <a href="http://damianblog.com/2008/10/31/wcf-rest-dynamic-response/" rel="nofollow" title="WCF REST Services">Damian Mehers' blog, WCF REST Services</a>. In Mehers' code, the type is determined by the request content type. You may want to extend it to examine the URL, for example, .xml or .json or ?format=xml|json.</p></li> <li><p>In the <strong>SerializeReply</strong> method, examine the URL.</p> <p>Message request = OperationContext.Current.RequestContext.RequestMessage;<br /> Uri url = request.Properties["OriginalHttpRequestUri"] as Uri;<br /> // Examine ?format query string<br /> System.Collections.Specialized.NameValueCollection colQuery = System.Web.HttpUtility.ParseQueryString(url.Query);<br /> string strResponseFormat = colQuery["format"];<br /> // or examine extension <br /> string strResponseFormat = url.LocalPath.Contains(".json") ? "json" : "xml";<br /></p></li> <li><p>Define your method(s)</p> <p>[OperationContract]<br /> [WebGet(UriTemplate="Hello.{responseFormat}")] // or "Hello?format={responseFormat}"<br /> [DynamicResponseType]<br /> public string Hello(string responseFormat)<br /> {<br /> return "Hello World";<br /> }<br /></p></li> </ol> <p>Example URLs:<br /> <a href="http://localhost/myrest.svc/Hello.xml" rel="nofollow">http://localhost/myrest.svc/Hello.xml</a><br /> <a href="http://localhost/myrest.svc/Hello.json" rel="nofollow">http://localhost/myrest.svc/Hello.json</a><br /> or<br /> <a href="http://localhost/myrest.svc/Hello?format=xml" rel="nofollow">http://localhost/myrest.svc/Hello?format=xml</a><br /> <a href="http://localhost/myrest.svc/Hello?format=json" rel="nofollow">http://localhost/myrest.svc/Hello?format=json</a><br /></p> <ol> <li>Both JSON and XML are easy to consume across browsers. Libraries, such as jQuery for JSON and Sarissa for XML make it even easier.</li> </ol> <p>NOTE: If you see error "Could not find a base address that matches scheme http for the endpoint with binding WebHttpBinding.", add the <strong>baseAddressPrefixFilters</strong> element and add localhost (or whatever your domain) to IIS Host Header Names.</p> <pre><code>&lt;system.serviceModel&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true"&gt; &lt;baseAddressPrefixFilters&gt; &lt;add prefix="http://localhost"/&gt; &lt;/baseAddressPrefixFilters&gt; &lt;/serviceHostingEnvironment&gt; </code></pre> http://stackoverflow.com/questions/207477/restful-url-design-for-search/926706#926706 5 Answer by Doug D for RESTful URL design for search Doug D 2009-05-29T15:48:13Z 2009-05-29T15:48:13Z <p>Although have the parameters in the path has some advantages, there are, IMO, some outweighing factors.</p> <ul> <li><p>Not all characters needed for a search query are permitted in a URL. Most punctuation and Unicode characters would need to be URL encoded as a query string parameter. I'm wrestling with the same problem. I would like to use XPath in the URL, but not all XPath syntax is compatible with a URI path. So for simple paths, /cars/doors/driver/lock/combination would be appropriate to locate the 'combination' element in the driver's door XML document. But /car/doors[id='driver' and lock/combination='1234'] is not so friendly.</p></li> <li><p>I think there is a difference between filtering a resource based on one of its attributes and specifying a resource. </p> <p>For example, since</p> <p>/cars/colors returns a list of all colors for all cars (the resource returned is a collection of color objects)</p> <p>/cars/colors/red,blue,green would return a list of color objects that are red, blue or green, not a collection of cars.</p> <p>To return cars, the path would be</p> <p>/cars?color=red,blue,green or /cars/search?color=red,blue,green</p></li> <li><p>It is more difficult to read because name/value pairs are not isolated from the rest of the path, which is not name/value pairs. </p></li> </ul> <p>One last comment. I prefer '/garages/yyy/cars' (always plural) to '/garage/yyy/cars' (perhaps it was a typo in the original answer) because it avoid changing the path between singular and plural. For words with an added 's', it's not so bad, but changing /person/yyy/friends to /people/yyy seems cumbersome.</p> http://stackoverflow.com/questions/1707790/direct-actions-on-html-and-text-in-jquery Comment by Doug D on Direct actions on html() and text() in jQuery Doug D 2009-11-10T13:15:46Z 2009-11-10T13:15:46Z Just a word of caution, in case you have not thought of it already. The search and replace on the HTML has two complications. 1. The replace will apply to HTML tag names and attributes, which may or may not be intended. 2. Some &quot;words&quot; may not be replaced as intended because they are split by tags, for example, [span class=&quot;firstChar&quot;]D[/span]irect actions. The replace of &quot;Direct&quot; won't find it because of the injects closing SPAN tag. http://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#1693121 Comment by Doug D on XSL variable number of child nodes... Doug D 2009-11-10T13:03:07Z 2009-11-10T13:03:07Z BTW, it's also a (legal) shortcut in SGML, which is the father of XML. Sometimes I wish XML had adopted the notation. :-) http://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#1693121 Comment by Doug D on XSL variable number of child nodes... Doug D 2009-11-10T13:01:34Z 2009-11-10T13:01:34Z It's just a quick (illegal) way to type a closing tag. The xsl:template tag would need to be properly closed. http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118150#118150 Comment by Doug D on Hidden Features of JavaScript? Doug D 2009-06-25T14:31:04Z 2009-06-25T14:31:04Z When doing code reviews, always look for this one. Leaving off the &quot;, 10&quot; is a common mistake that goes unnoticed in most testing. http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61125#61125 Comment by Doug D on Hidden Features of JavaScript? Doug D 2009-06-25T14:27:16Z 2009-06-25T14:27:16Z eval is evil, though rarely necessary http://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041295#1041295 Comment by Doug D on jQuery string manipulation, regex noob. Doug D 2009-06-24T22:22:49Z 2009-06-24T22:22:49Z This approach does not ensure matching square brackets. I recommend my solution below. http://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041298#1041298 Comment by Doug D on jQuery string manipulation, regex noob. Doug D 2009-06-24T22:22:12Z 2009-06-24T22:22:12Z This site provides a place to test regular expressions in either JavaScript or .NET. It also contains many samples, but they are not always correct. <a href="http://www.regexlib.com/RETester.aspx" rel="nofollow">regexlib.com/RETester.aspx</a> http://stackoverflow.com/questions/244953/serialize-a-nullable-int/610630#610630 Comment by Doug D on Serialize a nullable int Doug D 2009-06-05T11:56:01Z 2009-06-05T11:56:01Z Since SomeValue may be null... public double XmlSomeValue { get { return SomeValue.HasValue? SomeValue.Value : 0; } set { SomeValue = value; } } http://stackoverflow.com/questions/828004/cms-wysiwyg-for-dummies Comment by Doug D on CMS -WYSIWYG for dummies Doug D 2009-06-03T18:24:10Z 2009-06-03T18:24:10Z Clarification: Ektron offers several licensing models, some of which are for unlimited users. Additionally, membership users (authenticated visitors to your site) are different than cms users (typically employees of your company). Membership users are always unlimited. http://stackoverflow.com/questions/458868/experiences-with-ektron/467474#467474 Comment by Doug D on Experiences with Ektron? Doug D 2009-06-03T18:20:28Z 2009-06-03T18:20:28Z Clarification: Ektron provides licenses per domain as well as server licenses, so it doesn't need to be tied to the CPU. http://stackoverflow.com/questions/935757/how-to-emit-bare-xml-for-a-webget-method-in-wcf/936013#936013 Comment by Doug D on How to emit bare XML for a [WebGet] method in WCF? Doug D 2009-06-01T20:47:12Z 2009-06-01T20:47:12Z Thanks! That works, but does have the downside of deserializing the XML and then re-serializing it. Not as efficient as I would like, but at least it eliminates the root tag. Thanks for the alternative.