TweetI was a keynote speaker at the 2009 Utah Code Camp (http://utcodecamp.com/speakers/) I wanted to post my source code, and Slide Deck below. Source Code (http://baselogic.com/code/ucc2009/webapp.zip) Slide Deck PPT (http://baselogic.com/code/ucc2009/ucc.ppt) I will be converting this slide deck into a blog as soon as I have time to do so. Stay tuned…. Link to this post!
READ MORE »Posts tagged Spring Framework
Testing ActiveMQ VirtualTopic’s using Camel and JUnit
TweetI have started to create a server Process that sends a status update message that is consumed by remote clients via an activeMQ VirtualTopic. * note in the code examples, many comments and log statements have been removed for clarity here, but may bee seen in the log stack trace sections. Link to this post!
READ MORE »Weblogic 10.3 hangs on JNDI data source lookup during deployment
TweetI have been working on a Spring based web application for a couple weeks. This application uses Hibernate Generic DAO’s with a JNDI template via spring to create the data source. This procedure works very well with DBUnit and Spring to test all of my data access objects in isolation and to get very high [...]
READ MORE »Common Hibernate JPA Data Services Component
TweetI have been using Hibernate JPA, with a Java Generics based data access layer for some time now. But each time I go to a new project, I find that I have to do quite a bit of rework just to integrate this component. So what I wanted to do, is find a way to [...]
READ MORE »Spring Security issue: Duplicate detected.
TweetSo I ran into an issue today that has been detailed at http://forum.springframework.org/showthread.php?p=193052 in the Spring forums that at first glance, looked identical to my issue. But this was in fact not my issue. First off, when I was using acegi, I declared an applicationContext-test.xml that myTestNG would instanciate. I then would import my other [...]
READ MORE »Testing CXF within embeded Tomcat using Spring
TweetI converted from XFire to CXF which is really XFire 2 I guess. Now I am using Maven, DBUnit, TestNG, H2 and embedded Tomcat for continuous integration testing. Now I wanted to be able to test my webservice contracts as well, and Spring has helped me to accomplish that. In my webservices war, I first [...]
READ MORE »Testing XFire with TestNG
TweetSo after an entire weekend of frustration with tutorials such as http://xfire.codehaus.org/JSR+181+Annotations and http://docs.codehaus.org/pages/viewpage.action?pageId=44565 I think I have come up with a way to test XFire services deployed through Tomcat during my Maven build. So I created an annotated version of an Echo Service: package com.baselogic.service; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import [...]
READ MORE »
