Hi devs, I've changed my project to run on TomEE3.2 and on the standalone instance. The standalone version is running fine. You can check it out here: http://dl.dropbox.com/u/1459144/embedded-server.jar Execute "java -jar embedded-server.jar", wait for "Your server is up and running" and access https://localhost:8443/
The problem is the war version running on TomEE (both versions 3.2 and trunk). It seems that the resources annotated by "@Resource" (timeservice) are not being injected. Do you know what am i missing here? This is the war file: http://dl.dropbox.com/u/1459144/ROOT.war. My project should be the root project due to my JS files. You should also create a "root" user on "tomcat-users.xml" to be able to login. <role rolename="ROLE_USER"/> <user username="root" password="1234" roles="ROLE_USER"/> This project is a simplified version of the ROOT.war: http://dl.dropbox.com/u/1459144/test.zip You can check the source code of this project to see the problem being reproduced. thanks! Thiago