User Craig Nicholson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T01:16:25Zhttp://stackoverflow.com/feeds/user/28305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/345937/using-windows-azure-service-bus-from-silverlight/366952#3669521Answer by Craig Nicholson for Using Windows Azure Service Bus From SilverlightCraig Nicholson2008-12-14T20:37:03Z2008-12-14T20:50:21Z<p>I've looked at the November 2008 CTP code and getting the EchoService client to work from Silverlight is highly unlikely due to the dependancy on the NetTcpRelayBinding and Silverlight's limited TCP support.</p>
<p>I suggest getting your Silverlight client to call a back-end service that you control and proxy the requests to the Azure platform. Not an ideal solution, but a workaround for now.</p>
http://stackoverflow.com/questions/218463/ability-to-set-the-font-to-italics-in-visual-studio0Ability to set the font to italics in Visual StudioCraig Nicholson2008-10-20T13:39:42Z2008-11-24T15:24:19Z
<p>Does anyone know how to set the code text editor font style to italics in Visual Studio 2005 or 2008? Note, I'm talking about the code editor not in code itself.</p>
http://stackoverflow.com/questions/291253/does-silverlight-support-remoting/291730#2917303Answer by Craig Nicholson for does silverlight support remoting?Craig Nicholson2008-11-14T23:04:25Z2008-11-14T23:04:25Z<p>Due to the security requirements of being sandboxed in the host web browser, binary serialization is not supported. So no, .NET Remoting is not supported. Thank goodness we have a fairly sufficient WCF implementation.</p>
http://stackoverflow.com/questions/1329/what-is-a-better-file-copy-alternative-than-the-windows-default/266099#2660991Answer by Craig Nicholson for What is a better file copy alternative than the Windows default?Craig Nicholson2008-11-05T18:14:04Z2008-11-05T18:21:05Z<p>I've tried out <a href="http://www.copyhandler.com/" rel="nofollow">Copy Handler</a> and it works very well. It has some cool features where you can control buffering depending on the type of media and with file queuing support so you can setup your copy and move operations and forget about them and minimize disk fragmentation at the same time. So it won't copy multiple file simultaneously from a single CD or DVD as it would make the drive seek too much.</p>
<p>Best of all its Open Source.</p>
http://stackoverflow.com/questions/259562/switching-between-visible-applications-in-windows-ce-5-lang-c/259582#2595821Answer by Craig Nicholson for Switching between visible applications in Windows CE 5, Lang: C++Craig Nicholson2008-11-03T18:58:48Z2008-11-03T18:58:48Z<p>Firstly you will need to locate the window handle (hwnd) using the <a href="http://msdn.microsoft.com/en-us/library/aa453070.aspx" rel="nofollow">FindWindow</a> API function or some alternate means. Next use the <a href="http://msdn.microsoft.com/en-us/library/aa453731.aspx" rel="nofollow">ShowWindow</a> API function specifying either <strong>SW_HIDE</strong> or <strong>SW_SHOW</strong> to hide or show the window respectively. Note that Windows CE 5.0 does not technically support the Win32 window states like SW_MINIMIZE, SW_MAXIMIZE, etc.</p>
<p>A simple example would be:</p>
<pre><code>HWND hWnd = ::FindWindow( _T("Notepad"), NULL);
::ShowWindow(hWnd, SW_HIDE);
</code></pre>
http://stackoverflow.com/questions/252974/use-silverlight-isolated-storage-to-keep-authentication-token/256903#2569031Answer by Craig Nicholson for Use Silverlight Isolated Storage To Keep Authentication Token?Craig Nicholson2008-11-02T14:04:39Z2008-11-02T14:04:39Z<p>Other than the advantage of sharing the token across multiple browser instances, which I personally haven't ever seen the need for, I think I'll stick to using cookies for now. Why? Because they are better supported by intermediaries like proxy servers and HTTP accelerators. In general I adopt a "use the standard" rather than a "roll your own" approach - it results in less code to maintain and more familiar code for new developers.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/252122#25212210Answer by Craig Nicholson for SQL Server Management Studio 2008 IntellisenseCraig Nicholson2008-10-30T23:20:24Z2008-10-30T23:27:16Z<p>If you'd like to see the feature added, vote for the request on <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=341872" rel="nofollow">Connect</a>. Here is feedback from the team regarding why it was dropped:</p>
<blockquote>
<p>Let me share product team’s
information about the version support
of IntelliSense. This was a truly
by-design from the beginning of
IntelliSense project and it was a part
of business decision. Implementation
of IntelliSense requires a full
fidelity of engine parser
reconstruction in client side using
managed code base. Support of multiple
server versions means design and
implementation of multiple versions of
parsers and related infra in parallel.
This multiplies time and cost to
develop, test and support. At the same
time, the core module is an important
product base that enables not only
IntelliSense feature but also other
products including Upgrade Advisor to
analyze scripts; in the long term, it
is potentially any feature that needs
syntactic and semantic understanding
of Transact-SQL language.</p>
<p>In CTP5 and CTP6, IntelliSense had a
known issue that it did not correctly
check the server version so CTP users
could connect any version of SQL
Server with IntelliSense. While some
users didn't notice it, IntelliSense
was not correctly working as desired.
The impact was that IntelliSense had a
high potential to guide users to
script incorrect Transact-SQL or to
false-negatively indicate that a
script has errors while it is
perfectly valid in those versions.</p>
<p>Considering the number one goal of
IntelliSense is to increase
productivity of authoring complex
query or stored procedure (or simply
Transact-SQL scripts), this issue was
regarded as a factor to <em>decrease
productivity</em> which is a huge negative
impact from a new feature.</p>
<p>In RC0, this known issue was corrected
that IntelliSense checks the server
version and provides its feature on
supported version which is SQL Server
2008.</p>
<p>As a version one, IntelliSense is
enabled on a subset of Transact-SQL
language. It is because the large
scope of work to implement lexer,
parser, binder and script document
object model in managed code for
entire language scope. The product
team is moving forward with a focus on
expanding the language support scope.</p>
<p>I hope this information provides the
background information at minimum why
the target version was selected on SQL
Server 2008 only.</p>
</blockquote>
<p>Anyone using the RTM build should consider the CU1 (Cumulative Update 1) build available <a href="http://support.microsoft.com/kb/956717" rel="nofollow">here</a> as quite a few IntelliSense bugs were addressed.</p>
http://stackoverflow.com/questions/243379/what-would-you-consider-a-minimum-developer-class-pc/243432#2434320Answer by Craig Nicholson for What would you consider a minimum developer class PC?Craig Nicholson2008-10-28T13:59:33Z2008-10-28T13:59:33Z<p>It depends on the development tools being used and the corporate policies. Personally as a person who dogfoods a lot of beta products I would go for a machine along the following lines:</p>
<ul>
<li>Quad core Intel based machine</li>
<li>At least 4GB of RAM but preferably as much as 16GB</li>
<li>Fast desktop class SATA II disks and many of them. The more spindles the better performance.</li>
<li>Windows Server 2008 Hyper-V or free Hyper-V Server base OS (x64 only). Allows for multiple virtualised operating systems to test beta products without having to re-install the business OS often. Also great for testing deployment scenarios.</li>
<li>Virtual business OS like Windows Vista or Windows XP (x64)</li>
<li>At least a dual 19" LCD screen setup with a decent video card to drive both display. No need for fancy gaming graphics. Widescreen preferred for extra screen real estate.</li>
</ul>
<p>I wouldn't cut corners on the amount of memory and the overall disk performance.
- </p>
http://stackoverflow.com/questions/233065/is-the-silverlight-2-bible-worth-purchasing/236374#2363746Answer by Craig Nicholson for Is the Silverlight 2 Bible worth purchasing?Craig Nicholson2008-10-25T13:03:38Z2008-10-27T23:02:45Z<p>I'm rather waiting for <a href="http://rads.stackoverflow.com/amzn/click/0596516126" rel="nofollow">Programming Silverlight 2</a> by Jesse Liberty and Tim Heuer.</p>
<p><strong>Update</strong>: See Jesse Liberty's post <a href="http://feeds.feedburner.com/~r/JesseLiberty-SilverlightGeek/~3/429734964/so-much-technology-so-little-time.aspx" rel="nofollow">here</a>, at the bottom he recommends some Silverlight 2 books.</p>
http://stackoverflow.com/questions/228723/silverlight-logging-framework-and-or-best-practices/241656#2416561Answer by Craig Nicholson for Silverlight Logging framework and/or best practicesCraig Nicholson2008-10-27T22:57:12Z2008-10-27T22:57:12Z<p>I am about to delve into something similar myself for a product we've written. I'm considering using PostSharp for Silverlight to add client-side logging as an aspect.</p>
<p>I have used the NLog project with great success before under the full .NET Framework and the Compact Framework so I'll most likely take the existing framework code and add some logging targets:</p>
<ul>
<li>A standard System.Diagnostics target to enable capturing using DebugView, etc.</li>
<li>An asynchronous Web service target similar to the one in NLog.</li>
<li>An isolated storage target with deferred transfer to server semantics.</li>
</ul>
<p>I've briefly looked at Clog and it seems to suffer from one major flaw - it can't log a connection failure. So assuming your Web server is online all the time, yes it will work, but when problems occur upstream or on the server itself, the logging data is all lost and might even crash your application.</p>
http://stackoverflow.com/questions/232316/silverlight-image-load-url-dynamically/236365#2363651Answer by Craig Nicholson for Silverlight image: load URL dynamically?Craig Nicholson2008-10-25T12:57:40Z2008-10-25T12:57:40Z<p>From what I gather you aren't trying to change the image itself dynamically, but rather to correctly determine the location of the image at runtime.</p>
<p>I believe simply prefixing the image relative URL with "../" should get you to the root of your application, not necessarily the site as the application might not be hosted in the root of a site.</p>
<p>Remember that all relative URLs specified in a XAP file are relative to the location of the XAP file itself. So if your XAP file is located as follows:</p>
<blockquote>
<p><a href="http://somesite.foo/app1/somethingelse/clientbin/MyFoo.xap" rel="nofollow">http://somesite.foo/app1/somethingelse/clientbin/MyFoo.xap</a></p>
</blockquote>
<p>And you where trying to link the following image:</p>
<blockquote>
<p><a href="http://somesite.foo/app1/somethingelse/images/a/boo.png" rel="nofollow">http://somesite.foo/app1/somethingelse/images/a/boo.png</a></p>
</blockquote>
<p>Then you would set your Image URL to:</p>
<blockquote>
<p>../images/a/boo.png</p>
</blockquote>
<p>I hope that helps.</p>
http://stackoverflow.com/questions/230992/how-to-persist-a-calculated-geometry-or-geography-column0How to persist a calculated GEOMETRY or GEOGRAPHY columnCraig Nicholson2008-10-23T19:00:30Z2008-10-23T22:18:13Z
<p>I'm trying to create a table under SQL Server 2008 containing a <strong>GEOMETRY</strong> column and a calculated variation thereof.</p>
<p>Considering the following table where the calculated column returns a buffered geometry:</p>
<pre><code>CREATE TABLE [dbo].[Test] (
[Geometry] GEOMETRY NOT NULL,
[Buffer] FLOAT NOT NULL,
[BufferedGeometry] AS ([Geometry].STBuffer([Buffer])) PERSISTED
);
</code></pre>
<p>The problem with this is it results in the following error:</p>
<blockquote>
<p>Msg 4994, Level 16, State 1, Line 2
Computed column 'BufferedGeometry' in
table 'Test' cannot be persisted
because the column type, 'geometry',
is a non-byte-ordered CLR type.</p>
</blockquote>
<p>I have search BOL and the web and can't seem to find a solution to my problem. I really would like it to be persisted so I can index it effectively. I could set it in code, but then I have the possibility of inconsistent data as I require both values at some point in time.</p>
<p>Anyone played with this and know a solution or workaround?</p>
http://stackoverflow.com/questions/231125/should-i-index-a-bit-field-in-sql-server/231372#2313721Answer by Craig Nicholson for Should I index a bit field in SQL Server?Craig Nicholson2008-10-23T20:31:05Z2008-10-23T20:31:05Z<p>On its own, no as it results in very little selectivity. As part of a compound index. quite possibly but only after other equality columns.</p>
http://stackoverflow.com/questions/226760/silverlight-2-ui-pattern/230953#2309531Answer by Craig Nicholson for Silverlight 2 UI patternCraig Nicholson2008-10-23T18:49:02Z2008-10-23T18:49:02Z<p>You might want to look at <a href="http://www.lhotka.net/cslalight/" rel="nofollow">CSLA.NET for Silverlight</a>. I've heard good things about it but haven't gotten around to try it yet myself.</p>
<blockquote>
<p>CSLA .NET for Silverlight is a subset
of CSLA .NET targeted at the
Silverlight platform. CSLA .NET for
Silverlight offers nearly all the
benefits of CSLA .NET on Silverlight,
including data binding, validation,
business rules, authorization, n-level
undo and persistence.</p>
<p>The result is that CSLA .NET for
Silverlight enables the creation of a
rich object-oriented business layer
running on the Silverlight client,
that can transparently communicate
with CSLA .NET objects running on the
web and application servers.</p>
</blockquote>
http://stackoverflow.com/questions/229011/aynchronous-web-server-calls-in-silverlight-and-maximum-http-connections/230943#230943-2Answer by Craig Nicholson for Aynchronous web server calls in Silverlight and maximum HTTP connectionsCraig Nicholson2008-10-23T18:46:31Z2008-10-23T18:46:31Z<p>Firstly the Machine.config file would not be used as the Silverlight control is sandboxed with its own version of the CoreCLR.</p>
<p>I believe that the Silverlight control actually makes use of the underlying browser to make the asynchronous HTTP requests. This is most likely the case considering how the Silverlight control can't gain access to SOAP fault information as the SOAP specification requires that the server returns an HTTP 500 response code and the Silverlight control doesn't get that from the browser hosting the control.</p>
<p>This post <a href="http://www.wilcob.com/Wilco/News/http-requests-in-silverlight.aspx" rel="nofollow">here</a> serves to confirm this.</p>
<p>As to the limit of concurrent HTTP connections, I believe IE5 and later limit the number of connections to the same site based on HTTP protocol version - HTTP/1.0 it limits to 4 connections and HTTP/1.1 to 3 connections. Most of the time the web server will limit the number of connections to 2 per client, queueing or discarding the remainder.</p>
http://stackoverflow.com/questions/202699/what-is-the-best-way-to-clone-a-business-object-in-silverlight/216976#2169760Answer by Craig Nicholson for What is the best way to clone a business object in Silverlight?Craig Nicholson2008-10-19T21:10:15Z2008-10-19T21:10:15Z<p>I believe the standard cloning functionality was left out to keep it simple and lightweight. I believe you could use either JSON or XML serialization to achieve the same thing though. Not sure about the performance costs though. </p>
http://stackoverflow.com/questions/208908/silverlight-how-to-set-default-style-in-generic-xaml-for-child-class/216974#2169741Answer by Craig Nicholson for Silverlight: How to set default style in generic.xaml for child class?Craig Nicholson2008-10-19T21:08:40Z2008-10-19T21:08:40Z<p>I don't believe inherited styling is supported as it is in CSS. You can only create a style for a specific target type. Then on the instance you need to nominate the style.</p>
<p>However you are using the generic.xaml file (now under themes/generic.xaml) which applies the default style for a specific target type. So if you need to target contained class B you would need to either define the style of B or include it under A through public properties.</p>
http://stackoverflow.com/questions/188160/how-do-you-handle-validation-in-silverlight/216967#2169670Answer by Craig Nicholson for How Do You Handle Validation In Silverlight?Craig Nicholson2008-10-19T21:05:10Z2008-10-19T21:05:10Z<p>You might want to look at <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>, it makes attributing your client-side data model very simple.</p>
http://stackoverflow.com/questions/216812/embed-a-website-page-into-silverlight/216962#2169622Answer by Craig Nicholson for Embed a website/page into SilverlightCraig Nicholson2008-10-19T21:00:01Z2008-10-19T21:00:01Z<p>Yes, it can be done and its quite easy to do. I plan on blogging about my HtmlBrowser control and posting the source. The basics are to make sure the Silverlight control is hosted with the isWindowless parameter enabled and then you can at runtime through the HtmlPage class create an IFRAME element and set the src attribute to the HTML page location. The fun part is getting the sizing right, but its not too difficult.</p>
<p>Follow my blog <a href="http://craign.net/" rel="nofollow">http://craign.net/</a> over the next couple of days as I'll post my control. </p>
http://stackoverflow.com/questions/212173/silverlight-2-development-using-just-visual-studio/213175#2131750Answer by Craig Nicholson for Silverlight 2 development using just Visual Studio?Craig Nicholson2008-10-17T18:00:34Z2008-10-17T18:00:34Z<p>And now you can even use Eclipse. :)</p>
http://stackoverflow.com/questions/203466/good-resource-for-learning-silverlight-2-development/213170#2131700Answer by Craig Nicholson for Good resource for learning Silverlight 2 Development?Craig Nicholson2008-10-17T17:59:13Z2008-10-17T17:59:13Z<p>I'd recommend the <a href="http://www.sparklingclient.com/" rel="nofollow">Sparkling Client podcast</a> and it even features the infamous <a href="http://silverlight.net/blogs/jesseliberty/" rel="nofollow">Jesse Liberty</a>. In addition I'd recommend the blogs of <a href="http://blogs.msdn.com/brada/" rel="nofollow">Brad Abrams</a>, <a href="http://silverlight.net/blogs/msnow/" rel="nofollow">Mike Snow</a>, <a href="http://community.irritatedvowel.com/blogs/pete_browns_blog/" rel="nofollow">Pete Brown</a>, <a href="http://michaelsync.net/" rel="nofollow">Michael Sync</a> and <a href="http://blogs.msdn.com/scmorris/" rel="nofollow">Scott Morrison</a>.</p>
<p>Our team has just completed development on a rather intense Silverlight 2 application and I'm planning on sharing some of our experiences, lessons learnt and guidance on my blog over <a href="http://craign.net/" rel="nofollow">here</a>.</p>
<p>I hope this was useful.</p>
http://stackoverflow.com/questions/208218/automatically-page-between-silverlight-controls/213140#2131401Answer by Craig Nicholson for Automatically page between silverlight controlsCraig Nicholson2008-10-17T17:49:17Z2008-10-17T17:49:17Z<p>I'd go with a single Silverlight 2 application and do all the paging inside the control. </p>
<p>You can see an example of how to switch between Silverlight controls on my old blog post over <a href="http://craign.net/2008/03/11/how-to-switch-silverlight-usercontrols/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/212532/what-is-the-best-reference-for-architecting-silverlight-applications/213060#2130601Answer by Craig Nicholson for What is the best reference for architecting Silverlight applications?Craig Nicholson2008-10-17T17:29:10Z2008-10-17T17:29:10Z<p>I personally haven't seen any best practice guidance out there discussing this however I could make a few recommendations myself but it depends on the type of application being developed.</p>
<p>The typical usage so far of Silverlight has been for rich media and from that point of view architecture of the web site is hardly relevant.</p>
<p>However for Line of Business applications Silverlight 2 exposes some interesting solutions. We've just completed a rather large product development built on Silverlight 2 as the client application, calling a WCF 3.5 SOAP service, hosted in an ASP.NET 3.5 web application using the standard Membership Provider and WCF security plumbing, etc. and built on top of SQL Server 2005.</p>
<p>In terms of improving the architecture we plan to do the following:</p>
<ul>
<li>Replace SOAP with REST.</li>
<li>Use PostSharp to introduce server-side data caching.</li>
<li>Use PostSharp inside the Silverlight client application to intercept data service calls for client-side caching.</li>
</ul>
<p>I hope this helps. Feel free to ping me if you would like to discuss anything further. You can contact me on my blog (<a href="http://craign.net/" rel="nofollow">http://craign.net/</a>).</p>
http://stackoverflow.com/questions/879111/t-sql-subquery-maxdate-and-joins/879139#879139Comment by Craig Nicholson on T-SQL Subquery Max(Date) and JoinsCraig Nicholson2009-05-18T20:45:55Z2009-05-18T20:45:55ZDepending on the number of rows in MyParts, this is a subquery that will have to be evaluated once per row returned from the MyParts table. This could get very costly as its comparable to using a cursor.http://stackoverflow.com/questions/145304/when-to-use-thread-pool-in-c/208621#208621Comment by Craig Nicholson on When to use thread pool in C#?Craig Nicholson2009-04-28T20:16:04Z2009-04-28T20:16:04ZSome problems with this approach:
- Calls to DequeueSafe() will wait until an item is EnqueuedSafe(). Consider using one of the Monitor.Wait() overloads specifying a timeout.
- Locking on this is not according to best practices, rather create a readonly object field.
- Even though Monitor.Pulse() is lightweight, calling it when the queue contains only 1 item would be more efficient.
- DeEnqueueUnblock() should preferrably check the queue.Count > 0. (needed if Monitor.PulseAll or wait timeouts are used)http://stackoverflow.com/questions/267119/fetching-images-from-two-different-serversComment by Craig Nicholson on Fetching images from two different serversCraig Nicholson2008-11-15T10:23:13Z2008-11-15T10:23:13ZWhat exactly do you mean by "bring two images"? Do you mean download them into the client application to work with them, put them on the screen, or something else?http://stackoverflow.com/questions/287447/silverlight-2-0-saving-to-a-text-file/287690#287690Comment by Craig Nicholson on Silverlight 2.0 - Saving to a text fileCraig Nicholson2008-11-14T23:06:32Z2008-11-14T23:06:32ZYou should rather add your comment to the answer from timheuer.http://stackoverflow.com/questions/279469/empty-httpcontext-when-calling-wcf-webserviceComment by Craig Nicholson on Empty HttpContext when calling WCF webserviceCraig Nicholson2008-11-11T23:15:46Z2008-11-11T23:15:46ZIf I understand your previous clarification correctly, the Silverlight client is not calling the WCF Web Service directly. You mention that you are calling the Web Service from an ASP.NET post back, is this correct?http://stackoverflow.com/questions/243379/what-would-you-consider-a-minimum-developer-class-pc/243432#243432Comment by Craig Nicholson on What would you consider a minimum developer class PC?Craig Nicholson2008-10-28T17:50:41Z2008-10-28T17:50:41ZAs I've specified, that is my minimum developer PC. :)http://stackoverflow.com/questions/230992/how-to-persist-a-calculated-geometry-or-geography-column/231758#231758Comment by Craig Nicholson on How to persist a calculated GEOMETRY or GEOGRAPHY columnCraig Nicholson2008-10-24T15:56:31Z2008-10-24T15:56:31ZPersonally I don't like using triggers in databases, I haven't needed to use one now for many years and I hopefully won't need to resort to one.http://stackoverflow.com/questions/216812/embed-a-website-page-into-silverlight/216962#216962Comment by Craig Nicholson on Embed a website/page into SilverlightCraig Nicholson2008-10-23T18:52:13Z2008-10-23T18:52:13ZNoted. Busy with the code sample.http://stackoverflow.com/questions/203466/good-resource-for-learning-silverlight-2-development/213170#213170Comment by Craig Nicholson on Good resource for learning Silverlight 2 Development?Craig Nicholson2008-10-23T18:51:37Z2008-10-23T18:51:37ZToo true, I can't believe I didn't list him.