Search Results

0
votes

Where to find Java 6 JSSE/JCE Source Code?

Put Jad on your system path. Install JadClipse plugin for Eclipse. Use the …
0
votes

Elapsed time without considering weekends and bank holidays in Java

As I have mentioned there, probably the best and easiest a …
0
votes

TCP socket timeout configuration

You can introduce your own SocketImplFactory (See static method …
0
votes

structured/combined logging with Log4J

We needed to solve something similar in the past. We have created an enveloped message object holding also metadata about message (e.g. user transaction id) and a custom appender class. In this app …
1
vote

How do I authenticate a user with the “Smart card is required for interactive logon” set?

HTTPS and SSL mutual authentication should be used for this, because client already has at least corporate CA-signed certificate on its smart card stored. When mutual SSL authentication is …
0
votes

Sort ArrayList

Because strings are sorted in a alphabetic ordering and the underscore character is after characters for numbers. You have to provide a comparator implementing "Natural Order" to achieve desired re …
2
votes

importing an existing x509 certificate and private key in Java keystore to use in ActiveMQ ssl context

Believe or not, keytool does not provide such basic functionality like importing private key to keystore. You can try this …
5
votes

How I can disable the second-level cache of some certain entities in Hibernate without changing annotations

You can configure the implementation provider of second level cache to short TTL times and/or to store 0 entries of particular entity type. E.g. if you are using the Ehcache, you can confi …
0
votes

what is the servlet equivalent of Server.MapPath?

You can use method getResourcePaths(String path) from Ser …
2
votes

Why some times Java does not request for new versions of jar files?

This can be problematic to resolve but there is an easy workaround for this. Instead of relying on correct cache-update, just make sure that JAR file names include version / build number of the app …
1
vote

Capturing large amounts of output from Apache Commons-Exec

The problem is in the run method of YUV4MPEGPipeParser class. There are two successive loops. The second loop terminates immediately if there are no data currently available on the stream (e.g. all …
0
votes

Expressions in hibernate criteria

It is (probably) not possible to do it with Criteria. But HQL can be helpful for this. …