User Korbin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:11:04Z http://stackoverflow.com/feeds/user/17902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777379/how-do-i-create-a-custom-button-in-blend-from-expression-blend 0 How do i create a custom button in blend from Expression Blend? Korbin 2009-11-22T00:56:40Z 2009-11-27T20:51:49Z <p>I have created an image in Expression Design that I'm trying to import into Blend to create a button. I'm trying to make the button scale with it's container (most likely a grid) when i resize it in Blend. Unfortunately, the documentation for both products isn't very helpful. The xaml in design looks like the following:</p> <pre><code>&lt;Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Name="Document" Width="61" Height="61" Clip="F1 M 0,0L 61,0L 61,61L 0,61L 0,0"&gt; &lt;Canvas x:Name="MinimizeButtonBase" Width="799.999" Height="600" Canvas.Left="0" Canvas.Top="0"&gt; &lt;Viewbox x:Name="Group" Width="61" Height="61" Canvas.Left="0" Canvas.Top="0"&gt; &lt;Canvas Width="61" Height="61"&gt; &lt;Path x:Name="Path" Width="61" Height="61" Canvas.Left="0" Canvas.Top="3.05176e-005" Stretch="Fill" StrokeLineJoin="Round" Stroke="#B0000000" Data="F1 M 5.5,0.500031L 55.5,0.500031C 58.2614,0.500031 60.5,2.73859 60.5,5.5L 60.5,55.5C 60.5,58.2614 58.2614,60.5 55.5,60.5L 5.5,60.5C 2.73859,60.5 0.5,58.2614 0.5,55.5L 0.5,5.5C 0.5,2.73859 2.73859,0.500031 5.5,0.500031 Z "&gt; &lt;Path.Fill&gt; &lt;LinearGradientBrush StartPoint="0.561118,0.955553" EndPoint="0.58334,-0.177781"&gt; &lt;LinearGradientBrush.GradientStops&gt; &lt;GradientStop Color="#B0000000" Offset="0"/&gt; &lt;GradientStop Color="#B0FFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush.GradientStops&gt; &lt;/LinearGradientBrush&gt; &lt;/Path.Fill&gt; &lt;/Path&gt; &lt;Path x:Name="Line" Width="49.2547" Height="5" Canvas.Left="5.23578" Canvas.Top="47" Stretch="Fill" StrokeThickness="5" StrokeLineJoin="Round" Stroke="#B0000000" Data="M 7.73578,49.5L 51.9904,49.5"/&gt; &lt;/Canvas&gt; &lt;/Viewbox&gt; &lt;/Canvas&gt; </code></pre> <p></p> <p>Does anyone know the steps to importing a simple 2 path image in design to making it a button in blend? When I add the following xaml to a resource file in blend, I'm unable to get the button to scale to it's container when resize it after turning it into a control.</p> http://stackoverflow.com/questions/783228/how-do-you-mock-the-caching-object-in-asp-net-mvc 1 How do you mock the caching object in asp.net mvc? Korbin 2009-04-23T19:39:34Z 2009-07-23T02:08:19Z <p>How would I mock the caching object on the ControllerContext object for my unit tests? I have tried creating a wrapper class like the following (since the cache object is a sealed class) with no luck.</p> <pre><code>var mockControllerContext = new Mock&lt;ControllerContext&gt;(); var mockhttpContext = new Mock&lt;HttpContextBase&gt;(); mockhttpContext.SetupGet(o =&gt; o.Cache).Returns(new CacheWrapper(mockControllerContext.Object.HttpContext.Cache)); mockControllerContext.SetupGet(o =&gt; o.HttpContext).Returns(mockhttpContext.Object); this.tennisMatchupController.ControllerContext = mockControllerContext.Object; </code></pre> http://stackoverflow.com/questions/890442/where-does-the-presentation-logic-go-for-the-view-model-viewmodel-pattern 0 Where does the presentation logic go for the View-Model-ViewModel pattern? Korbin 2009-05-20T21:50:07Z 2009-05-21T03:37:34Z <p>In the View-Model-ViewModel, actions are essentially executed by the viewmodel that is bound to the view. However, where would the "presentation logic" go since the code behind isn't used and the viewmodel has no reference or knowledge of the control that invoked it?</p> <p>For example, what if I wanted to animate another control when a button is clicked. Would this still go in the code behind? </p> http://stackoverflow.com/questions/205644/error-when-using-extension-methods-in-c 5 Error when using extension methods in C# Korbin 2008-10-15T17:29:07Z 2009-02-23T12:51:18Z <p>I came across an issue that makes me think there is bug in the 3.0 framework. When I try to use extension methods I get the following error: Missing compiler required member 'System.Runtime.CompilerServices.ExtensionAttribute..ctor'</p> <p>When using this simple code:</p> <pre><code> public static class StringUtils { static void TestExtension(this String targetString) { } } </code></pre> <p>The only way to make this compile error go away is to add the following code:</p> <pre><code>namespace System.Runtime.CompilerServices { public class ExtensionAttribute : Attribute { } } </code></pre> <p>It's been a few months since I have used extensions methods, but I'm pretty sure I didn't have to do this. Has anyone else come across this issue?</p> http://stackoverflow.com/questions/522303/how-do-i-reuse-complex-types-accross-different-services 2 How do I reuse complex types accross different services? Korbin 2009-02-06T21:41:19Z 2009-02-06T21:43:48Z <p>I have 2 separate java services that use a complex type that is a exactly the same but takes an email object as a parameter like:</p> <pre><code>class Email{ Description{get;} Address{get;} } </code></pre> <p>The services look something like this:</p> <p>emailBasketBallTeam(email); emailTennisTeam(email);</p> <p>Is there a way that I can specify a contract for the email object or somehow reuse the email object in different services despite them being in completely different namespaces? </p> http://stackoverflow.com/questions/463194/wcf-client-errors-when-consuming-java-services 2 WCF client errors when consuming Java services Korbin 2009-01-20T21:28:16Z 2009-01-21T08:21:29Z <p>I'm currently working on a project where I need to consume a Java webservice. If I connect to the service using old webservices (asmx) it works fine. However, If I try to do the same thing with a WCF client I get the following error:</p> <p>The content type text/xml; charset=utf-8 of the response message does not match the content type of the binding (application/soap+xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly.</p> <p>My is very simple and it looks like the following:</p> <pre><code>//classic web service OldSkoolService.HelloService serviceCall = new esb_wsdlsample.OldSkoolService.HelloService(); Console.WriteLine(serviceCall.SoapVersion); Console.WriteLine(serviceCall.sayHello("something")); HelloServiceClient prototypeClient = new HelloServiceClient(); var serviceChannel = prototypeClient.ChannelFactory; Console.WriteLine(serviceChannel.Endpoint.Binding.MessageVersion); Console.WriteLine(prototypeClient.sayHello("somethinge")); //&lt;-- Error occurs here </code></pre> <p>The the binding/endpoint config file is quite simple as well:</p> <pre><code>&lt;bindings&gt; &lt;customBinding&gt; &lt;binding name="Soap12Binding"&gt; &lt;textMessageEncoding messageVersion="Soap12"/&gt; &lt;httpTransport /&gt; &lt;/binding&gt; &lt;/customBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://10.10.6.51:7001/esb/HelloService" behaviorConfiguration="" binding="customBinding" bindingConfiguration="Soap12Binding" contract="Prototype.ESB.HelloService" name="HelloServicePort" /&gt; &lt;/client&gt; </code></pre> <p>As a side note I'm trying to use soap 1.2, because I need to be able to catch exceptions from the service.</p> http://stackoverflow.com/questions/253574/how-to-test-custom-model-binders-in-asp-net-mvc/254447#254447 4 Answer by Korbin for How to test custom Model Binders in ASP.NET MVC? Korbin 2008-10-31T18:27:13Z 2008-10-31T18:27:13Z <p>I did it this way: </p> <pre><code>var formElements = new NameValueCollection() { {"FirstName","Bubba"}, {"MiddleName", ""}, {"LastName", "Gump"} }; var fakeController = GetControllerContext(formElements); var valueProvider = new Mock&lt;IValueProvider&gt;(); var bindingContext = new ModelBindingContext(fakeController, valueProvider.Object, typeof(Guid), null, null, null, null); private static ControllerContext GetControllerContext(NameValueCollection form) { Mock&lt;HttpRequestBase&gt; mockRequest = new Mock&lt;HttpRequestBase&gt;(); mockRequest.Expect(r =&gt; r.Form).Returns(form); Mock&lt;HttpContextBase&gt; mockHttpContext = new Mock&lt;HttpContextBase&gt;(); mockHttpContext.Expect(c =&gt; c.Request).Returns(mockRequest.Object); return new ControllerContext(mockHttpContext.Object, new RouteData(), new Mock&lt;ControllerBase&gt;().Object); } </code></pre> <p>And then I just passed in the bindingContext variable to the BindModel method of the object that implements the IModelBinder interface.</p> http://stackoverflow.com/questions/251186/how-are-you-passing-more-than-one-object-to-a-view 0 How are you passing more than one object to a view? [closed] Korbin 2008-10-30T18:13:04Z 2008-10-30T18:35:23Z <p>The typical way to pass an object to a view is to pass its type through the viewpage object. Unfortunately, this only allows you to send one object to the view. E.g.:</p> <pre><code>public partial class Index : ViewPage&lt;Person&gt; { } </code></pre> <p>But what if you need to display other information in the view that's not relevant to the Person object? Do you typically create "view objects" that would extend the Person object and add the additional properties you need to display on the page?</p> <p><hr /></p> <p>Duplicate: <a href="http://stackoverflow.com/questions/238430/how-do-i-pass-multiple-objects-to-viewpage-in-aspnet-mvc">http://stackoverflow.com/questions/238430/how-do-i-pass-multiple-objects-to-viewpage-in-aspnet-mvc</a></p> http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/210288#210288 1 Answer by Korbin for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta? Korbin 2008-10-16T20:57:28Z 2008-10-16T20:57:28Z <p>I use Autofac as my DI container. A null container exception gets thrown when trying to dispose of the container objects.</p> http://stackoverflow.com/questions/209015/self-documenting-code/209046#209046 1 Answer by Korbin for Self-documenting code Korbin 2008-10-16T15:31:08Z 2008-10-16T15:31:08Z <p>I think what he might be getting at is that if comments explain what the code is doing it should be re-written to be clear what it's intent is. That's what he means by self documenting code. Often this can mean simply breaking up long function into logical smaller pieces with a descriptive function name. </p> <p>That doesn't mean the code should not be commented. It means that comments should provide a reason why the code is written the way it is. </p> http://stackoverflow.com/questions/205644/error-when-using-extension-methods-in-c/205776#205776 0 Answer by Korbin for Error when using extension methods in C# Korbin 2008-10-15T18:03:06Z 2008-10-15T18:03:06Z <p>Yeah I tried that, but here is the interesting thing. I just created the same static class with the extension method in the web project and no compile errors. It only fails to compile in a MS Unit Test project. </p> <p>I'm gonna try the same test in a standard class project using MbUnit to see if this is a limitation of the MS Unit Tests Project.</p> http://stackoverflow.com/questions/205644/error-when-using-extension-methods-in-c/205716#205716 0 Answer by Korbin for Error when using extension methods in C# Korbin 2008-10-15T17:48:16Z 2008-10-15T17:48:16Z <p>Yup. When I look under references an right click on System.Core and go to properties, it says "3.5.0.0" in the version column.</p> http://stackoverflow.com/questions/205644/error-when-using-extension-methods-in-c/205677#205677 0 Answer by Korbin for Error when using extension methods in C# Korbin 2008-10-15T17:37:50Z 2008-10-15T17:37:50Z <p>I have the target framework set to 3.5 in the project properties.</p> http://stackoverflow.com/questions/189471/does-nusoap-have-to-be-configured-a-certain-way-when-calling-from-wcf 0 Does NuSoap have to be configured a certain way when calling from WCF? Korbin 2008-10-09T22:38:36Z 2008-10-10T17:53:50Z <p>I'm trying to call a php webservice using WCF. I googled some public php services to see if I could replicate the error I was receiving and I created 2 different unit tests to demonstrate. </p> <p>The test that failed I get the following error: System.ServiceModel.ProtocolException: The content type text/xml; charset=ISO-8859-1 of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 601 bytes of the response were: '</p> <p>Here are the unit tests:</p> <pre><code>[TestMethod] public void WCF_Call_To_SiteInspect() { //This service doesn't work. It gets the same communication error as our own servers var soapClien = new SiteInspect.SiteInspectPortClient(); var response = soapClien.doSiteInspect("Any", "Any", "www.google.com"); Assert.IsTrue(response.serverTime.Length &gt; 0); } [TestMethod] public void WCF_Call_To_FinnService() { //This service works.... in looking at the wsdl it appears that it references a separate wsdl file. Is this the reason? var soapClient = new NuSoapFinnService.finnwordsPortTypeClient(); var finnLyric = soapClient.getRandomNeilFinnLyric("text"); Assert.IsTrue(finnLyric.Length &gt; 0); } </code></pre> <p>The test case on the bottom (the Finn service) passed at the following URL: <a href="http://www.nickhodge.com/nhodge/finnwords/finnwords.wsdl" rel="nofollow">http://www.nickhodge.com/nhodge/finnwords/finnwords.wsdl</a></p> <p>The first test case failed given the following URL: <a href="http://www.flash-db.com/services/ws/siteInspect.wsdl" rel="nofollow">http://www.flash-db.com/services/ws/siteInspect.wsdl</a></p> <p>The only difference I can see in the wsdl is the Finn service references an extraneous file. xmlns:tns="http://www.nickhodge.com/nhodge/finnwords/finnwords.wsdl . Is this bug with WCF that expects the wsdl in a specific format?</p> http://stackoverflow.com/questions/189471/does-nusoap-have-to-be-configured-a-certain-way-when-calling-from-wcf/189721#189721 0 Answer by Korbin for Does NuSoap have to be configured a certain way when calling from WCF? Korbin 2008-10-10T00:38:07Z 2008-10-10T17:53:50Z <p>That looks helpful, I will give it a shot when I get into the office tomorrow. Thanks!</p> <p>That worked! Thanks.</p> http://stackoverflow.com/questions/176347/asp-net-mvc-test-controllers-w-sessions-mocking/176554#176554 1 Answer by Korbin for ASP/NET MVC: Test Controllers w/Sessions? Mocking? Korbin 2008-10-06T22:59:48Z 2008-10-06T22:59:48Z <p>I found mocking to be fairly easy. Here is an example of mocking the httpContextbase (that contains the request, session and response objects) using moq.</p> <pre><code>[TestMethod] public void HowTo_CheckSession_With_TennisApp() { var request = new Mock&lt;HttpRequestBase&gt;(); request.Expect(r =&gt; r.HttpMethod).Returns("GET"); var httpContext = new Mock&lt;HttpContextBase&gt;(); var session = new Mock&lt;HttpSessionStateBase&gt;(); httpContext.Expect(c =&gt; c.Request).Returns(request.Object); httpContext.Expect(c =&gt; c.Session).Returns(session.Object); session.Expect(c =&gt; c.Add("test", "something here")); var playerController = new NewPlayerSignupController(); memberController.ControllerContext = new ControllerContext(new RequestContext(httpContext.Object, new RouteData()), playerController); session.VerifyAll(); // function is trying to add the desired item to the session in the constructor //TODO: Add Assertions } </code></pre> <p>Hope that helps.</p> http://stackoverflow.com/questions/172168/ruby-on-rails-editor-for-windows/172234#172234 4 Answer by Korbin for Ruby on Rails Editor for Windows Korbin 2008-10-05T16:33:49Z 2008-10-05T16:33:49Z <p>Netbeans (the java editor) is pretty good as well. </p> http://stackoverflow.com/questions/28464/when-do-you-use-dependency-injection/172231#172231 2 Answer by Korbin for When do you use dependency injection? Korbin 2008-10-05T16:32:26Z 2008-10-05T16:32:26Z <p>"Dependency injection should only be used for the parts of the application that need to be changed dynamically without recompiling the base code"</p> <p>DI should be used to isolate your code from external resources (databases, webservices, xml files, plugin architecture). The amount of time it would take to test your logic in code would almost be prohibitive at a lot of companies if you are testing components that DEPEND on a database. </p> <p>In most applications the database isn't going to change dynamically (although it could) but generally speaking it's almost always good practice to NOT bind your application to a particular external resource. The amount involve in changing resources should be low (data access classes should rarely have a cyclomatic complexity above one in it's methods).</p> http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/169091#169091 1 Answer by Korbin for Is it just me or are interfaces overused? Korbin 2008-10-03T22:12:26Z 2008-10-03T22:12:26Z <p>I think you can overuse interfaces, however the reason for using them should be to decouple the components in a system. Even in small systems tight coupling between components is not a good thing (because customers always want more). </p> <p>Tightly coupling an application to any database, file system or any other external resource will only tick you customer off when you give them some outlandish quote to change accessing a database to a webservice.</p> http://stackoverflow.com/questions/157717/what-are-some-reasons-why-a-sole-developer-should-use-tdd/157779#157779 1 Answer by Korbin for What are some reasons why a sole developer should use TDD? Korbin 2008-10-01T14:10:26Z 2008-10-01T14:10:26Z <p>TDD is not about testing it's about writing code. As such, it provides a lot of benefits to even a single developer. For many developers it is a mindshift to write more robust code. For example, how often do you think "Now how can this code fail?" after writing code without TDD? For many developers, the answer to that question is none. For TDD practioners it shifts the mindset to to doing things like checking if objects or strings are null before doing something with them because you are writing tests to specifically do that (break the code). </p> <p>Another major reason is change. Anytime you deal with a customer, they can never seem to make up their minds. The only constant is change. TDD helps as a "safety net" to find all the other areas that could break.Even on small projects this can keep you from burning up precious time in the debugger. </p> <p>I could go and on, but I think saying that TDD is more about writing code than anything should be enough to justify it's use as a sole developer.</p> http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family/147220#147220 3 Answer by Korbin for How do you keep a balance between working, training, health and family? Korbin 2008-09-29T01:36:46Z 2008-09-29T01:36:46Z <p>Get involved in some kind of exercise activity that is fun to do. For years I was a gym rat, but I found myself having a hard time going because it stopped being fun me me. </p> <p>I picked up tennis again and it seemed to bring balance back into my life. I have been meetng new people an more importantly I spend hours exercising and it doesn't feel like I'm exercising.</p> <p>Ultimately, finding something that you enjoy as much an writing code that doesn't seem like work seems to be the best way to go.</p> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc 2 Constructor parameters for controllers without a DI container for ASP.NET MVC Korbin 2008-09-23T16:54:14Z 2008-09-24T12:46:03Z <p>Does anyone have any code examples on how to create controllers that have parameters other than using a Dependency Injection Container? </p> <p>I see plenty of samples with using containers like StructureMap, but nothing if you wanted to pass in the dependency class yourself.</p> http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/123880#123880 -1 Answer by Korbin for Constructor parameters for controllers without a DI container for ASP.NET MVC Korbin 2008-09-23T21:04:24Z 2008-09-23T21:04:24Z <p>Creative approach LOL. I would suspect that MS will eventually add a easier mechanism for doing this if we didn't want to depend on a third party open source codebase (DI container).</p> http://stackoverflow.com/questions/59195/how-are-mocks-meant-to-be-used/121814#121814 1 Answer by Korbin for How are Mocks meant to be used? Korbin 2008-09-23T15:39:11Z 2008-09-23T15:39:11Z <p>As someone said before, if you mock everything to isolate more granular than the class you are testing, you give up enforcing cohesion in you code that is under test. </p> <p>Keep in mind that mocking has a fundamental advantage, behavior verification. This is something that stubs don't provide and is the other reason that makes the test more brittle (but can improve code coverage).</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121410#121410 5 Answer by Korbin for What is the one programming skill you have always wanted to master but haven't had time? Korbin 2008-09-23T14:36:25Z 2008-09-23T14:36:25Z <p>Faster at cranking out unit tests (so I don't have to put off writing them when time gets tight as it always does in a project).</p> http://stackoverflow.com/questions/121283/separating-web-applications-into-multiple-projects/121372#121372 0 Answer by Korbin for Separating Web Applications into multiple projects Korbin 2008-09-23T14:32:42Z 2008-09-23T14:32:42Z <p>A somewhat simple approach is to group the code in your app_code folder into it's own assembly. The only issue that you could possibly run into is if the code in your app_code folder is not decoupled from the elements on you pages (This is normally always a bad idea since it indicates poor cohesion in you classes).</p> <p>Once you have your code in a separate assembly you can deploy it to any number of servers when you are upgrading you apps. </p> http://stackoverflow.com/questions/890442/where-does-the-presentation-logic-go-for-the-view-model-viewmodel-pattern/890788#890788 Comment by Korbin on Where does the presentation logic go for the View-Model-ViewModel pattern? Korbin 2009-05-21T02:40:46Z 2009-05-21T02:40:46Z So lets say you needed to do it in the viewmodel because the animation is based on something that's quantifiable like &quot;number of X&quot; (like animating a chart). Would you still write code in your code behind to accomplish this? http://stackoverflow.com/questions/251186/how-are-you-passing-more-than-one-object-to-a-view/251227#251227 Comment by Korbin on How are you passing more than one object to a view? Korbin 2008-10-30T19:22:20Z 2008-10-30T19:22:20Z Interesting, I will have to check that out. http://stackoverflow.com/questions/251186/how-are-you-passing-more-than-one-object-to-a-view/251213#251213 Comment by Korbin on How are you passing more than one object to a view? Korbin 2008-10-30T19:21:48Z 2008-10-30T19:21:48Z Yep, there is only one: ViewPage&lt;T&gt;. Your suggestion is exactly what I'm currently doing. I was hoping for a more efficient solution instead of creating whole classes different than my &quot;model&quot; classes. http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/211940#211940 Comment by Korbin on Issues During ASP.NET MVC Upgrade from Preview 5 to Beta? Korbin 2008-10-17T15:00:34Z 2008-10-17T15:00:34Z This is a pretty easy fix. Microsoft changed the name of DisposeController to ReleaseController in the IcontrollerFactory interface. All you have to do is implement the ReleaseController method in AutofacControllerFactory. http://stackoverflow.com/questions/122273/constructor-parameters-for-controllers-without-a-di-container-for-asp-net-mvc/123880#123880 Comment by Korbin on Constructor parameters for controllers without a DI container for ASP.NET MVC Korbin 2008-10-10T17:56:25Z 2008-10-10T17:56:25Z Because some customers are opposed to using open source software. Even though Asp.net MVC is open source it's still supported by MS. http://stackoverflow.com/questions/29700/can-someone-point-me-to-some-guides-for-wpf/29701#29701 Comment by Korbin on Can someone point me to some guides for WPF Korbin 2008-10-08T00:46:33Z 2008-10-08T00:46:33Z It's a bit outdated though. I picked it up and some of the samples don't work because it was based off the beta. http://stackoverflow.com/questions/176347/asp-net-mvc-test-controllers-w-sessions-mocking/176554#176554 Comment by Korbin on ASP/NET MVC: Test Controllers w/Sessions? Mocking? Korbin 2008-10-07T22:24:51Z 2008-10-07T22:24:51Z Sure, I have seen a few projects where they put the setup code in a &quot;helper&quot; class and use it over and over again.