User ShaneB - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:47:17Z http://stackoverflow.com/feeds/user/13616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205711/linq-external-mapping-to-class-library 1 LINQ External Mapping to Class Library ShaneB 2008-10-15T17:47:12Z 2009-09-24T19:34:57Z <p>I've been struggling with a problem for the past couple days and haven't found a solution.</p> <p>I have an Visual Studio solution with 2 projects, the first one is a DLL with my business objects and logic, the other project is my WinForm application, and a reference dependency on the first project.</p> <p>I initially wrote the business objects with Attribute LINQ mapping and everything was working fine. Then I thought I would try external mapping. I followed a few different guides on how it should work; however, everytime I ran the code in my solution I would get a <em>InvalidOperationException: Mapping Problem: Cannot find type 'Org.Example.System.Material' from mapping</em>, when the WinForm attempts to create the DataContext object.</p> <p>After trying different configurations in the XML file I placed a copy of the class into my GUI solution under a different namespace and it worked. My question is, is it not possible to map an object in a class library or if it is how is it accomplished.</p> <p>Samples</p> <p><strong>dbmap.xml</strong></p> <pre><code>&lt;Database xmlns="http://schemas.microsoft.com/linqtosql/mapping/2007" Name="Gravel_Dev"&gt;&lt;Table Name="dbo.Materials" Member="Material"&gt; &lt;Type Name="Org.Example.System.Material"&gt; &lt;Column Name="MaterialID" Member="MaterialID" Storage="mMaterialID" DbType="UniqueIdentifier NOT NULL" IsDbGenerated="true" IsPrimaryKey="true"/&gt; &lt;Column Name="Code" Member="Code" Storage="mMaterialCode" DbType="Char(4)"/&gt; &lt;Column Name="Description" Member="Description" Storage="mDescription" DbType="VarChar(50)"/&gt; &lt;Column Name="UnitPrice" Member="UnitPrice" Storage="mUnitPrice" DbType="Decimal(5,2)"/&gt; &lt;/Type&gt; </code></pre> <p> </p> <p><strong>WinForm Loading</strong></p> <pre><code>XmlMappingSource mapping = XmlMappingSource.FromUrl("dbmap.xml"); mContext = new DataContext(Properties.Settings.Default.dbConn, mapping); reloadTable(); </code></pre> http://stackoverflow.com/questions/1436072/nhibernate-mappingexception-no-persister/1436151#1436151 1 Answer by ShaneB for NHibernate MappingException. No Persister. ShaneB 2009-09-17T00:22:16Z 2009-09-17T00:27:37Z <p>Not sure what your nhibernate.cfg.xml file looks like, but I generally have an item like this</p> <pre><code>&lt;mapping assembly="mm.K.Infrastructure"/&gt; </code></pre> <p>based on your information you've given. NHibernate uses this to load the mapping files from this specific assembly.</p> <p>This should give you the mapping you need.</p> http://stackoverflow.com/questions/1336142/service-to-find-out-if-a-name-is-male-or-female/1336163#1336163 2 Answer by ShaneB for Service to find out if a name is male or female ShaneB 2009-08-26T16:57:09Z 2009-08-26T17:06:27Z <p>I haven't used this (commercially) but it seems to cover what you're looking for.</p> <p><a href="http://www.gpeters.com/name-gender/" rel="nofollow">http://www.gpeters.com/name-gender/</a></p> http://stackoverflow.com/questions/582413/can-you-print-to-a-printer-driver-without-having-the-hardware-and-see-the-output/582461#582461 1 Answer by ShaneB for Can you print to a printer driver without having the hardware and see the output? ShaneB 2009-02-24T16:31:38Z 2009-02-24T16:31:38Z <p>I would say this is a primary reason why many specialty software vendors require certain models of hardware whether it's bar code scanners or special printers. I've seen many instances where only certain models are supported and the client purchasing the software is required to use the recommended hardware, any other model is not supported by the software vendor.</p> <p>One of the requirements of an accounting software I work with is that it requires a PCL5 complient printer. Most bargin bin printers do not have this support and I have told many clients that their $75 laser printer will not work with the software and that the need to buy a printer that is a little more expensive.</p> <p>Due to the special nature of the of the printers I don't see why the manufacturers would not provide some kind of development machine given a deal to recommend their printers to your client base.</p> http://stackoverflow.com/questions/550228/i-am-looking-for-a-webbased-text-editor-that-supports-collaboration/550264#550264 2 Answer by ShaneB for I am looking for a webbased text editor that supports collaboration ShaneB 2009-02-15T03:33:36Z 2009-02-15T03:33:36Z <p><a href="http://www.collabedit.com/" rel="nofollow">CollabEdit</a></p> <p>I saw this linked in another question and it seems to fit the bill 100%, web-based and syntax highlighting.</p> http://stackoverflow.com/questions/533243/hobbies-careers-that-complement-programming/533291#533291 11 Answer by ShaneB for Hobbies/Careers that complement programming ShaneB 2009-02-10T17:16:32Z 2009-02-10T17:16:32Z <p>Puzzles of pretty much any kind. Sudoku, Crosswords, Logic and classic jigsaw.</p> http://stackoverflow.com/questions/493702/how-do-you-deal-with-temporary-useless-controls-in-winforms-hiding-vs-disabling/493727#493727 1 Answer by ShaneB for How do you deal with temporary useless controls in Winforms (hiding vs disabling) ? ShaneB 2009-01-29T22:19:40Z 2009-01-29T22:19:40Z <p>Disable the textbox</p> <p>With the textbox hidden the user may skip over the option "Use Foo" since it won't be clear to them how they will or should define "foo". With the textbox visible but disabled the user will recognize that they can define "foo" once they say they want to use it.</p> http://stackoverflow.com/questions/493642/would-my-environment-require-a-paid-sql-server-license/493678#493678 3 Answer by ShaneB for Would my environment require a paid SQL Server license? ShaneB 2009-01-29T22:07:47Z 2009-01-29T22:07:47Z <p>SqlExpress is free no matter what the deployment, you just have to accept the limitations</p> <ul> <li>Single CPU</li> <li>1GB RAM Max Usage</li> <li>4GB Database size limit (not including logs)</li> </ul> <p>Based on your description I think that the SQLExpress would work fine for your application.</p> <p>Here's a reference from MS <a href="http://www.microsoft.com/Sqlserver/2005/en/us/compare-features.aspx" rel="nofollow">http://www.microsoft.com/Sqlserver/2005/en/us/compare-features.aspx</a></p> http://stackoverflow.com/questions/482444/how-can-i-get-a-windows-console-to-stay-open/482449#482449 1 Answer by ShaneB for How can I get a Windows console to stay open? ShaneB 2009-01-27T06:10:59Z 2009-01-27T06:10:59Z <p>use the "pause" command.</p> http://stackoverflow.com/questions/386728/path-based-authentication-in-subversion-failing-for-repository-but-not-path/386789#386789 0 Answer by ShaneB for Path based authentication in Subversion failing for repository, but not path. ShaneB 2008-12-22T17:20:12Z 2008-12-22T17:20:12Z <p>When you did svnadmin create <strong>_____</strong> what ever you gave in that blank is your repository name. For path-based authorization you define your repository by name. You then can specifiy a path within the repository. </p> <p>I primarily use HTTP Auth, so I'm not sure if there are any differences with svnserv. </p> <p>Using HTTP Auth once you've defined the SVNParentPath you can give access to areas of the repository for instance a branch of business logic libraries to another developer like so:</p> <pre><code>[bizlib:/branches/2.0.x] dev_login = r </code></pre> http://stackoverflow.com/questions/271318/should-you-access-a-variable-within-the-same-class-via-a-property/271333#271333 0 Answer by ShaneB for Should you access a variable within the same class via a Property? ShaneB 2008-11-07T05:46:01Z 2008-11-07T05:46:01Z <p>Generally depending on the project coding standards I use a "_" or "m" preceding the name for my private class attributes. (Like below)</p> <pre><code>private int mVariable; private int _Variable; </code></pre> <p>With those in front of the variable I recognize right away that I'm dealing with an internal variable for the class. Then when it comes to debugging later myself or someone else can immediately recognize that the code is dealing with an internal private variable and make an adjustment. So it comes down to readability for me.</p> http://stackoverflow.com/questions/228300/removing-file-locks/228351#228351 1 Answer by ShaneB for Removing file locks ShaneB 2008-10-23T02:32:47Z 2008-10-23T02:32:47Z <p>I would really consider finding another 3rd party dll. Any system handling Streams should properly respond to error conditions and not leave things like file locks in place.</p> <p>Is it possible that the library does provide error condition clean up, you've just over looked it? Try something like the following,</p> <pre><code> try { thirdPartyObj = new ThirdPartObj(); // Some possible error causing object actions catch(Exception ex) { thirdPartyObj = null; // The object should close its resources } </code></pre> http://stackoverflow.com/questions/224637/jsp-custom-tag-library-passing-attributes/224690#224690 2 Answer by ShaneB for JSP custom tag library (Passing Attributes) ShaneB 2008-10-22T06:41:51Z 2008-10-22T15:03:50Z <p>In order to access the parameters your TagHandler class should define the private members and provide accessor methods.</p> <pre><code>public class TagHandler extends TagSupport { private String firstName; private String lastName; public void setFirstName(String firstname) { firstName = firstname; } public void setLastName(String lastname) { lastName = lastname;} } </code></pre> <p>you can then access the parameters through the TagHandler variables.</p> <pre><code>public int doStartTag() throws JspException { pageContext.getOut().print(lastName + ", " + firstName); } </code></pre> <p>If you still have problems double check your naming conventions, the Java interpeter is trying to guess what the setter method is. So if your parameter is "FirstName" than the set method must be "setFirstName" if the parameter is "lastname" the set parameter must be "setlastname". I perfer to follow the former, since it is the standard Java naming convention.</p> http://stackoverflow.com/questions/224542/how-do-you-research-a-prospective-employer/224642#224642 0 Answer by ShaneB for How do you research a prospective employer? ShaneB 2008-10-22T06:18:54Z 2008-10-22T06:18:54Z <p>The first resource I always hit is the companies own website. Depending on the information I get from it, I can usually get an idea where to go to next: Clients, Partners, Current Employees, Media Releases. </p> <p>Finding a current employee to talk to is always easier than trying to find an ex-employee.</p> http://stackoverflow.com/questions/214509/books-for-web-application-development/214571#214571 1 Answer by ShaneB for Books for web application development? ShaneB 2008-10-18T04:28:56Z 2008-10-18T04:28:56Z <p>Since you didn't give much information about your current knowledge level, I'll recommend</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321509021" rel="nofollow">Bullet Proof Web Design by Dan Cederholm</a></p> <p>overall a well laid out book and one of the few that I can say improved my abilities.</p> http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/214563#214563 2 Answer by ShaneB for Which LINQ syntax do you prefer? Fluent or Query Expression ShaneB 2008-10-18T04:19:43Z 2008-10-18T04:19:43Z <p>While I do understand and like the fluent format , I've stuck to Query for the time being for readability reasons. People just being introduced to LINQ will find Query much more comfortable to read.</p> http://stackoverflow.com/questions/206924/how-do-you-develop-java-servlets-using-eclipse/206931#206931 0 Answer by ShaneB for How do you develop Java Servlets using Eclipse? ShaneB 2008-10-15T23:46:59Z 2008-10-15T23:46:59Z <p>I use Eclipse Java EE edition</p> <p>Create a "Dynamic Web Project"</p> <p>Install a local server in the server view, for the version of Tomcat I'm using. Then debug, and run on that server for testing.</p> <p>When I deploy I export the project to a war file.</p> http://stackoverflow.com/questions/189209/do-you-really-use-your-reverse-domain-for-package-naming-in-java/189229#189229 1 Answer by ShaneB for Do you really use your reverse domain for package naming in java? ShaneB 2008-10-09T21:10:21Z 2008-10-09T21:10:21Z <p>I do this for all my projects, I've even taken it across to my .NET applications for namespaces.</p> http://stackoverflow.com/questions/186128/what-to-do-if-i-dont-have-visual-basic-6-0-and-need-to-compile-a-vb6-project/186154#186154 8 Answer by ShaneB for What to do if I don't have Visual Basic 6.0 and need to compile a VB6 project? ShaneB 2008-10-09T06:34:26Z 2008-10-09T06:34:26Z <p>From what I recall the Visual Studio 6.0 is available for MSDN Subscribers.</p> http://stackoverflow.com/questions/137469/can-you-and-should-you-straddle-both-worlds-linux-and-windows/137507#137507 0 Answer by ShaneB for Can you (and should you) straddle both worlds (Linux and Windows) ShaneB 2008-09-26T02:59:20Z 2008-09-26T02:59:20Z <p>I think that in general having a broader base of knowledge will pay off in the long run. While it is good to specialize, continuing to understand several different languages and various operating system enviroments will continue to benefit you in the long term.</p> <p>If you ever find yourself in desperate need of work, being extremely felixable and knowledgable in all aspects will give you an edge for any prospective employer.</p> <p>Myself personally for work spend most of my time in VisualStudio with C# and MSSQL. When I have some spare time at home, I'm usually in Eclipse, developing using Java and MySQL.</p> http://stackoverflow.com/questions/107123/how-to-install-delphi-7-on-vista/107212#107212 5 Answer by ShaneB for How to install Delphi 7 on Vista ShaneB 2008-09-20T05:17:27Z 2008-09-20T05:17:27Z <p>For installing Delphi 7 in Vista, you can try this patch from Microsoft.</p> <p><a href="http://support.microsoft.com/default.aspx/kb/932246" rel="nofollow">http://support.microsoft.com/default.aspx/kb/932246</a></p> <p>As for the rest someone else I suspect will have more knowledge.</p> http://stackoverflow.com/questions/99743/what-are-some-decent-isps-that-host-subversion/99780#99780 8 Answer by ShaneB for What Are Some Decent ISPs That Host Subversion ShaneB 2008-09-19T05:04:09Z 2008-09-19T05:04:09Z <p>What's your price range? Do you want a straght SVN provider or do you want to host a website too?</p> <p>For Straight SVN Hosting Check out</p> <p><a href="http://cvsdude.com/" rel="nofollow">http://cvsdude.com/</a></p> <p><a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a></p> <p>Only Hosting provider I can think of with SVN support (outside of a VPS provider) would be</p> <p><a href="http://www.dreamhost.com" rel="nofollow">http://www.dreamhost.com</a></p> http://stackoverflow.com/questions/98768/should-i-impose-a-maximum-length-on-passwords/98783#98783 1 Answer by ShaneB for Should I impose a maximum length on passwords? ShaneB 2008-09-19T01:51:46Z 2008-09-19T01:51:46Z <p>Storage is cheap, why limit the password length. Even if you're encrypting the password as opposed to just hashing it a 64 character string isn't going to take much more than a 6 character string to encrypt.</p> <p>Chances are the bank system is overlaying an older system so they were only able to allow a certain amount of space for the password.</p> http://stackoverflow.com/questions/89574/which-language-is-most-like-php/89624#89624 0 Answer by ShaneB for Which language is most like PHP? ShaneB 2008-09-18T02:59:14Z 2008-09-18T02:59:14Z <blockquote> <p>(possibly for my overall lack of interest)</p> </blockquote> <p>That could be the problem with any language. I know learning C++ was very mind numbing since all you're really doing early on is console applications.</p> <p>I would say ignore the language for now. Try some frameworks, try out RubyOnRails and try out Django.</p> http://stackoverflow.com/questions/87676/whats-the-best-way-to-manipulate-dates-and-timestamps-in-java/87838#87838 1 Answer by ShaneB for What's the best way to manipulate Dates and Timestamps in Java? ShaneB 2008-09-17T21:26:25Z 2008-09-17T21:26:25Z <p>The thing that always gets me with Java is the date time library. I've never used Joda, just briefly look at it, looks like its a pretty good implementation, and if I understand JSR-130 correctly its taking knowledge from Joda and eventually having it included in JavaSE.</p> <p>Quite often for past projects I've wrapped the Java date time objects, which in itself was quite a task. Then used the wrappers for date manipulation.</p> http://stackoverflow.com/questions/87153/what-is-a-realistic-starting-salary-for-a-c-programmer/87314#87314 0 Answer by ShaneB for What is a realistic starting salary for a C# programmer? ShaneB 2008-09-17T20:32:02Z 2008-09-17T20:32:02Z <p>Your region will have the biggest impact on earning potential, right along with knowledge.</p> <p>I looked at your profile and see you are in Toronto. Have a look at this Website</p> <p><a href="http://www.labourmarketinformation.ca/standard.asp?ppid=43&amp;lcode=E" rel="nofollow">http://www.labourmarketinformation.ca/standard.asp?ppid=43&amp;lcode=E</a></p> <p>You'll pretty much be on the low end. I know here in Vancouver the average wage for a Jr Programmer will starts around 30,000-35,000.</p> http://stackoverflow.com/questions/79350/what-open-source-virtual-private-server-program-do-you-recommend-with-windows-as/79522#79522 0 Answer by ShaneB for What open source virtual private server program do you recommend with windows as host ShaneB 2008-09-17T03:02:29Z 2008-09-17T03:02:29Z <p>If you're going to run 4 virtual servers all of which are going to be linux flavours why wouldn't you run the host in a linux as well?</p> <p>If for what ever reason you have to use a Windows box, I would say grab 2003 32bit the signed drivers are really only a problem on 2008, but even in 2003 I can't really recommend 64bit unless there is a pressing requirement (like Exchange 2007)</p> http://stackoverflow.com/questions/77957/visual-studio-keeps-adding-blank-lines/78486#78486 0 Answer by ShaneB for Visual Studio keeps adding blank lines ShaneB 2008-09-16T23:58:09Z 2008-09-16T23:58:09Z <p>I can't say I've ever experience this with any Visual Studio yet, but try this</p> <p><strong>Ctrl-E, D</strong> command will automatically reformat the document. (Assuming C# Development Enviroment)</p> <p><strong>Ctrl-K, Ctrl-D</strong> for Web Development Enviroment</p> <p>If the document remains as it is with the incorrect spacing then the auto format is the problem. Simple disable the auto-format inside <strong>Options</strong>-><strong>Text Editors</strong>-><strong>HTML</strong>-><strong>Formatting</strong></p> http://stackoverflow.com/questions/76934/how-important-is-a-database-in-managing-information/77231#77231 1 Answer by ShaneB for How important is a database in managing information? ShaneB 2008-09-16T21:17:14Z 2008-09-16T21:17:14Z <p>When it comes to storing images in a database I try to avoid it. In your case from what I can gather of your question there is a possibilty for a subsantial number of fairly large images, so I would probably strong oppose it.</p> <p>If this is a web application I would use a database for quick searching and indexing of images using keywords and other parameters. Then have a column pointing to the location of the image in a filesystem if possible with some kind of folder structure to help further decrease the image load time.</p> <p>If you need greater security due to the directory being available (network share) and the application is local then you should probably bite the bullet and store the images in the database.</p> http://stackoverflow.com/questions/1076820/warning-sessions-permission-denied-headers-already-sent-in-php Comment by ShaneB on Warning: Sessions Permission Denied/Headers Already Sent in PHP ShaneB 2009-07-02T23:40:04Z 2009-07-02T23:40:04Z Can you give some details as to what server setup you're using? Since this message only appears on remote connections not on your local pc. http://stackoverflow.com/questions/1076820/warning-sessions-permission-denied-headers-already-sent-in-php/1076863#1076863 Comment by ShaneB on Warning: Sessions Permission Denied/Headers Already Sent in PHP ShaneB 2009-07-02T22:08:47Z 2009-07-02T22:08:47Z It's not the page that its trying to write to, PHP stores all session information in a folder structure defined in INI under session.save_path. Regardless of what information is being stored in the session a file will be created. The permission problem is the first error followed by the second error which seems to be due to the first. http://stackoverflow.com/questions/254324/copying-entities-between-multiple-databases-with-nhibernate/259516#259516 Comment by ShaneB on Copying entities between multiple databases with NHibernate ShaneB 2009-04-30T05:57:18Z 2009-04-30T05:57:18Z Finally found this solution, I was having a similar problem. I suppose it didn't help that hibernate site was currently down. http://stackoverflow.com/questions/562044/how-to-connect-to-mysql-from-a-jsp/562047#562047 Comment by ShaneB on How to connect to MySQL from a JSP? ShaneB 2009-02-18T17:40:07Z 2009-02-18T17:40:07Z you want to place the mysql connector jar file in there http://stackoverflow.com/questions/551652/cannot-access-http-localhost3000 Comment by ShaneB on Cannot access http://localhost:3000 ShaneB 2009-02-15T21:52:05Z 2009-02-15T21:52:05Z Are you running any kind of 3rd party firewall? I had a similar issue arise with AVG Internet Security and Apache. http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431185#431185 Comment by ShaneB on What was your first computer game that got you interested in computers? ShaneB 2009-01-20T03:34:33Z 2009-01-20T03:34:33Z @Slace I wish I was that lucky, I spent several hours getting files from M$ to run the editor in Windows 3.11 http://stackoverflow.com/questions/380081/trustworthy-developers-writing-about-both-java-and-net/380085#380085 Comment by ShaneB on Trustworthy developers writing about both Java and .NET? ShaneB 2008-12-19T06:43:56Z 2008-12-19T06:43:56Z I've spent alot of time in both languages and I have really enjoy reading anything by Fowler. http://stackoverflow.com/questions/230510/homework-on-stackoverflow/230539#230539 Comment by ShaneB on Homework on StackOverflow ShaneB 2008-10-23T22:05:45Z 2008-10-23T22:05:45Z I can understand that, so long as the user who posed the question wouldn't get critizied for a homework question, despite the tag being added by another user. http://stackoverflow.com/questions/230510/homework-on-stackoverflow/230539#230539 Comment by ShaneB on Homework on StackOverflow ShaneB 2008-10-23T18:58:12Z 2008-10-23T18:58:12Z I think once the person posing the question has admitted that it is a homework question the tag can be added. http://stackoverflow.com/questions/224748/jsp-custom-tag-library-unable-to-find-setter-method-for-the-attribute/224911#224911 Comment by ShaneB on JSP custom tag library (Unable to find setter method for the attribute) ShaneB 2008-10-23T05:41:53Z 2008-10-23T05:41:53Z guess I was a little slow updating my response to your last question. <a href="http://stackoverflow.com/questions/224637/jsp-custom-tag-library-passing-attributes#224690" rel="nofollow" title="jsp custom tag library passing attributes%23224690">stackoverflow.com/questions/224637/&hellip;</a> http://stackoverflow.com/questions/224637/jsp-custom-tag-library-passing-attributes Comment by ShaneB on JSP custom tag library (Passing Attributes) ShaneB 2008-10-22T15:04:14Z 2008-10-22T15:04:14Z If you're still having problems maybe throw up some code samples. http://stackoverflow.com/questions/205711/linq-external-mapping-to-class-library/205719#205719 Comment by ShaneB on LINQ External Mapping to Class Library ShaneB 2008-10-15T17:59:02Z 2008-10-15T17:59:02Z Thanks, as soon as I declare an object with the type it works, strange it wouldn't take it from my Table&lt;Material&gt; decleration in the program.