There are times when you have a list of some user defined java beans that you need to be sorted with respect to a certain property of the javabean. This tutorial explains how the Comparator interface can be used to sort the List.
First lets create a Java bean:
public class ScheduleBean {
public [...]
Read Full Post »
Was trying to deploy an application on the weblogic server. A simple (relatively speaking) web service application. And the the thing bombed on me. The error I got
weblogic.wsee.security.configuration.WssConfigurationException: Private key not found
Now, I tried to google for it and could not find a single instance where some one came up with the same problem. [...]
Read Full Post »
Securing Web Services with WebLogic Server 9.2 by Gary Ng and Matt Silver — This tutorial discusses the three facets of Web services security: message integrity, message confidentiality, and authentication, and follows this with a comprehensive tutorial on how to implement secure Web services on WebLogic Server.
Read Full Post »