User Olaf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T19:11:07Zhttp://stackoverflow.com/feeds/user/13447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845912/what-are-the-common-pitfalls-when-starting-a-new-open-source-project/1853321#18533211Answer by Olaf for What are the common pitfalls when starting a new open-source project?Olaf2009-12-05T20:16:23Z2009-12-05T20:16:23Z<p>Choosing the wrong license (for different values of 'wrong') is a common pitfall. Two examples:</p>
<p>1.) If you're using a license that does not allow for relicensing under different terms <em>and</em> you accept contributors code, you need to keep in mind that the code suddenly is not <em>yours</em> anymore. This is fine for some hobby project, but might limit your commercial options later. Of course, it also limits other's commercial options too.</p>
<p>An example for this is the GPL. Include contributed code under this license and you're bound to the GPL yourself and can't decide to dual-license later (unless you nail this down for every contributor). Even a simple change of the license to a similar OpenSource license is impossible: See the linux kernel - it's bound to GPL V2 and can't be updated to GPL V3.</p>
<p>2.) If you're using a permissive license (e. g. Apache, MIT, BSD) you need to keep in mind that not only you can go commercial and close the code later, but anybody else can do so too.</p>
<p>Don't get me wrong: I like the GPL, I'm happily contributing to GPL projects and am glad that these projects exist. I also like BSD, Apache, MIT (the permissive ones) and am contributing to projects that others exploit commercially, e.g. through "Enterprise Editions" of the software that I'm getting OpenSource. It's all fair game - you just have to be sure what options you want to have later. None is better, they're just different.</p>
http://stackoverflow.com/questions/1822268/how-do-i-create-my-own-wildcard-certificate-on-linux/1822279#18222791Answer by Olaf for How do I create my own wildcard certificate on Linux?Olaf2009-11-30T20:45:04Z2009-11-30T21:00:00Z<p>Just follow <a href="http://www.openssl.org/docs/HOWTO/certificates.txt" rel="nofollow">one</a> of the <a href="http://www.dylanbeattie.net/docs/openssl%5Fiis%5Fssl%5Fhowto.html" rel="nofollow">many</a> <a href="http://www.debian-administration.org/articles/618" rel="nofollow">step</a> by step instructions for creating your own certificate with OpenSSL but replace the "Common Name" www.example.com with *.example.com. </p>
<p>Usually you have to keep a bit more money ready to get a certificate for this.</p>
<pre><code>> openssl req -new -x509 -keyout cert.pem -out cert.pem -days 365 -nodes
Country Name (2 letter code) [AU]:DE
State or Province Name (full name) [Some-State]:Germany
Locality Name (eg, city) []:nameOfYourCity
Organization Name (eg, company) [Internet Widgits Pty Ltd]:nameOfYourCompany
Organizational Unit Name (eg, section) []:nameOfYourDivision
Common Name (eg, YOUR name) []:*.example.com
Email Address []:webmaster@example.com
</code></pre>
<p><em>(Sorry, my favourite howto is a german text that I don't have readily available and can't find currently, thus the 'many' links)</em></p>
http://stackoverflow.com/questions/1811951/can-you-list-some-free-crm-webapps-possibly-in-php-possibly-with-openid-support/1811962#18119620Answer by Olaf for Can you list some free CRM webapps? Possibly in PHP, possibly with OpenID support.Olaf2009-11-28T08:16:26Z2009-11-28T08:16:26Z<p>Have you seen the answers to "<a href="http://stackoverflow.com/questions/98018/which-php-open-source-crm-should-i-use">Which PHP open source CRM should I use?</a>"? It's the first entry under "related" - you might want to search the other questions there too to get more detail about the usability or technical problems with the varying solutions. </p>
<p>It seems almost all recommendations boil down to SugarCRM...</p>
http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance/1799541#17995410Answer by Olaf for When should and shouldn't you break away from OOP for speed/performance?Olaf2009-11-25T19:54:47Z2009-11-25T19:54:47Z<p>There's a <a href="http://stackoverflow.com/questions/474714/what-optimizations-should-be-done-early/474749">similar question "What optimizations should be done early?"</a>, you'll find <a href="http://stackoverflow.com/questions/474714/what-optimizations-should-be-done-early/474749#474749">my thoughts</a> on this topic there.</p>
http://stackoverflow.com/questions/103564/the-performance-impact-of-using-instanceof-in-java/103642#1036426Answer by Olaf for The performance impact of using instanceof in JavaOlaf2008-09-19T16:51:00Z2009-11-17T10:20:27Z<p>Answering your very last question: Unless a profiler tells you, that you spend ridiculous amounts of time in an instanceof: Yes, you're nitpicking.</p>
<p>Before wondering about optimizing something that never needed to be optimized: Write your algorithm in the most readable way and run it. Run it, until the jit-compiler gets a chance to optimize it itself. If you then have problems with this piece of code, use a profiler to tell you, where to gain the most and optimize this.</p>
<p>In times of highly optimizing compilers, your guesses about bottlenecks will be likely to be completely wrong.</p>
<p>And in true spirit of this answer (which I wholeheartly believe): I absolutely don't know how instanceof and == relate once the jit-compiler got a chance to optimize it.</p>
<p>I forgot: Never measure the first run.</p>
http://stackoverflow.com/questions/1736840/what-is-the-benefit-of-using-a-document-oriented-dbms/1737029#17370293Answer by Olaf for What is the benefit of using a "document-oriented DBMS"?Olaf2009-11-15T08:55:37Z2009-11-15T08:55:37Z<p>I enjoyed listening to the <a href="http://twit.tv/floss36" rel="nofollow">floss weekly episode</a> about CouchDB. Lots of reasoning and ideas there. </p>
<p>Prior to listening, most of the stuff I read about this topic triggered not much insight (for me). Listening to people talking and reasoning about why&where you want to use document-oriented DBs helped me a lot to really get the concepts, reasoning, pros and cons. Now all the articles and statements (IMHO) suddenly make a lot more sense. </p>
<p>Your mileage may vary, but this helped me a lot.</p>
http://stackoverflow.com/questions/1727668/http-status-408-error-during-login-with-domain-forwarding-set-up/1727743#17277433Answer by Olaf for HTTP Status 408 error during login with domain forwarding set upOlaf2009-11-13T07:44:43Z2009-11-14T12:49:22Z<p>When I visited the site I've seen that the session cookie was not immediately set - not even after the first login attempt.</p>
<p>I guess that there's something wrong with the start of a session.</p>
<p>As "forwarding" is done through a frame that masks your site, I'd suggest to stop this: it obfuscates quite a bit of what happens. Either get correct DNS resolution, use mod_jk or similar to serve tomcat content through apache or just redirect people to directly use the IP. This will most likely get rid of your problems (I've never seen them in this scenario). In case of using the IP directly it results in an ugly URL, so correct DNS resolution should be what you aim for. </p>
<p><strong>Edit:</strong> Don't know if you already do this: Keep in mind that - using j_security_check - you can't just provide the login form to the user but need to rely on tomcat to present it (AFAIK). Therefor your page <a href="http://59.176.19.181:8080/personalcredit/loans.htm" rel="nofollow">http://59.176.19.181:8080/personalcredit/loans.htm</a> (which is the first page shown) is not supposed to have the login form on it, instead the page has to be declared as protected, so that tomcat by itself provides the configured login page to the user. If loans.htm was not declared protected, there was no reason for tomcat to start a new session which would explain the observed behaviour.</p>
<p>It wouldn't explain the nondeterminism though.</p>
http://stackoverflow.com/questions/1534832/liferay-web-guest-home/1653742#16537420Answer by Olaf for Liferay /web/guest/homeOlaf2009-10-31T08:04:30Z2009-10-31T08:04:30Z<p>Is is <em>all</em> links or <em>some</em>?</p>
<p>If you're talking about web content, where you set the links yourself, it might be that you've created links to "web/guest/home" instead of "/web/guest/home" - I guess this could lead to links relative to the current page.</p>
<p>Otherwise, if the problem still persists, please provide more details about what links link to /web/guest/web/guest/home. </p>
<p>As this has been open for quite some time: I guess the <a href="http://www.liferay.com/web/guest/community/forums" rel="nofollow">liferay forums</a> would provide a quicker answer for this kind of question. If you've got the answer there, please post a link here.</p>
http://stackoverflow.com/questions/1531319/how-to-access-same-session-in-two-websites/1593567#15935673Answer by Olaf for How to access same Session in two websites?Olaf2009-10-20T09:58:00Z2009-10-27T20:19:42Z<p>You can't access the same "session" from completely different servers. </p>
<p>From what you describe you just need to use the same login, e.g. you don't want to provide your credentials again. This is, as dove answered, done with a <a href="http://en.wikipedia.org/wiki/Single%5Fsign-on" rel="nofollow">Single Sign On</a> solution. The Wikipedia article contains a lot of useful links.</p>
<p>Usually you use a third party service (that you also can provide yourself, you don't need anybody for this) and some redirects between the different servers in order to get some kind of certification of the identity of the user. </p>
<p>Basically OpenID, e.g. used here on stackoverflow, is a solution to the same problem, though you usually don't have implicit login - you need to explicitly log in.</p>
<p>If you control both participating servers as well as the authenticating "third party" (which may in fact be part of one of the two servers) you should be able to provide some implicit login easily.</p>
<p>Be aware of possible privacy issues though, if the sites don't obviously belong together. People might feel alienated if you proactively shared their identity if they don't recognize that both servers belong to the same entity.</p>
http://stackoverflow.com/questions/1271091/liferay-serve-static-content/1404239#14042390Answer by Olaf for Liferay - Serve static contentOlaf2009-09-10T09:17:09Z2009-10-23T20:07:01Z<p>Edit: I think I've misread your question when answering this - I'll leave the answer here just in case somebody else finds this question and has some static content requirements different from yours. Peter and Miguel give answers that better match your specific question)</p>
<p><hr /></p>
<p>An easy way might be to leverage liferays <a href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Content+Delivery+Network" rel="nofollow">cdn features</a> (cdn="Content Delivery Network"). Unfortunately - on a quick scan through the documentation - I've only found this configuration option but missed some information about what content is considered "static". That's not to say that the information isn't there - I just didn't find it.</p>
<p>I guess that - even though a cdn implies a different hostname - you might get away with the same host name and possibly another webapplication context path (e.g. the path on your server). You can deploy any number of independent applications within the server serving liferay.</p>
<p>Especially when you want to single out static content to a different host/application, you might be better of with a dedicated server (or at least dns name) or the apache/tomcat conbination, as apache reportedly serves static content with a lot less resources than tomcat does.</p>
http://stackoverflow.com/questions/1470745/liferay-portlet-issue/1615593#16155930Answer by Olaf for Liferay Portlet IssueOlaf2009-10-23T20:00:48Z2009-10-23T20:00:48Z<p>I don't know if anything important changed in these versions, but you say you're using Liferay 5.1.2 with the plugin environment 5.2.2 - try with matching versions - at least on the second digit.</p>
<p>also, make sure that all required files are available - among them are WEB-INF/web.xml, WEB-INF/portlet.xml.</p>
<p>Create a new sample portlet with "create.bat" in the plugin SDK's portlet folder and deploy this - it should succeed. Then make sure that all config files from the new one are present in your current one.</p>
<p>How did you create your current portlet? What did you do/change?</p>
http://stackoverflow.com/questions/1593790/prolem-generating-word-document-from-liferay-portlet/1596339#15963390Answer by Olaf for Prolem generating word document from liferay portlet.Olaf2009-10-20T18:04:37Z2009-10-21T19:43:06Z<p>Portlets are supposed to generate snippets of HTML code and stream them to the output stream - so it depends where & when you grab the output stream. It might be that there's already some other HTML (from the theme or another portlet) that has been sent through that stream. Obviously you can't add a word document in the middle of another (html) document.</p>
<p>Please post either the full method or even the whole portlet class where you are refering to the output stream. Is it during action- or render-phase or at a resource-serving method? In a servlet?</p>
<p><strong>Edit</strong>: Sorry, with your addition it doesn't become much clearer - there are several topics mixed up. First: Portlets don't have any notion of a button and an ActionListener, so you seem to be utilizing some framework. Even more so some actual code (and context) would be beneficial.</p>
<p>Most important: Keep in mind that <em>you can't just grab an OutputStream and send some Word document to it</em>: Usually portlets are supposed to generate some well-formed HTML snippet, as the output is embedded in a page constructed elsewhere. Read about "portlet resource serving" to learn more about the mechanics when you want to generate content that's not HTML. The fact that you write some report to the output stream and then try to use the same stream to merge some velocity template suggests that something is fundamentally wrong in your example code description.</p>
<p>Some additional hints: Perhaps it's easier to write "just" a servlet. When you're generating a Word document for download it's not necessary to implement a portlet (as it will "just" generate a word document). Once you get this to work you could add the portlet boilerplate, but it might be easier in this environment. Plus, when you're serving a Word document you probably want to set Mimetype and some other metadata (filename, force "download", maybe cache-control headers), so you wouldn't "just" stream the word document to the OutputStream. Maybe the code that you have to use does this, maybe not... hope you know...</p>
http://stackoverflow.com/questions/1556875/java-or-django-for-liferay/1596388#15963881Answer by Olaf for Java or Django for Liferay?Olaf2009-10-20T18:12:10Z2009-10-20T18:12:10Z<p>Others have already answered that Liferay is a Java application. Let me add that there are definitely numerous ways to utilize other languages to customize liferay. </p>
<p>However, as you ask about what language to learn first be warned that a portal container is not the easiest environment to learn and - in addition to the language - you'll have to learn a great deal about the specifications implemented, the coding style and other used frameworks. </p>
<p>In code size, Liferay is huge. If you start to learn one of the two languages there are two aspects:</p>
<ul>
<li>Regarding Liferay, support in the forums on <a href="http://www.liferay.com" rel="nofollow">www.liferay.com</a> is best in Java, I've rarely seen support for other languages (neither questions nor answers)</li>
<li>Regarding your personal learning curve: If you're working closely together with django folks you might get better support for them in django.</li>
</ul>
<p>Basically: You have to decide for yourself. Learning a new language <em>and</em> a new framework/server/environment is tough.</p>
http://stackoverflow.com/questions/1570792/where-can-i-find-information-on-how-to-customize-the-user-registration-process-of/1596315#15963151Answer by Olaf for Where can I find information on how to customize the user registration process of Liferay + Sun Web Space PortalOlaf2009-10-20T18:01:19Z2009-10-20T18:01:19Z<p>There are several possibilities:</p>
<ul>
<li>The source is available, so you might want to patch the existing process</li>
<li>The API is available (e.g. <a href="http://www.liferay.com/web/guest/community/forums/-/message%5Fboards/message/1371084" rel="nofollow">see this thread in the liferay forum</a>), so you can batch-create users or implement your own registration portlet and just use the API. AFAIK you can even register users via a webservice interface.</li>
<li>You can batch-insert users into the database</li>
<li>If your existing user data is stored in LDAP, you can connect Liferay to the database.</li>
</ul>
http://stackoverflow.com/questions/1221361/how-to-create-liferay-theme-from-scratch/1376042#13760423Answer by Olaf for How to create liferay theme from scratch?Olaf2009-09-03T21:21:55Z2009-09-10T08:54:40Z<p>The <a href="http://www.liferay.com/web/guest/downloads/additional" rel="nofollow">liferay plugins SDK</a> is a good environment for developing themes. The <a href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Themes#section-Themes-DevelopingATheme" rel="nofollow">Liferay Wiki</a> has some quick start information about how to use it, also about how to configure liferay to be able to edit the theme "in place". The <a href="http://www.liferay.com/web/guest/community/documentation/5%5F2" rel="nofollow">documentation</a> (especially the development documentation, even if it's for 5.1) has more in depth information.</p>
<p>There are Ant Scripts that come with the Plugins SDK that create the *.war file for you. They also do a good job separating your changes from the default theme of/in liferay (as your changes are stored in a "diff" folder, thus easily identifiable. When defaults change, you may need to adapt your changes, but you know exactly what parts you have changed.</p>
http://stackoverflow.com/questions/842791/mysql-duplicating-data-vs-join/842835#8428352Answer by Olaf for MySQL: duplicating data vs. joinOlaf2009-05-09T06:49:54Z2009-05-09T06:49:54Z<blockquote>
<p>which would be more efficient?</p>
</blockquote>
<p>Simply said (perhaps too simple): You're trading memory for cpu cycles - which may lead to worse cacheability and take down performance. </p>
<p>The only way to answer your question correctly is to take <em>your environment</em> and measure performance. Make sure to include "correctly" indexed tables. Create a realistic load to the database - e.g. make sure that you don't hit the cache for the same rows over and over again.</p>
<p>Ask yourself upfront if from what performance gain (1%, 10%, 100%) it's worth to start denormalizing. </p>
http://stackoverflow.com/questions/771011/what-are-the-pros-and-cons-of-automated-unit-tests-vs-automated-integration-tests/821996#8219961Answer by Olaf for What are the pros and cons of automated Unit Tests vs automated Integration tests?Olaf2009-05-04T20:49:35Z2009-05-04T20:49:35Z<p>You might be interested in <a href="http://stackoverflow.com/questions/176267/why-should-i-both-unit-test-and-web-test-instead-of-just-web-test/558324#558324">this question and the related answers</a> too. You can find my addition to the answers that were already given here there (is this correct english? :)</p>
http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/764996#7649962Answer by Olaf for Apache/Tomcat error - wrong pages being deliveredOlaf2009-04-19T07:06:09Z2009-04-19T07:06:09Z<p>8 updates of the question later one more issue to use to test/reproduce, albeit it might be difficult (or expensive) for public sites.</p>
<p>You could enable https on the sites. This would at least wipe out any other proxies caches along the way. It'd be bad to see that there are some forgotten loadbalancers or company caches on the way that interfere with your traffic.</p>
<p>For public sites this would imply trusted certificates on the keys, so some money will be involved. For testing self-signed keys might suffice. Also, check that there's no transparent proxy involved that decrypts and reencrypts the traffic. (they are easily detectable, as they can't use the same certificate/key as the original server)</p>
http://stackoverflow.com/questions/546534/liferay-how-to-avoid-rebuilding-redeploying-css-files/753839#7538391Answer by Olaf for Liferay: how to avoid rebuilding/redeploying CSS filesOlaf2009-04-15T21:37:17Z2009-04-15T21:37:17Z<p>Just for completeness, as this question is somewhat old and the problem already solved: There's a lot more along these lines, e.g. javascript, layouts etc. that can be used uncached. This is documented in either the <a href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Liferay%2BDeveloper%2BMode" rel="nofollow">Liferay Wiki (as Developler Mode)</a> or the Development Guide, available from the <a href="http://www.liferay.com/web/guest/community/documentation/5%5F2" rel="nofollow">documentation site</a> (though currently it's not there for the last version - if it's still not there when you're reading it, look for it (PDF) in the older versions.</p>
<p>It's advisable to use these settings only in development, not in production, as putting all css and javascript in as few files as possible results in a huge performance impact.</p>
http://stackoverflow.com/questions/480763/limiting-contributed-extension-point-data-between-eclipse-plugins/621778#6217781Answer by Olaf for Limiting contributed extension point data between eclipse pluginsOlaf2009-03-07T12:35:51Z2009-03-07T12:35:51Z<p>Shouldn't A check its license itself and not-override/not-contribute any data (or override with providing identical data) if it is not licensed? Why place the burden of license checking on B when essentially B doesn't care (as it's free).</p>
<p>I'd opt for A to start in a limited mode if the license is not found. You might also - as jamesh suggested - want to give the user the opportunity to provide the license, e.g. with an additional A-UI plugin informing the user about the missing license and offering to license.</p>
http://stackoverflow.com/questions/585368/tomcat-error-when-configuring-for-ldap/621766#6217660Answer by Olaf for Tomcat error when configuring for LDAPOlaf2009-03-07T12:25:21Z2009-03-07T12:25:21Z<ul>
<li>Many of tomcats config elements support the <em>debug</em> attribute. Try adding <em>debug="99"</em> to the realm configuration. (see the examples in tomcats <a href="http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html" rel="nofollow">realm-howto</a>, search for <em>debug="99"</em>)</li>
<li>make extra <em>extra</em> sure it's not a typo, e.g. in capitalization of connectionURL </li>
<li>see if there's any other mentioning of "localhost" (or "127.0") in conf/server.xml</li>
<li>see if there's any mentioning of "localhost" (or "127.0") in conf/*/*/*.xml (though that shouldn't cause tomcat not to start: it'd just affect that application)</li>
<li>Start with a minimal server.xml - if you use tomcat 5.x a file "server-minimal.xml" was delivered that's way better readable than the default server.xml</li>
<li>Make sure that you're not affected by the various xml comments in server.xml - I've got bitten by them multiple times.</li>
</ul>
http://stackoverflow.com/questions/613514/tomcat-service-quotes-in-wrapper-conf/621752#6217520Answer by Olaf for Tomcat service: quotes in wrapper.confOlaf2009-03-07T12:08:26Z2009-03-07T12:08:26Z<p>If you're still looking for another solution, I'd have shot for tomcat6w.exe, the dialog application to configure a windows service (available in tomcats bin directory). I believe there's some options available to set jvm parameters as you said. These options will go to the registry, configuring the service.</p>
http://stackoverflow.com/questions/617509/how-can-i-redirect-my-web-pages-using-htaccess-so-old-links-are-redirected-to-ne/619953#6199531Answer by Olaf for How can I redirect my web pages using .htaccess so old links are redirected to new ones?Olaf2009-03-06T18:40:12Z2009-03-06T18:46:59Z<p>If you're just changing parts of the URL, e.g. directories, you can use</p>
<pre><code>RedirectMatch ^/oldPath/(.*) http://www.example.com/newPath/$1
</code></pre>
<p>(might work with relative urls, not tested...)</p>
<p>If the document names also change you either have to figure out an algorithm to translate or place one redirection for each url you want to redirect. Depending on the number of documents you could do the non-magical and completely uncool</p>
<pre><code>RedirectMatch ^/dir/first_document.html /newdir/first+document.html
RedirectMatch ^/dir/second_document.html /newdir/second+document.html
RedirectMatch ^/dir/third_document.html /newdir/third+document.html
</code></pre>
<p>Some Regexp wizard probably can add regexps for all numbers of underscores to be translated to plusses, but <em>I</em>'ll leave that open ;)</p>
<p>If that's too much, you don't actually need to rewrite, you could also opt for a 404 error document, e.g.</p>
<pre><code>ErrorDocument 404 /redirect.php (or .jsp, .asp, .whatever)
</code></pre>
<p>Then use that script to lookup the original request url and use your favourite scripting/programming language to translate old urls to new urls (examine the request headers to figure out what the original URL is named. In PHP place in the error document (don't forget to remove it in production version) and find the original URL header in the request. Then send a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.2" rel="nofollow">301 Moved Permanently</a> Response with the new URL.</p>
http://stackoverflow.com/questions/616055/https-certificate-for-internal-use/616251#6162513Answer by Olaf for HTTPS Certificate for internal useOlaf2009-03-05T19:23:22Z2009-03-05T19:23:22Z<p>You'd have to ask the typical cert people for that. For ease of use I'd get with the FQDN though, you might use a subdomain to your already registered one: https://mybox.example.com</p>
<p>Also you might want to look at wildcard certificates, providing a blanket cert for (e.g.) https://*.example.com/ - even usable for virtual hosting, should you need more than just this one cert.</p>
<p>Certifying sub- or sub-sub domains of FQDN <em>should</em> be standard business - maybe not for the point&click big guys that proud themselves to provide the certificates in just 2 minutes.</p>
<p>In short: To make the cert trusted by a workstation you'd have to either </p>
<ul>
<li>change settings on the workstations (which you don't want) or</li>
<li>use an already trusted party to sign your key (which you're looking for a way around).</li>
</ul>
<p>That's <em>all</em> your choices. Choose your poison.</p>
http://stackoverflow.com/questions/616183/what-would-you-like-to-find-when-inheriting-a-project/616222#6162220Answer by Olaf for What would you like to find when inheriting a project?Olaf2009-03-05T19:15:47Z2009-03-05T19:15:47Z<p>If your bosses or colleagues also care about you leaving a clean environment, explain high level architecture and key elements to them in front of a whiteboard/flipchart and get the session filmed. If there is some Q&A involved by people who are new to the project, they might ask exactly the questions that other newcomers might ask.</p>
<p>This way you know your audience (it's sitting in front of you) and demonstrate best will to get (in my eyes) usable documentation out for the next person.</p>
http://stackoverflow.com/questions/616064/jsp-tag-lifecycle/616180#6161801Answer by Olaf for JSP tag lifecycle Olaf2009-03-05T19:08:34Z2009-03-05T19:08:34Z<p>You answered the question yourself - it's pooled. See the <a href="http://java.sun.com/products/jsp/tutorial/TagLibraries8.html" rel="nofollow">tag tutorial</a> for what to implement in java implementations, together with the page linked from there, containing the <a href="http://java.sun.com/products/jsp/tutorial/TagLibraries18.html#62842" rel="nofollow">invocation sequence</a>:</p>
<pre><code>ATag t = new ATag();
t.setPageContext(...);
t.setParent(...);
t.setAttribute1(value1);
t.setAttribute2(value2);
t.doStartTag();
t.doEndTag();
t.release();
</code></pre>
<p>That is, re-initialize your tag instance in <em>release()</em></p>
<p>Note that pooling probably is container dependent.</p>
http://stackoverflow.com/questions/613619/why-is-challenge-response-approach-a-poor-solution-for-forgotten-passwords/613690#6136900Answer by Olaf for Why is challenge-response approach a poor solution for forgotten passwords?Olaf2009-03-05T05:44:47Z2009-03-05T05:44:47Z<p>Wouldn't it be easy/feasible to outsource the whole password management just like SO did and use OpenId or similar? Of course this would add another dependency, but you'd trade that against the need to save (and secure) passwords and deal with them as you described.</p>
http://stackoverflow.com/questions/124600/osmotic-communication-vs-closed-off-offices/609696#6096960Answer by Olaf for Osmotic communication -vs- closed-off offices? Olaf2009-03-04T08:27:41Z2009-03-04T08:27:41Z<p>On a "hands on" XP seminar we've experienced 20 people very sceptic about the scenario that all worked (in pairs) in a huge hotel room at the same time. Of course, noise level was way higher than the usual office situation due to questions and the need for the participants to get used to another.</p>
<p>When one pairing session was running out of time, we asked (in loud voices) the participants if they were finished or had more questions. All but one pair recognized this.</p>
<p>We addressed these two people separately in a now quiet room, everybody else watching. They were so involved pairprogramming, that they didn't hear anything around them.</p>
<p>Addressing them multiple times with their names didn't help, until one trainer walked up to them and waved his hand in front of their screen - when they finally came out of their trance. This was an impressive demonstration on how one can wipe out their surroundings.</p>
<p>I won't say that this works for everyone, but keep in mind that the style of work (e.g. solo vs. pairing) can make a big difference. When I'm pairing I personally can cope with a lot more distractions than when working solo.</p>
<p>This doesn't say much about picking up osmotic communication though. I have to say that I personally prefer open environments with the occasional opportunity to get to a private space - depending on daily needs.</p>
http://stackoverflow.com/questions/607165/how-to-execute-a-function-immediately-after-authentication/607179#6071791Answer by Olaf for How to execute a function immediately after authenticationOlaf2009-03-03T16:43:26Z2009-03-03T16:43:26Z<p>If you use serverside sessions:</p>
<ul>
<li>Create a servlet filter</li>
<li>In the filter: See if an attribute in the session has been set </li>
<li>If not: Check if user is authenticated and perform your operation if they are. Then set the attribute in the session</li>
</ul>
<p>Thus, the operation will be executed only once.</p>
http://stackoverflow.com/questions/595421/is-unit-testing-of-accessors-a-must/595477#5954772Answer by Olaf for Is unit-testing of accessors a must?Olaf2009-02-27T16:27:41Z2009-02-27T16:27:41Z<p>Our company has both kinds of people and opinions. I'm tending to not testing them specifically, as they are usually</p>
<ul>
<li>automatically generated</li>
<li>tested in the context of another test (e.g. there's some other code making use of these accessors</li>
<li>not containing any code that might break</li>
</ul>
<p>There are exceptions though:</p>
<ul>
<li>When they are not simply generated 'getters' and 'setters'</li>
<li>When they are part of an important API that's just provided for other users and not really tested in the context you're currently in</li>
</ul>
<p>Both these cases <em>might</em> cause me to test them. The first one more than the second.</p>
http://stackoverflow.com/questions/1822268/how-do-i-create-my-own-wildcard-certificate-on-linux/1822279#1822279Comment by Olaf on How do I create my own wildcard certificate on Linux?Olaf2009-12-01T09:00:37Z2009-12-01T09:00:37ZYou can use that on any host. But if the request goes to www.example.net while the certificate is for *.example.com (note the net/com difference) you'll get the usual non-matching-certificate warning. However, you can have a number of different machines, one serving www.example.com, another a.example.com, b.example.com etc. and all machines use the same certificate. It breaks only when you access them with a non-matching domain name.http://stackoverflow.com/questions/1811951/can-you-list-some-free-crm-webapps-possibly-in-php-possibly-with-openid-support/1811962#1811962Comment by Olaf on Can you list some free CRM webapps? Possibly in PHP, possibly with OpenID support.Olaf2009-11-28T12:35:01Z2009-11-28T12:35:01ZSo which of your criteria would you waive first in order to broaden the field? I guess CRM is set - which of the others could you do without?http://stackoverflow.com/questions/267738/enabling-https-for-java-webstart/269909#269909Comment by Olaf on Enabling https for Java Webstart Olaf2009-11-26T07:57:45Z2009-11-26T07:57:45Zright, but can be more detailed: Enabling https protects the transmission of the code from eavesdroppers and make sure, that it came from the expected server. Signing the jars makes sure, that the transmitted code is the code that the signer expected to be transmitted to the client. Just using https means that the wrong code came from the correct server, just signing the jars means that the transmission can be listened to by "men in the middle", though not altered. Another can of worms can be opened when the application, once running, transmits data to the server it came from.http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance/1799504#1799504Comment by Olaf on When should and shouldn't you break away from OOP for speed/performance?Olaf2009-11-25T20:00:47Z2009-11-25T20:00:47ZIn the absense of a JIT compiler they could also be inlined by some deployment tool that knows all of the code to be deployed (not knowing if such a beast exists for Android. If it doesn't, it might be created soon). Usually you need only a small bit of polymorphism when all of the code involved is known.http://stackoverflow.com/questions/734785/com-liferay-util-pwdgenerator/734819#734819Comment by Olaf on com.liferay.util.PwdGeneratorOlaf2009-11-22T09:21:02Z2009-11-22T09:21:02ZThis is the correct one, but it needs to be deployed with the portlet itself, as it's not available in the globally available classes. The required jar can easily be found by locating PwdGenerator.java in the liferay source tree. The source is organized by jars on the top levelhttp://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1778202#1778202Comment by Olaf on Java Exceptions, What to catch and what not to?Olaf2009-11-22T09:03:59Z2009-11-22T09:03:59Z+1 for adding domain specific exceptionshttp://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1778202#1778202Comment by Olaf on Java Exceptions, What to catch and what not to?Olaf2009-11-22T09:03:04Z2009-11-22T09:03:04ZI think exceptions and crashes should not be mixed too much. Crashes are fatal, while exceptions might be handled at a higher level. "Ok, Time to crash" is rather "I can't do what I'm supposed to do, so I signal that to my caller". The caller can then decide if there's another way to handle the error condition (e.g. retry, log, show error message, disable menu items, add task to a queue for retry later, ...). No need to call that "crash". Unless there's the classic catch(Exception e){ System.exit(); }http://stackoverflow.com/questions/1750466/subversion-some-other-vcs-git-hg-etc-in-the-same-working-copy/1750712#1750712Comment by Olaf on Subversion + Some other VCS (Git, Hg, etc) in the same working copyOlaf2009-11-18T09:02:01Z2009-11-18T09:02:01ZI understood that the proposed workflow Mr AJL had in mind would rather have more frequent commits to svn (in order to update the test system) than to git/hg/whatever (in order to keep a meaningful commit message history). git-svn works the other way round, e.g. you commit first to git and then batch-commit everything to svn with dcommithttp://stackoverflow.com/questions/1750466/subversion-some-other-vcs-git-hg-etc-in-the-same-working-copy/1750615#1750615Comment by Olaf on Subversion + Some other VCS (Git, Hg, etc) in the same working copyOlaf2009-11-17T21:03:19Z2009-11-17T21:03:19ZThe way I understand the question this answers it perfectly. I understand that the svn commit is necessary to update the test site and commits to the 'private' version control are less frequent in order to contain useful chunks of changes. It gets tricky when you have to update from svn in order to commit to svn and then risk to mix foreign changes and your own in your hg commit. I know that it's possible in git and guess the same holds for hg and bzr.http://stackoverflow.com/questions/659906/how-to-delete-duplicate-records-in-mysql-database/660060#660060Comment by Olaf on How to delete duplicate records in mysql database?Olaf2009-11-17T20:53:26Z2009-11-17T20:53:26ZI've corrected the formatting. Even though you answered how to 'select' the records where nan wanted to 'delete' them, it's way easier readable now and the answer is related to the underlying problem anyway.http://stackoverflow.com/questions/1700518/remote-mysql-database-access/1733662#1733662Comment by Olaf on Remote MYSQL Database AccessOlaf2009-11-16T19:57:40Z2009-11-16T19:57:40Z+1 for the hint that mysql can be configured to listen on localhost only, so that no "GRANT..." and no firewall configuration will help. Has bitten me once.http://stackoverflow.com/questions/1727668/http-status-408-error-during-login-with-domain-forwarding-set-up/1727743#1727743Comment by Olaf on HTTP Status 408 error during login with domain forwarding set upOlaf2009-11-14T12:40:57Z2009-11-14T12:40:57ZBe aware that - if you're running on a unix blend - you need to run tomcat as root in order to bind a port lower than 1024 (or provide other means to allow this binding). Apache usually drops the root privileges right after binding the port, tomcat (due to its java nature) can't.
http://stackoverflow.com/questions/1271091/liferay-serve-static-content/1416285#1416285Comment by Olaf on Liferay - Serve static contentOlaf2009-10-23T20:12:51Z2009-10-23T20:12:51Zok - having commented this I see that you answered your own question. Never mind. For those also trying this: note that liferay serves some URLs that are not immediately obvious, such as /c/* /html/* /images/* and some more. It's easy to get naming conflicts here.http://stackoverflow.com/questions/1271091/liferay-serve-static-content/1416285#1416285Comment by Olaf on Liferay - Serve static contentOlaf2009-10-23T20:09:00Z2009-10-23T20:09:00Zyou can also go without myDir - shortening the URL. I'm not sure if a war file with static content also requires a WEB-INF/web.xml to be picked up by a servlet container, even if there's no servlet contained.http://stackoverflow.com/questions/1593790/prolem-generating-word-document-from-liferay-portlet/1596339#1596339Comment by Olaf on Prolem generating word document from liferay portlet.Olaf2009-10-21T19:43:52Z2009-10-21T19:43:52Zsee my edits. I guess you could edit your own question, right?