User pmlarocque - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T00:54:53Zhttp://stackoverflow.com/feeds/user/7419http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902136/advice-on-starting-a-large-multi-threaded-programming-project/1902617#19026170Answer by pmlarocque for Advice on starting a large multi-threaded programming projectpmlarocque2009-12-14T18:28:27Z2009-12-14T21:25:44Z<p>Whatever technology your going to write this, take a look a <a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">this must read book on concurrency "Concurrent programming in Java"</a> and for .Net I highly recommend the <a href="http://code.google.com/p/retlang/" rel="nofollow">retlang library</a> for concurrent app.</p>
http://stackoverflow.com/questions/1862231/git-exclude-file/1862260#18622600Answer by pmlarocque for Git - exclude filepmlarocque2009-12-07T19:19:02Z2009-12-07T19:19:02Z<p>Add the file name to a .gitignore file.</p>
<p><a href="http://ftp.df.lth.se/pub/software/scm/git/docs/gitignore.html" rel="nofollow">Link</a></p>
http://stackoverflow.com/questions/159280/do-ocunit-and-ocmock-work-on-the-iphone-sdk12Do OCUnit and OCMock work on the iPhone SDK?pmlarocque2008-10-01T19:22:46Z2009-12-05T17:31:49Z
<p>I simply could not make it work, and I am wondering if I am wasting my time, or if I am simply stupid!</p>
<p>Sorry I don't have the exact error I have right now. But I just want to know if it work or not!</p>
http://stackoverflow.com/questions/1178244/is-doing-a-bit-of-freelancing-while-working-full-time-a-good-idea/1805863#18058632Answer by pmlarocque for Is doing a bit of freelancing while working full time a good idea?pmlarocque2009-11-26T22:01:26Z2009-11-26T22:01:26Z<p>Support is the main problem IMO, your customers will want responsive support in case of problems, but you wont be able to because you'll be at your day job.</p>
http://stackoverflow.com/questions/179840/integrating-with-great-plains-best-way3Integrating with Great Plains, best way ?pmlarocque2008-10-07T18:52:29Z2009-08-23T00:18:57Z
<p>Hello,</p>
<p>I can't find much information around the web about it. Has anyone used both eConnect and the Dynamics web services to interact (read/write) with Great Plains. I am looking for the pros and cons of both approaches.</p>
<p>This product will be installed and configured on various sites, so ease of configuration is really important. I usually hate to mess with IIS.</p>
<p>Should be able to target GP 9 and 10.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/829793/nhibernate-get-and-load0Nhibernate Get and Load.pmlarocque2009-05-06T14:11:27Z2009-08-17T13:00:01Z
<p>Hello</p>
<p>I am fixing a codebase using NHibernate and I found out that instead of using Get or Load to find entities by ID they were using a query.</p>
<p>Like : </p>
<blockquote>
<p><code>session.CreateCriteria(typeof(T)).Add(Expression.AllEq(propertyNameValues)).List<T>();</code></p>
</blockquote>
<p>where the propertyNameValues is a IDictionnary containing "ID" and the id value.</p>
<p>Trying to replace it with :</p>
<blockquote>
<p><code>session.Get<T>(id);</code></p>
</blockquote>
<p>Nhibernate throws a No Persister found for my class.</p>
<p>But there is obviously one as the first method works, my google-fu only found links where it was people forgetting to set the given hbm to embedded ressources or the mapping assembly in the nhibernate configuration.</p>
<p>I tried Get(id) , Get(typeof(T),id), Get("ClassName",id) all throw same error.</p>
<p>Here is the mapping as requested (thank you)</p>
<pre><code><class name="Domain.Customers.Customer, Domain" table="Customer" lazy ="true">
<id name="ID" column="id" access="field.lowercase-underscore" type="int">
<generator class="identity" />
</id>
</code></pre>
<p>This is the mapping of one class but it's generic for all my entitites.</p>
<p>Thanks for any pointer.</p>
http://stackoverflow.com/questions/1266246/ms-gp-econnect-create-eft-bank0MS GP eConnect create EFT Bankpmlarocque2009-08-12T13:43:13Z2009-08-12T20:42:56Z
<p>Hello,</p>
<p>Simply trying to create via eConnect the EFT Bank informations on a customer. You go inside a customer - > address - > EFT Bank. I cannot find any informations in the eConnect documentation or on the web of the correct method to use. Trying my chance here.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1266246/ms-gp-econnect-create-eft-bank/1268620#12686200Answer by pmlarocque for MS GP eConnect create EFT Bankpmlarocque2009-08-12T20:42:56Z2009-08-12T20:42:56Z<p>There no way except writing directly inside the database tables, this is for latest version : Dynamics GP v 10.</p>
http://stackoverflow.com/questions/888137/nhibernate-map-state-pattern0NHibernate map state patternpmlarocque2009-05-20T14:10:05Z2009-05-20T20:47:52Z
<p>Hello,</p>
<p>Given a class which encapsulate a State... </p>
<p>Lets say :</p>
<pre><code>class StateOwner
{
State CurrentState {get;set;}
}
static class StateFactory
{
static State GetStateXYZ()
{
return new StateXYZ();
}
}
</code></pre>
<p>Now I have no interest to persist my different states in the datebase. I just want to be able to have the correct state when I load back the StateOwner class.</p>
<p>It's propably something like a with a discriminator, but I don't know how to do it for a class (StateXYZ) which is not persisted in the DB.</p>
<p>Thanks for your time!</p>
http://stackoverflow.com/questions/560818/do-you-rebuild-or-enhance-enterprise-applications/560957#5609570Answer by pmlarocque for Do you rebuild or enhance enterprise applications ?pmlarocque2009-02-18T12:59:33Z2009-02-18T12:59:33Z<p>I would only consider a rewrite if it's to change the technology/platform of the product. If not refactoring is the way to go IMO, because you never end up with the clean code base you were dreaming off.</p>
http://stackoverflow.com/questions/559209/lightweight-thread-pool-libraries-in-net/559564#5595641Answer by pmlarocque for Lightweight Thread Pool Libraries in .NETpmlarocque2009-02-18T01:55:49Z2009-02-18T01:55:49Z<p><a href="http://code.google.com/p/retlang/" rel="nofollow">Retlang</a> rocks! Or <a href="http://ayende.com/Blog/archive/2008/08/01/Rhino-Queues.aspx" rel="nofollow">Rhino Queues</a> from Ayende.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/556848#5568481Answer by pmlarocque for What do you consider the 1st principle(s) of programming?pmlarocque2009-02-17T13:44:31Z2009-02-17T13:44:31Z<p>You have to resolve all the problems in the world with "if, for, while".</p>
http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view4Model view presenter, how to pass entities between view ?pmlarocque2009-02-10T20:28:38Z2009-02-11T13:45:47Z
<p>Edit : Accepted Chris Holmes response, but always ready to refactor if someone come up with a better way! Thanks!</p>
<p>Doing some winforms with MVP what is the best way to pass an entity to another view.</p>
<p>Let say I have a CustomerSearchView/Presenter, on doubleClick I want to show the CustomerEditView/Presenter. I don't want my view to know about the model, so I can't create a ctor that take an ICustomer in parameters.</p>
<p>my reflex would be,</p>
<p>CustomerSearchView create a new CustomerEditView, which create it's own presenter.
Then my customerSearchView would do something like :</p>
<blockquote>
<p>var customerEditView = new CustomerEditView();</p>
<p>customerEditView.Presenter.Customer = this.Presenter.SelectedCustomer;</p>
</blockquote>
<p>Other possible approach would be a CustomerDTO class, and make a CustomerEditView that accept one of those CustomerDTO, but I think it's a lot of work something simple.</p>
<p>Sorry for basic question but all example I can find never reach that point, and it's a brownfield project, and the approach used soo far is giving me headache...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/351959/is-there-any-good-mvc-mvp-frameworks-or-other-application-frameworks-for-net-win/527116#5271160Answer by pmlarocque for Is there any good MVC/MVP frameworks or other application frameworks for .NET Winforms?pmlarocque2009-02-09T04:30:54Z2009-02-09T04:30:54Z<p><a href="http://mvcsharp.org/Default.aspx" rel="nofollow">MVC#</a></p>
http://stackoverflow.com/questions/477748/what-are-the-best-c-net-books/477799#4777991Answer by pmlarocque for What are the best C# .NET books?pmlarocque2009-01-25T15:11:57Z2009-01-25T15:11:57Z<p>CLR via C#,</p>
<p>C# in Depth - thanks Jon!,</p>
<p>Programming .Net components by Juval Lowy.</p>
http://stackoverflow.com/questions/466897/how-will-python-and-ruby-applications-be-affected-by-net/467031#4670310Answer by pmlarocque for How will Python and Ruby applications be affected by .NET?pmlarocque2009-01-21T21:12:41Z2009-01-21T21:12:41Z<p>You answer your first question with the second one, if you don't use anything from .Net only the original libs provided by the implementation of the language, you could interpret your *.py or *.rb file with another implementation and it should work.</p>
<p>The advantage would be if your a .Net shop you usually take care of having the right framework installed on client machine etc... well if you want python or ruby code, you now need to support another "framework" need to distribute install, take care of version problem etc... So there 2 advantages, using .Net framework power inside another language + keep the distribution/maintenance as simple as possible.</p>
http://stackoverflow.com/questions/448440/generic-exception-over-webservices3Generic Exception over webservices.pmlarocque2009-01-15T20:57:08Z2009-01-20T21:36:35Z
<p>I am integrating with MS Dynamics GP WebServices from C# and I am not sure how to handle exception.</p>
<p>If I do a GetCustomer with a inexistant ID, the web services return me a "generic" SoapException and the message is "Business object not found." So the only way I see to be sure it's an invalid ID and not any other error, is by parsing the error message, I find this solution extremely fragile. My GP version is English, on customer site it's gonna be french and I have no idea in which language web services message gonna be. I am thinking about catching it, parsing the message and throw a more meaningful error type. </p>
<p>Do you see a better option ?</p>
http://stackoverflow.com/questions/452391/recommended-books-on-concurrency-synchronization-mechanisms/452411#4524113Answer by pmlarocque for Recommended books on concurrency / synchronization mechanismspmlarocque2009-01-16T23:29:21Z2009-01-16T23:29:21Z<p><a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">Concurrent programming in Java</a> is a bible on best practice, not just for Java. Bob Martin latest book : <a href="http://rads.stackoverflow.com/amzn/click/0132350882" rel="nofollow">Clean Code</a> as nice chapter on how to make concurrent programming part of your code... clean!</p>
http://stackoverflow.com/questions/448440/generic-exception-over-webservices/451496#4514960Answer by pmlarocque for Generic Exception over webservices.pmlarocque2009-01-16T18:42:10Z2009-01-16T18:42:10Z<p>For information to people interested in the topics, Jacob Proffitt response look like the way to go. here a snipper from Dynamics GP documentation:</p>
<pre><code>catch(SoapException soapErr)
{
// If a validation exception occurred, the logid will be in a child node
if(soapErr.Detail.HasChildNodes == true)
{
// Create a guid for the logid value in the soap exception
Guid guid = new Guid(soapErr.Detail.InnerText);
// Get the validation result object
validationResult = wsDynamicsGP.GetLoggedValidationResultByKey(guid, context);
// Display the number of validation exceptions
MessageBox.Show("Number of validation exceptions: " +
validationResult.Errors.Length.ToString());
}
</code></pre>
<p>}</p>
<p>But in the case I cited : GetCustomer with an unexisting ID, the line "soapErr.Detail.HasChildNodes" is false so it fails.</p>
<p>The webservices seem full of funny behavior, this will take longer than I expected :(.</p>
http://stackoverflow.com/questions/440019/who-should-pay-for-programming-books/440038#44003811Answer by pmlarocque for Who should pay for programming books?pmlarocque2009-01-13T17:53:17Z2009-01-13T18:13:38Z<p>I tend to make my job pay for technical books on specific technologies, lets say WCF. Because they change fast and often and they will be outdated fast enough. </p>
<p>I buy with my money the concept/practice books, like Domain-driven design or Refactoring or GOF design patterns, as they are books I often come back and understand more of it as I become a better developer.</p>
http://stackoverflow.com/questions/375472/what-is-the-best-way-for-the-domain-layer-to-call-out-to-the-ui/375484#3754841Answer by pmlarocque for What is the best way for the domain layer to "call out" to the UIpmlarocque2008-12-17T18:12:04Z2008-12-17T18:27:10Z<p>The presenter or the controller, depending if you do MVC or MVP should know about it, not the domain, the domain will assert ( defensive coding ) is as all needed values ok, or throw an exception, not ask for it. </p>
<p>So let say you don't supply the number, your model throw a AuthorizationNumberRequiredException, then your presenter handle it from there. So your domain is not coupled to the presenter, it simply throw errors, your presenter must know how to handle it, but it not duplicating the logic.</p>
http://stackoverflow.com/questions/364155/what-type-of-programming-tasks-do-you-find-most-interesting-challenging/364954#3649540Answer by pmlarocque for What type of programming tasks do you find most interesting/challenging?pmlarocque2008-12-13T07:22:37Z2008-12-13T07:22:37Z<p>Understanding the domain and making a clean design out of it. Also, I enjoy doing lower level more technical stuff, like communication with new hardware, solving threadings problem. etc...</p>
http://stackoverflow.com/questions/363659/dealing-with-application-redesign/363780#3637800Answer by pmlarocque for Dealing with application redesignpmlarocque2008-12-12T18:52:52Z2008-12-12T18:52:52Z<p>I really don't know the scope of the projects. But 4 months to redesign a system which as 100 tables seem unrealistic. Except ,maybe, if you know the domain very well.</p>
<p>my 0.02$</p>
http://stackoverflow.com/questions/339356/tag-cloud-web-service/350283#3502830Answer by pmlarocque for Tag Cloud web service?pmlarocque2008-12-08T17:41:50Z2008-12-08T17:41:50Z<p>Maybe you could make a use of this : <a href="http://www.wordle.net/" rel="nofollow">http://www.wordle.net/</a></p>
http://stackoverflow.com/questions/349420/how-to-gain-professional-credibility-faster-at-a-new-workplace/350276#3502761Answer by pmlarocque for How to gain professional credibility faster at a new workplace?pmlarocque2008-12-08T17:36:39Z2008-12-08T17:36:39Z<p>Deliver and stay focused on getting the job done.</p>
http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/350256#3502560Answer by pmlarocque for What programming jobs do you aspire to?pmlarocque2008-12-08T17:32:13Z2008-12-08T17:32:13Z<p>Being my own boss. Simply to use the tool and language I like. I am a .Net developer in my resume and will continue to be simply because "real" experience is what count when they hire you. It very hard to escape this once your started...</p>
<p>I wish I could put the bread on the table programming Ruby and various other tools as needed. Doing a product I like and care about. I am a bit sick of doing software so people can produce/sale more, when we already live in a overconsumption/overproduction world.</p>
http://stackoverflow.com/questions/326256/what-is-the-best-software-project-management-book/326261#3262613Answer by pmlarocque for What is the best software project management book?pmlarocque2008-11-28T17:22:47Z2008-11-28T17:29:33Z<p><a href="http://pragprog.com/titles/jrpm/manage-it" rel="nofollow">Manage IT</a>, rocks, won Jolt 2008 award. But I must say that "Head first software development" is almost perfect, if you manage to apply every practice in it, you'll be better than 99% of the people in this industry. It's may look not serious, but it is!</p>
http://stackoverflow.com/questions/273108/which-programming-languages-have-helped-you-to-understand-programming-better/273147#2731473Answer by pmlarocque for Which programming languages have helped you to understand programming better?pmlarocque2008-11-07T18:45:09Z2008-11-07T18:45:09Z<p>Not as general as your question, but learning Erlang with this <a href="http://pragprog.com/titles/jaerlang/programming-erlang" rel="nofollow">excellent book</a>, helped me understand and make effective multi-threaded code.</p>
http://stackoverflow.com/questions/260905/whats-the-best-easiest-gui-library-for-ruby/262189#2621891Answer by pmlarocque for What's the best/easiest GUI Library for Ruby?pmlarocque2008-11-04T15:30:48Z2008-11-04T15:30:48Z<p><a href="http://limelight.8thlight.com/main/sparkle" rel="nofollow">Limelight</a> I really enjoy the theator metaphor.</p>
http://stackoverflow.com/questions/262089/back-end-choice-for-a-new-dynamic-programming-language/262100#2621000Answer by pmlarocque for Back-end choice for a new dynamic programming language?pmlarocque2008-11-04T15:12:35Z2008-11-04T15:12:35Z<p>.NET as the DLR now that sit on top of the CLR for Dynamic language.</p>
http://stackoverflow.com/questions/1842140/is-there-any-cause-for-concern-using-log4net-with-net-3-5-and-later/1842165#1842165Comment by pmlarocque on is there any cause for concern using log4net with .NET 3.5 and laterpmlarocque2009-12-03T19:06:37Z2009-12-03T19:06:37Zthat the right answer!http://stackoverflow.com/questions/309258/c-and-net-interview-questions/309295#309295Comment by pmlarocque on C# and .NET Interview Questionspmlarocque2009-12-03T18:50:49Z2009-12-03T18:50:49Z@John Kraft if I am building a car and pick a MacPherson suspension type and my handling is bad, I need to know how it work at a low level to fix it or make right decision to replace it for another type. http://stackoverflow.com/questions/888137/nhibernate-map-state-patternComment by pmlarocque on NHibernate map state patternpmlarocque2009-05-22T13:52:19Z2009-05-22T13:52:19ZOnly way I found was to make an enum for each state class, save the current state as a int, and change the StateOwner.CurrentState for StateOwner.GetState() which call the StateFactory with the enum value. Works because the State class can be considered as a value object. But it look'n'feel like monkey patching to me.http://stackoverflow.com/questions/888137/nhibernate-map-state-patternComment by pmlarocque on NHibernate map state patternpmlarocque2009-05-22T13:47:13Z2009-05-22T13:47:13ZThe class State (StateXYZ) is not persisted, but I need the state owner to know how to persist it's current State. So it will instantiate right state class. StateOwner.CurrentState need to be persisted but NH does not know of State class, which is my problem.http://stackoverflow.com/questions/829793/nhibernate-get-and-loadComment by pmlarocque on Nhibernate Get and Load.pmlarocque2009-05-06T15:42:40Z2009-05-06T15:42:40ZWell seem related to the fact they call this method via reflection and it's in the Generic class. So I decided to let it call it the wrong way in most place, and simply override the base method in classes where it's called often. Thanks!http://stackoverflow.com/questions/829793/nhibernate-get-and-load/829831#829831Comment by pmlarocque on Nhibernate Get and Load.pmlarocque2009-05-06T15:24:07Z2009-05-06T15:24:07ZI mean the "propertyNameValues" is there standard way of doing for other query... like key = "Number" Value = "1234" ... but the method GetByID simply redirect to this method using key = "ID" value = "1".
And as posted by Ayende : <a href="http://ayende.com/Blog/archive/2009/04/30/nhibernate-ndash-the-difference-between-get-load-and-querying-by.aspx" rel="nofollow">ayende.com/Blog/archive/…</a>
this is not the good way to do it.http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view/534674#534674Comment by pmlarocque on Model view presenter, how to pass entities between view ?pmlarocque2009-02-11T13:44:54Z2009-02-11T13:44:54ZI think events are a good approach to this problem and as you said in conjunction with a IoC it make very clean code.http://stackoverflow.com/questions/534054/model-view-presenter-how-to-pass-entities-between-view/534092#534092Comment by pmlarocque on Model view presenter, how to pass entities between view ?pmlarocque2009-02-11T13:43:55Z2009-02-11T13:43:55Zwell that almost like I said except that you use a method instead of a property to set the customer. Thanks.http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940Comment by pmlarocque on How do I get back into *real* programming? Should I?pmlarocque2009-01-28T20:07:06Z2009-01-28T20:07:06ZDid it to learn Ruby.http://stackoverflow.com/questions/480432/do-you-pseudo-code/480486#480486Comment by pmlarocque on Do you pseudo-code?pmlarocque2009-01-26T18:16:17Z2009-01-26T18:16:17ZThat from Code complete, isn't? http://stackoverflow.com/questions/480627/why-wont-anyone-accept-public-fields-in-c/480635#480635Comment by pmlarocque on Why won't anyone accept public fields in C#?pmlarocque2009-01-26T18:15:26Z2009-01-26T18:15:26ZIgnore Iraimbilanja comment please, Cody is right. http://stackoverflow.com/questions/362226/whats-your-next-programming-language-and-why/362235#362235Comment by pmlarocque on What's your next programming language? And why?pmlarocque2009-01-22T03:46:54Z2009-01-22T03:46:54ZRails is a neat framework, but the value lies in Ruby language. Sorry had to say ths.http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448779#448779Comment by pmlarocque on Generic Exception over webservices.pmlarocque2009-01-16T14:55:17Z2009-01-16T14:55:17ZIt's a step in the right direction but it does not work. In GP helps. I says to get the Guid needed by "GetLoggedValidationResultByKey" from "soapErr.Detail.InnerText" and in the case of "GetCustomerByKey" is invalid key, that property is empty.... I'll just parse the error for now I think.http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448779#448779Comment by pmlarocque on Generic Exception over webservices.pmlarocque2009-01-15T22:57:29Z2009-01-15T22:57:29ZThanks will investigate.http://stackoverflow.com/questions/448440/generic-exception-over-webservices/448519#448519Comment by pmlarocque on Generic Exception over webservices.pmlarocque2009-01-15T21:28:15Z2009-01-15T21:28:15ZThanks, yes I was glad to see that all the services I needed were available via web services or I would have trap with eConnect.