Archive for the 'java' Category

Weblogic Web Services With Spring Framework

Monday, February 27th, 2006

Recently, I was trying to connect to a web service with the Spring Framework JaxRpcPortProxyFactoryBean. The web service and client code were generated with the weblogic servicegen and clientgen ant tasks respectively.
I found this example on the dev2dev site:
http://dev2dev.bea.com/pub/a/2005/09/spring_integration_weblogic_server.html?page=3
Unfortunately, it didn’t work for me. I spent almost an entire day trying to get […]

Secure Passwords for Datasources in Spring

Friday, August 12th, 2005

Security requirements at my place of employment don’t allow for plain text passwords in any type of configuration files. So we are forced to store passwords encrypted and then decrypt them in every application that needs to create a database connection. This wasn’t an issue for applications that run in a container as […]