User George Tsiokos - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:43:42Z http://stackoverflow.com/feeds/user/5869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/804495/mapreduce-on-azure/1012866#1012866 3 Answer by George Tsiokos for MapReduce on Azure George Tsiokos 2009-06-18T14:12:49Z 2009-06-18T14:12:49Z <p>Microsoft Research has <a href="http://research.microsoft.com/en-us/projects/DryadLINQ/" rel="nofollow">DryadLINQ</a> which is a powerful LINQ expression distribution engine. I hope they port this to Azure!</p> <blockquote> <p>Automatic parallelization: from sequential declarative code the DryadLINQ compiler generates highly parallel query plans spanning large computer clusters. For exploiting multi-core parallelism on each machine DryadLINQ relies on the <a href="http://msdn.microsoft.com/en-us/concurrency/" rel="nofollow">PLINQ</a> parallelization framework.</p> </blockquote> <p>It has an implementation of MapReduce like this:</p> <pre><code>public static IQueryable&lt;Rs&gt; MapReduce&lt;Ts, Ms, K, Rs&gt; ( this IQueryable&lt;Ts&gt; source, Expression&lt;Func&lt;Ts, IEnumerable&lt;Ms&gt;&gt;&gt; mapper, Expression&lt;Func&lt;Ms, K&gt;&gt; keySelector, Expression&lt;Func&lt;IGrouping&lt;K, Ms&gt;, IEnumerable&lt;Rs&gt;&gt;&gt; reducer) { IQueryable&lt;Ms&gt; mapped = source.SelectMany (mapper); IQueryable&lt;IGrouping&lt;K, Ms&gt;&gt; groups = mapped.GroupBy (keySelector); return groups.SelectMany (reducer); } </code></pre> <p>Amazingly simple implementation! With the power of DryadLINQ, I don't see why you need to be constrained to MapReduce - you can simply create the exact LINQ query that returns the information you're looking for.</p> <p>NOTE: <em>this is my approximation of their implementation - the PDF does not contain the exact method signature or implementation</em></p> http://stackoverflow.com/questions/727313/badimageformatexception-encountered-with-wcfsvchost-and-iis-wcf-host 0 BadImageFormatException encountered with WcfSvcHost and IIS WCF host George Tsiokos 2009-04-07T19:47:15Z 2009-06-03T00:37:23Z <p>Creating a WCF Service Library in Visual Studio 2008 on Vista x64 is troublesome when referencing an x86 DLL. A service that calls a 32-bit DLL is required to have a platform target of x86 to run on a 64-bit OS. When you do this, the WcfSvcHost throws a BadImageFormatException when you attempt to debug the service. There is a <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=349510" rel="nofollow">bug report</a> on MS connect. The workaround I used was to <a href="https://connect.microsoft.com/VisualStudio/feedback/Workaround.aspx?FeedbackID=349510" rel="nofollow">coreflag WcfSvcHost as 32-bit</a>.</p> <p><strong>Manifest Problem</strong></p> <p>The main issue I've run in to is this third-party native 32-bit DLL fails to load using certain WCF hosts. I receive the following error when <strong>a service operation is invoked</strong> that uses the third-party DLL:</p> <blockquote> <p>System.TypeInitializationException: The type initializer for '' threw an exception.</p> <p>.ModuleLoadExceptionHandlerException: A nested exception occurred after the primary exception that caused the C++ module to fail to load.</p> <p>System.BadImageFormatException: The module was expected to contain an assembly manifest. (Exception from HRESULT: 0x80131018)</p> </blockquote> <p>NestedException:</p> <blockquote> <p>The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))</p> </blockquote> <p>This exception is not raised when WcfSvcHost starts, it's raised when the a service operation is invoked that references the 32-bit DLL. What's very interesting, hosting this same service with the same app.config on a console app has no exceptions and works perfectly:</p> <pre><code>using (ServiceHost host = new ServiceHost (typeof (MsgBrokerService))) { host.Open (); Console.WriteLine ("running"); Console.ReadLine (); </code></pre> <p>This exception occurs right after:</p> <blockquote> <p>'WcfSvcHost.exe' (Managed): Loaded 'C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.3053_ none_d08d7bba442a9b36\msvcm80.dll'</p> </blockquote> <p>Again, the console app does not have an exception and loads the same DLL:</p> <blockquote> <p>'ConsoleApp.vshost.exe' (Managed): Loaded 'C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.3053_ none_d08d7bba442a9b36\msvcm80.dll'</p> </blockquote> <p><strong>See answer</strong> <a href="http://stackoverflow.com/questions/727313/wcf-problems-with-hosting-on-wcfsvchost-and-iis/942578#942578">from Microsoft Product Support</a>.</p> <p>Update #1: Both the console application and the WcfSvcHost.exe host process runs under the same session and logged-in user (me). I've copied WcfSvcHost.exe to the directory of the service, manually launched and experienced the same result. I've also checked the Windows Event Log for additional information and used <em>sxstrace</em>, but nothing was logged.</p> <p>Running Process Explorer, I've verified the following are the same between the two processes:</p> <ul> <li>Image: 32-bit</li> <li>Current Directory</li> <li>User/SID</li> <li>Session</li> <li>Security (groups denied, privileges disabled)</li> </ul> <p>Running Process Monitor, and <a href="http://blogs.msdn.com/vijaysk/archive/2009/04/02/getting-better-stack-traces-in-process-monitor-process-explorer.aspx" rel="nofollow">configuring symbols</a>, I see WcfSvcHost looks for the following registry and files, while the console host does not. <em>Process Monitor logs a lot of data and I'm not sure what I'm looking for :(</em>.</p> <blockquote> <p>HKLM\SOFTWARE\Microsoft\Fusion\PublisherPolicy\Default\policy.8.0.msvcm80__b03f5f7f11d50a3a C:\Windows\assembly\GAC_32\msvcm80\8.0.50727.3053__b03f5f7f11d50a3a C:\Windows\assembly\GAC_MSIL\msvcm80\8.0.50727.3053__b03f5f7f11d50a3a C:\Windows\assembly\GAC\msvcm80\8.0.50727.3053__b03f5f7f11d50a3a</p> </blockquote> <p>Update #2: T http://stackoverflow.com/questions/727313/badimageformatexception-encountered-with-wcfsvchost-and-iis-wcf-host/942578#942578 1 Answer by George Tsiokos for BadImageFormatException encountered with WcfSvcHost and IIS WCF host George Tsiokos 2009-06-03T00:34:09Z 2009-06-03T00:34:09Z <p>Microsoft Product Support has resolved this question: It's by design. The unmanaged code is not loaded in the default AppDomain when using WcfSvcHost or the IIS WCF host.</p> <blockquote> <p>A pure image will use a CLR version of the C run-time library. However, the CRT is not verifiable, so you cannot use the CRT when compiling with /clr:safe. For more information, see C Run-Time Libraries.</p> </blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/k8d11d4s.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/k8d11d4s.aspx</a></p> http://stackoverflow.com/questions/299198/implement-c-generic-timeout/869257#869257 2 Answer by George Tsiokos for Implement C# Generic Timeout George Tsiokos 2009-05-15T15:11:33Z 2009-05-15T19:16:10Z <p>Some minor changes to Pop Catalin's great answer:</p> <ul> <li>Func instead of Action</li> <li>Throw exception on bad timeout value</li> <li>Calling EndInvoke in case of timeout</li> </ul> <p>Overloads have been added to support signaling worker to cancel execution:</p> <pre><code>public static T Invoke&lt;T&gt; (Func&lt;CancelEventArgs, T&gt; function, TimeSpan timeout) { if (timeout.TotalMilliseconds &lt;= 0) throw new ArgumentOutOfRangeException ("timeout"); CancelEventArgs args = new CancelEventArgs (false); IAsyncResult functionResult = function.BeginInvoke (args, null, null); WaitHandle waitHandle = functionResult.AsyncWaitHandle; if (!waitHandle.WaitOne (timeout)) { args.Cancel = true; // flag to worker that it should cancel! /* •————————————————————————————————————————————————————————————————————————• | IMPORTANT: Always call EndInvoke to complete your asynchronous call. | | http://msdn.microsoft.com/en-us/library/2e08f6yc(VS.80).aspx | | (even though we arn't interested in the result) | •————————————————————————————————————————————————————————————————————————• */ ThreadPool.UnsafeRegisterWaitForSingleObject (waitHandle, (state, timedOut) =&gt; function.EndInvoke (functionResult), null, -1, true); throw new TimeoutException (); } else return function.EndInvoke (functionResult); } public static T Invoke&lt;T&gt; (Func&lt;T&gt; function, TimeSpan timeout) { return Invoke (args =&gt; function (), timeout); // ignore CancelEventArgs } public static void Invoke (Action&lt;CancelEventArgs&gt; action, TimeSpan timeout) { Invoke&lt;int&gt; (args =&gt; { // pass a function that returns 0 &amp; ignore result action (args); return 0; }, timeout); } public static void TryInvoke (Action action, TimeSpan timeout) { Invoke (args =&gt; action (), timeout); // ignore CancelEventArgs } </code></pre> http://stackoverflow.com/questions/164295/how-do-you-specify-a-message-label-when-using-wcf-and-netmsmqbinding 1 How do you specify a message label when using WCF and NetMsmqBinding? George Tsiokos 2008-10-02T20:02:59Z 2009-03-27T11:00:50Z <p>I would like to set the MSMQ message label using the NetMsmqBinding. I understand <a href="http://blogs.msdn.com/skaufman/archive/2007/12/17/msmq-label-property-and-wcf.aspx" rel="nofollow">it’s easy when using the MsmqIntegrationBinding</a>, but I would like to continue to use the NetMsmqBinding (<strong>even call private methods</strong>, if possible)</p> http://stackoverflow.com/questions/559189/mvc-rc-validation-is-this-right/636568#636568 3 Answer by George Tsiokos for MVC RC Validation: Is this right? George Tsiokos 2009-03-11T22:04:30Z 2009-03-11T22:04:30Z <p>Call this extension method:</p> <pre><code> public static void AddModelError (this ModelStateDictionary modelState, string key, string errorMessage, string attemptedValue) { modelState.AddModelError (key, errorMessage); modelState.SetModelValue (key, new ValueProviderResult (attemptedValue, attemptedValue, null)); } </code></pre> <p>From: <a href="http://www.crankingoutcode.com/2009/02/01/IssuesWithAddModelErrorSetModelValueWithMVCRC1.aspx" rel="nofollow">Issues with AddModelError() / SetModelValue with MVC RC1</a></p> http://stackoverflow.com/questions/183907/how-do-convert-unicode-escape-sequences-to-unicode-characters-in-a-net-string/462586#462586 0 Answer by George Tsiokos for How do convert unicode escape sequences to unicode characters in a .NET string George Tsiokos 2009-01-20T18:54:36Z 2009-01-20T18:54:36Z <p>Refactored a little:</p> <pre><code>Regex regex = new Regex (@"\\[uU]([0-9A-F]{4})", RegexOptions.IgnoreCase); string line = "..."; line = regex.Replace (line, match =&gt; ((char)int.Parse (match.Groups[1].Value, NumberStyles.HexNumber)).ToString ()); </code></pre> http://stackoverflow.com/questions/351793/parsing-a-users-query/436835#436835 0 Answer by George Tsiokos for Parsing a User's Query George Tsiokos 2009-01-12T20:12:45Z 2009-01-12T20:12:45Z <p>Use <a href="http://www.microsoft.com/soa/products/oslo.aspx" rel="nofollow">Oslo</a>, it's designed specifically for this...</p> http://stackoverflow.com/questions/148084/how-to-deploy-an-asp-net-application-with-zero-downtime/198957#198957 15 Answer by George Tsiokos for How to deploy an ASP.NET Application with zero downtime George Tsiokos 2008-10-13T20:40:36Z 2008-10-23T13:44:58Z <p>The <a href="http://blogs.iis.net/msdeploy/archive/2008/05/13/web-deployment-tool-beta-1-go-live-just-released.aspx" rel="nofollow">Microsoft Web Deployment Tool</a> supports this to some degree:</p> <blockquote> <p>Enables Windows Transactional File System (TxF) support. When TxF support is enabled, file operations are atomic; that is, they either succeed or fail completely. This ensures data integrity and prevents data or files from existing in a "half-way" or corrupted state. In MS Deploy, TxF is disabled by default.</p> </blockquote> <p>It seems the transaction is for the entire sync. Also, TxF is a feature of Windows Server 2008, so this transaction feature will not work with earlier versions.</p> <p>I believe it's possible to modify your script for 0-downtime using folders as versions and the IIS metabase:</p> <ul> <li>for an existing path/url: <ul> <li><strong>path</strong>: \web\app\v2.0\</li> <li><strong>url</strong>: <a href="http://app" rel="nofollow">http://app</a></li> </ul></li> <li>Copy new (or modified) website to server under <ul> <li>\web\app\v2.1\</li> </ul></li> <li>Modify IIS metabase to change the website path <ul> <li><strong>from</strong> \web\app\2.0\</li> <li><strong>to</strong> \web\app\v2.1\</li> </ul></li> </ul> <p>This method offers the following benefits:</p> <ul> <li>In the event new version has a problem, you can easily rollback to v2.0</li> <li>To deploy to multiple physical or virtual servers, you could use your script for file deployment. Once all servers have the new version, you can simultaneously change all servers' metabases using the Microsoft Web Deployment Tool.</li> </ul> http://stackoverflow.com/questions/203468/scalable-reusable-authorization-model/206178#206178 2 Answer by George Tsiokos for Scalable/Reusable Authorization Model George Tsiokos 2008-10-15T20:01:15Z 2008-10-20T20:32:12Z <p>Moving from the traditional group, role, or operation-level permission, there is a push to "claims-based" authorization, like what was delivered with WCF.</p> <p><a href="https://connect.microsoft.com/Downloads/DownloadDetails.aspx?SiteID=642&amp;DownloadID=12901" rel="nofollow">Zermatt</a> is the codename for the Microsoft class-library that will help developers build claims-based applications on the server and client. Active Directory will become one of the STS an application would be able to authorize against concurrently with your own as well as other industry-standard servers...</p> http://stackoverflow.com/questions/84418/how-do-you-override-the-string-representation-the-html-helper-methods-use-for-a-m 3 How do you override the string representation the HTML helper methods use for a model’s properties? George Tsiokos 2008-09-17T15:23:23Z 2008-09-18T00:23:31Z <p>The html helper methods check the ViewDataDictionary for a value. The value can either be in the dictionary or in the Model, as a property. To extract the value, an internal sealed class named the ViewDataEvaluator uses PropertyDescriptor to get the value. Then, Convert.ToString() is called to convert the object returned to a string.</p> <h3>Desired code in Controller action</h3> <p>The controller action should only populate the Model, not format it (formatting the model is global).</p> <h3>Desired code in View</h3> <p>The view can render a HTML textbox and extract the string representation of the property with this line of code:</p> <pre> &lt;%=Html.TextBox(“Date”) %&gt; &lt;%=Html.TextBox(“Time”) %&gt; &lt;%=Html.TextBox(“UnitPrice”) %&gt; </pre> <h3>Binding Model's Property to HtmlHelper.TextBox()</h3> <p>For the textbox’s value, the UnitPrice property’s value from the model instance is converted to a string. I need to override this behavior with my own conversion to a string, which is per property – not per type. For example, I need a different string representation of a <strong>decimal</strong> for UnitPrice and another string representation of a <strong>decimal</strong> for UnitQuantity.</p> <p>For example, I need to format the UnitPrice's decimal precision based on the market.</p> <pre> string decimalPlaces = ViewData.Model.Precision.ToString (); &lt;%=Html.TextBox(“UnitPrice”, ViewData.Model.TypeName.UnitPrice.ToString("N" + decimalPlaces)) %&gt; </pre> <h3>2-way databinding please</h3> <p>Just like the IModelBinder is the <em>Parse</em> for each property of the model, I need a <em>Format</em> for each property, kinda like Windows Forms <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.binding_events.aspx" rel="nofollow">binding</a>, but based on the model instead of the control. This would enable the model to round-trip and have proper formatting. I would prefer a design where I could override the default formatting. In addition, my model is in a separate assembly, so attributed properties specifying a formatter are not an option.</p> <p>Please note I need <strong>property specific</strong> formatting for a model, not <strong>type specific</strong> formatting.</p> http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql 8 How do you extend Linq to SQL? George Tsiokos 2008-09-15T13:41:40Z 2008-09-16T19:15:18Z <p>Last year, Scott Guthrie <a href="http://weblogs.asp.net/scottgu/archive/2007/07/31/linq-to-sql-debug-visualizer.aspx" rel="nofollow">stated</a> “You can actually override the raw SQL that LINQ to SQL uses if you want absolute control over the SQL executed”, but I can’t find documentation describing an extensibility method.</p> <p>I would like to modify the following LINQ to SQL query:</p> <pre>using (NorthwindContext northwind = new NorthwindContext ()) { var q = from row in northwind.Customers let orderCount = row.Orders.Count () select new { row.ContactName, orderCount }; }</pre> <p>Which results in the following TSQL:</p> <pre>SELECT [t0].[ContactName], ( SELECT COUNT(*) FROM [dbo].[Orders] AS [t1] WHERE [t1].[CustomerID] = [t0].[CustomerID] ) AS [orderCount] FROM [dbo].[Customers] AS [t0]</pre> <p>To:</p> <pre>using (NorthwindContext northwind = new NorthwindContext ()) { var q = from row in northwind.Customers.With ( TableHint.NoLock, TableHint.Index (0)) let orderCount = row.Orders.With ( TableHint.HoldLock).Count () select new { row.ContactName, orderCount }; }</pre> <p>Which <em>would</em> result in the following TSQL:</p> <pre>SELECT [t0].[ContactName], ( SELECT COUNT(*) FROM [dbo].[Orders] AS [t1] WITH (HOLDLOCK) WHERE [t1].[CustomerID] = [t0].[CustomerID] ) AS [orderCount] FROM [dbo].[Customers] AS [t0] WITH (NOLOCK, INDEX(0))</pre> <p>Using:</p> <pre>public static Table&lt;TEntity&gt; With&lt;TEntity&gt; ( this Table&lt;TEntity&gt; table, params TableHint[] args) where TEntity : class { //TODO: implement return table; } public static EntitySet&lt;TEntity&gt; With&lt;TEntity&gt; ( this EntitySet&lt;TEntity&gt; entitySet, params TableHint[] args) where TEntity : class { //TODO: implement return entitySet; }</pre> <p>And</p> <pre> public class TableHint { //TODO: implement public static TableHint NoLock; public static TableHint HoldLock; public static TableHint Index (int id) { return null; } public static TableHint Index (string name) { return null; } }</pre> <p>Using some type of LINQ to SQL extensibility, other than <a href="http://blogs.msdn.com/mattwar/archive/2008/05/04/mocks-nix-an-extensible-linq-to-sql-datacontext.aspx" rel="nofollow">this one</a>. Any ideas?</p> http://stackoverflow.com/questions/56659/custom-counter-creation-through-web-application/56807#56807 2 Answer by George Tsiokos for Custom Counter Creation Through Web Application George Tsiokos 2008-09-11T15:03:51Z 2008-09-11T15:03:51Z <p>Yes, it’s <em>not possible</em>. You can’t add privileges to the worker process without opening the server up to potential security / DOS problems in a production environment. An installer (like a MSI) usually runs with elevated permissions, and installs / uninstalls the performance counter categories and counters as well as other locked down objects.</p> <p>For example, <a href="http://wix.sourceforge.net/manual-wix2/perfmon.htm" rel="nofollow" title="Windows Installer XML (WiX) toolset - Performance Counter CustomActions">Windows Installer XML (WiX) has support for Performance Counters</a>...</p> http://stackoverflow.com/questions/727313/badimageformatexception-encountered-with-wcfsvchost-and-iis-wcf-host Comment by George Tsiokos on BadImageFormatException encountered with WcfSvcHost and IIS WCF host George Tsiokos 2009-04-21T14:01:54Z 2009-04-21T14:01:54Z True, but why does it work when the WCF service is hosted in a Console app, and breaks when hosted in IIS or WAS? http://stackoverflow.com/questions/727313/badimageformatexception-encountered-with-wcfsvchost-and-iis-wcf-host Comment by George Tsiokos on BadImageFormatException encountered with WcfSvcHost and IIS WCF host George Tsiokos 2009-04-20T16:52:53Z 2009-04-20T16:52:53Z StreamBase - details above http://stackoverflow.com/questions/148084/how-to-deploy-an-asp-net-application-with-zero-downtime/252381#252381 Comment by George Tsiokos on How to deploy an ASP.NET Application with zero downtime George Tsiokos 2008-11-04T18:25:22Z 2008-11-04T18:25:22Z You need to have session out of process given the question's statement. It has nothing to do with modifying the metabase. http://stackoverflow.com/questions/175579/what-are-named-pipes/175608#175608 Comment by George Tsiokos on What are named pipes? George Tsiokos 2008-10-06T18:51:06Z 2008-10-06T18:51:06Z Named pipes also work over a network http://stackoverflow.com/questions/164295/how-do-you-specify-a-message-label-when-using-wcf-and-netmsmqbinding/165426#165426 Comment by George Tsiokos on How do you specify a message label when using WCF and NetMsmqBinding? George Tsiokos 2008-10-03T13:53:43Z 2008-10-03T13:53:43Z Correct - in the sending application, I would like to add a string identifying the message for operations - this would be extremely useful when the receiving endpoint is not running and messages are being <i>queued</i>... http://stackoverflow.com/questions/84418/how-do-you-override-the-string-representation-the-html-helper-methods-use-for-a-m/84649#84649 Comment by George Tsiokos on How do you override the string representation the HTML helper methods use for a model’s properties? George Tsiokos 2008-09-18T00:28:33Z 2008-09-18T00:28:33Z Also, there are many cases where you need to specify a specific format/parse - for example, a yy-mm-dd will not parse correctly: you need to call DateTime.ParseExact(...) on Parse, and DateTime.ToString(...) on Format http://stackoverflow.com/questions/84418/how-do-you-override-the-string-representation-the-html-helper-methods-use-for-a-m/84649#84649 Comment by George Tsiokos on How do you override the string representation the HTML helper methods use for a model’s properties? George Tsiokos 2008-09-18T00:27:09Z 2008-09-18T00:27:09Z I'm going to call a static helper to pre-format the Model into ModelState on ever action that loads the model. As you say, this will work for now. http://stackoverflow.com/questions/62963/how-do-you-extend-linq-to-sql/64814#64814 Comment by George Tsiokos on How do you extend Linq to SQL? George Tsiokos 2008-09-15T19:37:25Z 2008-09-15T19:37:25Z Actually, I would like to <i>extend</i> Linq to SQL's IQueryProvider implementation...