Search Results

1
vote

Strong SSL with Tomcat 6

danivo, so long as the server's cert is capable of AES encryption, the level of encryption between the browser and the server is independent of the cert itself -- that level of encryption is negoti …
5
votes

Strong SSL with Tomcat 6

Okie doke, I think I just figured this out. As I said above, the key bit of knowledge is that the cert doesn't matter, so long as it's generated with an algorithm that supports AES 256-bit …
1
vote

What is the best place to store a configuration file in a java web application (war) ?

The answer to this depends on how you intend to read and write that config file. For example, the Spring framework gives you the ability to …
2
votes

Apache and J2EE sharing security realms/logins, single sign-on

Have you already tried to do this and failed? I ask because HTTP Basic authentication takes place purely by adding an HTTP header to a request; that is to say, once you're authenticated against a …
1
vote

How to add /usr/share/java libs to webapp’s classpath?

According to the Tomcat classloading documentation, you need to put any shared libs that should be avail …
0
votes

Calling DisplayTag returns NullPointerException

My suspicion is that it's not a DisplayTag issue, it's an issue of the underlying data you're trying to display with DisplayTag. Did you check to make sure that the object referenced by page …