Olaf

3,090
reputation
242 views

Registered User

name Olaf
member for 1 year
seen 12 hours ago
website
location Hamburg/Germany
age
maintaining pebble, a lightweight Java blogging engine.
1d
answered How to disable Liferay portlet cache?
1d
answered Liferay + google openid HOW?
1d
comment Someone please help me with this Web Content Display problem in Liferay..im stuck !
See the answer to your (?) other question here: stackoverflow.com/questions/1918446
1d
answered Newbie Question about Web Content Display and Templates
1d
answered Newbie Question about Web Content Display and Templates
1d
comment Newbie Question about Web Content Display and Templates
You might want to post from a registered account (or register with the one that you're currently using, provided you still got the cookie) so you'll be able to rephrase your question to give more information. I guess this (stackoverflow.com/questions/1919703) is from you too, right?
1d
comment Someone please help me with this Web Content Display problem in Liferay..im stuck !
please elaborate a bit - Web Content is not "minimized" by default... Are you choosing the correct portlet to display web content?
Dec
8
accepted Tomcat error when configuring for LDAP
Dec
6
awarded  Mortarboard
Dec
6
accepted What are the common pitfalls when starting a new open-source project?
Dec
5
answered What are the common pitfalls when starting a new open-source project?
Dec
2
awarded  Nice Answer
Dec
1
accepted How do I create my own wildcard certificate on Linux?
Dec
1
comment How do I create my own wildcard certificate on Linux?
You 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.
Nov
30
revised How do I create my own wildcard certificate on Linux?
links
Nov
30
revised How do I create my own wildcard certificate on Linux?
added openssl lines
Nov
30
answered How do I create my own wildcard certificate on Linux?
Nov
28
comment Can you list some free CRM webapps? Possibly in PHP, possibly with OpenID support.
So 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?
Nov
28
answered Can you list some free CRM webapps? Possibly in PHP, possibly with OpenID support.
Nov
26
comment Enabling https for Java Webstart
right, 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.
Nov
25
answered When should and shouldn’t you break away from OOP for speed/performance?
Nov
23
accepted Liferay /web/guest/home
Nov
22
comment com.liferay.util.PwdGenerator
This 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 level
Nov
22
comment Java Exceptions, What to catch and what not to?
+1 for adding domain specific exceptions
Nov
22
comment Java Exceptions, What to catch and what not to?
I 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(); }
Nov
19
accepted Where can I find information on how to customize the user registration process of Liferay + Sun Web Space Portal
Nov
18
comment Subversion + Some other VCS (Git, Hg, etc) in the same working copy
I 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 dcommit
Nov
17
comment Subversion + Some other VCS (Git, Hg, etc) in the same working copy
The 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.
Nov
17
comment How to delete duplicate records in mysql database?
I'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.
Nov
17
revised How to delete duplicate records in mysql database?
corrected formatting
Nov
17
revised The performance impact of using instanceof in Java
fixed typo
Nov
16
comment Remote MYSQL Database Access
+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.
Nov
15
answered What is the benefit of using a “document-oriented DBMS”?
Nov
14
revised HTTP Status 408 error during login with domain forwarding set up
added 653 characters in body
Nov
14
comment HTTP Status 408 error during login with domain forwarding set up
Be 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.
Nov
14
accepted HTTP Status 408 error during login with domain forwarding set up
Nov
13
answered HTTP Status 408 error during login with domain forwarding set up
Oct
31
answered Liferay /web/guest/home
Oct
27
revised How to access same Session in two websites?
I realized that I used "basically" basically everywhere...
Oct
27
accepted Liferay Portlet Issue
Oct
23
comment Liferay - Serve static content
ok - 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.
Oct
23
comment Liferay - Serve static content
you 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.
Oct
23
revised Liferay - Serve static content
added disclaimer...
Oct
23
answered Liferay Portlet Issue
Oct
21
comment Prolem generating word document from liferay portlet.
see my edits. I guess you could edit your own question, right?
Oct
21
revised Prolem generating word document from liferay portlet.
as marked... added content
Oct
20
answered Java or Django for Liferay?
Oct
20
answered Prolem generating word document from liferay portlet.
Oct
20
answered Where can I find information on how to customize the user registration process of Liferay + Sun Web Space Portal
Oct
20
answered How to access same Session in two websites?