Apache TomEE is Java EE 6 Web Profile implementation based on Apache Tomcat
10
votes
5answers
619 views
JavaEE solution configuration best practices
We build 3-tier enterprise solutions that typically consists of several webapp and ejbjar modules that all talk to a db and have several external integration points.
Each module typically needs its ...
6
votes
1answer
400 views
What is the workflow for application startup and configuration when using Apache TomEE
I understand that Apache TomEE is a regular Tomcat installation with openejb as a web app.
I am trying to understand how all this bootstraps. I will try and ask a few directed questions:
Is it ...
6
votes
2answers
1k views
Why is TomEE Java EE6 certified but TomEE+ not?
Like the title says. I don't have much knowledge regarding the inner workings of Java EE6 certification. However, it seems that TomEE+ is just just a superset of TomEE, so shouldn't TomEE+ also be ...
5
votes
3answers
1k views
How can I integrate Jersey with TomEE / openEJB
I am upgrading a code that uses Jersey JAX-RS to run on an Apache TomEE server. Unfortunately it throws errors when I try to use Jersey with TomEE.
I am using eclipse and have the JAX-RS project ...
4
votes
1answer
639 views
Which InitialContextFactory should I use?
I am working on an EJB 3 project using OpenEJB (TomEE++).
I have a stateless session bean whose name has been specified with an annotation.
@Stateless(mappedName="SlideService", name="SlideService")
...
2
votes
2answers
820 views
Where to use EJB 3.1 and CDI?
I am making a Java EE based product in which I'm using GlassFish 3 and EJB 3.1.
My application has session beans, a scheduler and uses web services. I recently came to know about Apache TomEE, which ...
2
votes
3answers
4k views
How do I add EJB capabilities to an Eclipse dynamic web project?
I am developing a simple application with EJB 3.0 using OpenEJB for deployment and Eclipse as an IDE.
I created the project as a 'dynamic web application' in Eclipse. When I tried creating the first ...
2
votes
1answer
164 views
Apache TomEE (Tomcat Java EE) won't start on Windows (java.util.regex.PatternSyntaxException: Illegal/unsupported escape sequence near index 3)
I get the following error when trying to start TomEE on Windows:
SEVERE: OpenEJBContextConfig.processAnnotationsFile: failed.
java.util.regex.PatternSyntaxException: Illegal/unsupported escape
...
2
votes
2answers
86 views
TomEE DataSource isn't found
I have a strange problem regarding TomEE and using a DataSource specified in tomee.xml.
It might be worth noting that I'm using Netbeans, TomEE and MySQL. Running on Ubuntu 13.04 (Xubuntu latest)
The ...
2
votes
1answer
76 views
Using Weld CDI instead of OpenWebBeans in TomEE
I'd like to run a WebApp on Apache TomEE using Mojarra and Weld.
I put "javax.faces-2.1.21.jar" and "weld-servlet.jar" in my /WEB-INF/lib directory. I also added an empty "beans.xml" to my WEB-INF ...
2
votes
2answers
721 views
How to write a REST client, based on CXF, in TomEE?
I would like to use my REST client, developed with CXF, with TomEE/TomEE+ 1.0, but I have a little problem with JAXB JSON marshalling/unmarshalling (with the Jackson library).
I tried both Jersey ...
2
votes
1answer
1k views
DDL generation and general persistence.xml settings (OpenJPA)
Summary
I'm trying to run a Java web application JPA 2.0 example. The example application was written to run in Glassfish, using EclipseLink as JPA provider.
I would like to convert it to run in ...
2
votes
1answer
177 views
Gradle -> How to omit some jars from WEB-INF/lib
I have a subproject with a war spec that looks like this:
war {
from('resources') {
include '*.properties'
into 'WEB-INF/classes/'
}
webXml = ...
2
votes
0answers
131 views
EJB JAX-RS @Context HttpServletRequest NullPointerException - Why?
Consider the following service:
@Path("/")
@Stateless
public class SomethingService {
@Context
final HttpServletRequest request
@POST
@Path("post/something/")
...
2
votes
0answers
338 views
Maven with automated testing using TestNG, JSFUnit 2 and Arquillian
im currently trying to make a JSFUnit-Test with Arquillian and TestNG, but the JSFServerSession and JSFClientSession-object is NULL. Is there a working EXAMPLE for having JSFUnit and TestNG? Or is ...
2
votes
2answers
313 views
EJB-3.1 @Startup & @Schedule anotation in Apache Tomee for Timer Execution
I have following code to run on Apache-tomee, i am using eclipse for coding, and i want to run my simple schedule job using @Schedule annotation at application start-up.
@Startup
@Singleton
public ...
2
votes
0answers
268 views
MDB subscribing to remote jms topic in Apache Tomee
I'm trying out Apache Tomee (1.5 plus) for the first time and I'm totally stuck at the moment.
The company I work for have an application (using JBoss and HornetQ) that sends messages to a JMS topic, ...
2
votes
1answer
317 views
Steps to execute .ear file from Glassfish server into Tomee+ server
As a newbie to Enterprise Applications I'm trying to get it done.
I developed an Enterprise application in Netbeans 7.1.2. It runs successfully using the default Glassfish server. With the need to ...
2
votes
1answer
310 views
TomEE lookup errors
I've a WebApp that uses tomcat and openejb in separate installations. I'm trying to move this to a TomEE (web profile / plus) environment and I'm running into lookup errors. JNDIContext is throwing a ...
2
votes
1answer
328 views
TomEE 4 JPA issue
I am trying out simple JPA example on TomEE 4.0.0 and I am not able to get PersistenceContextType.EXTENDED working
If I make my session bean Stateless and leave PersistenceContextType then it works ...
1
vote
2answers
747 views
How to define MySQL data source in TomEE?
Platform: TomEE Web profile 1.5.0.
I am trying to do a very basic thing, setup a data source for MySQL. I have read the official guide (http://openejb.apache.org/configuring-datasources.html). It ...
1
vote
2answers
354 views
error starting tomee server from eclipse servers tab
My OS is win 7 ultimate 32 bit
After installing JDK 7u9, eclipse Juno (4.2) SR1 for Java EE
and finally adding into it the new server
Apache TomEE 1.5.0 October 2nd, 2012 ...
1
vote
2answers
980 views
EJB testing with TomEE embedded EJBContainer api: java.lang.ClassFormatError exception
I would test my EJB with TomEE embedded EJBContainer.
This is my JUnit test case skeleton:
package com.xxx.indexer.scheduler.service;
import java.util.Properties;
import ...
1
vote
1answer
609 views
Using TomEE and open JPA, i get the following error: SEVERE: JAVA AGENT NOT INSTALLED
I'm getting the following error using TomEE and JPA:
SEVERE: JAVA AGENT NOT INSTALLED.
The JPA Persistence Provider requested installation of a ClassFileTransformer which requires a JavaAgent.
See ...
1
vote
1answer
549 views
Controlling the name of a stateless session bean with OpenEJB
I am working on an EJB project with OpenEJB (TomEE++) container. There is a session bean whose JNDI lookup name needs to be controlled in code.
@Stateless(mappedName="SlideService", ...
1
vote
1answer
207 views
TomEE + OpenJPA - can't inject EntityManagerFactory PersistenceUnit
I have a stateless EJB that injects
@PersistenceUnit
private EntityManagerFactory factory
My persistence.xml:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" ...
1
vote
1answer
186 views
Dependency injection with @WebServiceRef I'm doing it wrong. But how?
I'm getting an exception while trying to inject a webservice that's completely separate from my JVM.
My environment is TomEE v1.0.0, which is a JEE6 webprofile container.
ThemeQueryService is a ...
1
vote
2answers
232 views
JSF2.0 @EJB Injection into @ViewScoped causing MyFaces to CFNE
I'm running a JSF project in TomEE. I upgraded it to MyFace 2.1.8. I'm running everything on OSX with Oracle JVM 1.7.04
So I have this ManagedBean which is ViewScoped:
@ManagedBean
@ViewScoped
...
1
vote
1answer
1k views
“No resource methods” when using JAX-RS on TomEE+
Using stock TomEE+, I cannot get a simple JAX-RS resource to work. I constantly get an error of:
Jun 30, 2012 5:09:59 PM org.apache.cxf.jaxrs.utils.ResourceUtils checkMethodDispatcher
WARNING: No ...
1
vote
1answer
572 views
Can someone tell me from this log file if openejb is starting before or after my webapp
I am running an enterprise Java app, using openEJB's TomEE++. The app is being started from within Eclipse Helios. I have changed the 'server Locations' in Eclipse, to allow Eclipse to take charge of ...
1
vote
1answer
643 views
Accessing singleton EJB from another webapp in TomEE
I have 2 webapps deployed on Apache TomEE+. In the first webapp I have created a singleton EJB class declared like this:
@Singleton
@Remote
@Startup
@Lock(READ)
public class SolverRegistryBean ...
1
vote
1answer
528 views
Lookup errors while accessing OpenEJB sample webservice on TomEE
I'm trying to write a simple webservice using OpenEJB. I started with an example code (webapps/ejb-webservice) from TomEE project:
...
1
vote
1answer
92 views
Can't get CXF JAX-RS and JSF to work together
I'm trying to setup a small example application FooTest that uses CXF JAX-RS and JSF. I started with the CXF part, implemented a simple service (works) and a small html page called home.html (I can ...
1
vote
0answers
67 views
Tomcat Resource Factory org.apache.openejb.OpenEJBException: No provider available for resource-env-ref
I am using TomEE as the Application Server. TomEE uses Tomcat 7. I have the following code:
package com.jndi;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.Name;
...
1
vote
0answers
125 views
Migrating from glassfish to tomee+
I have an application which runs on Glassfish 3.1.2, but now i want to migrate to Tomee+. I
have created connection pool in Glassfish and have configured that pool with JNDI, and used
that JNDI Name ...
1
vote
0answers
144 views
How to compile jsp pages as per tomcat 7 standard
Our code is moving from jboss to tomEE and found some issues with jsp pages which was working with JBOSS
as per link
http://thinkinginsoftware.blogspot.com/2011/10/tomcat-7-jstl-failed-to-parse.html
...
1
vote
0answers
205 views
Why does injected UriInfo use a different hostname than injected HttpServletRequest?
I'm learning JAX-RS, and like the idea of returning URLs to other relevant actions in a response. Using Apache TomEE JAX-RS 1.5.1, for some reason the URLs provided by an injected UriInfo instance are ...
1
vote
0answers
234 views
Remove Tomcat 7.0.33 and Install TomEE plus 1.5.1. The errors pop up
I remove the Tomcat 7.0.33 and I install the TomEE plus 1.5.1. However, when I start TomEE server. The errors pop up. There are such errors on Tomcat.
Could you provide some suggestions? Thank you ...
1
vote
1answer
112 views
Is it possible to deploy JSF MyFaces 1.1.5 applications to TomEE
With Tomcat7 i can deploy several application with misced use of MyFaces 1.x / 2.x
In TomEE i run to many exceptions if i deploy Applications with MyFaces 1.x, because tomee has builtin myfaces2 ...
1
vote
0answers
103 views
Deploying jwebsocket server (20614) in tomcat (or tomee)
I have followed the instructions to run the demo provided. I also tried to create a simple plugin to see if I can get it to work. I am running into a problem where the factory cannot instantiate the ...
1
vote
1answer
460 views
TomEE Plus seems not find the “ejb-jar.xml” in application war
My main aim is to migrate an EJB 2.x application written for WebSphere to a web application deployable for Tomcat server. But I want to this as nearly one-to-one migration.
So I set up a TomEE ...
1
vote
0answers
177 views
Webservice cannot be stateless?
Can someone explain the following?
Setup: basic webservice in a Dynamic Web Project with tomEE+. index.xhtml as testsite.
@Stateless
@WebService...
public class MyWS implements MyWSInterface
...
1
vote
2answers
863 views
TomEE and Hibernate dependencies
I have created very simple app with persistence context (hibernate as provider) to read some value from database. I use Eclipse with Maven.
First, I get
Caused by: ...
1
vote
1answer
1k views
TomEE + EclipseLink: EntityManager injection not working
I'm trying to get this JPA + EJB + Facelets example running in TomEE Web Profile.
Because the sample uses EclipseLink, I downloaded EclipseLink and copied eclipselink/jlib/eclipselink.jar into the ...
0
votes
3answers
346 views
Using Hibernate or TomEE?
I have an EJB-based library that needs to be modified to be compatible with Tomcat application server (i.e. no JaveEE). I browsed a bit on Hibernate and got rather confused.
Apparently, there's the ...
0
votes
1answer
306 views
tomee persistence.xml in EJB JAR META-INF crashes my application deployment
I am using TomEE to deploy an EAR file, that contains one EJB JAR and one WAR.
I want to add entities using the default provider. I have created a resource in tomee.xml to use MySQL DB.
Then I would ...
0
votes
1answer
455 views
How to Change Logging Levels of OpenEJB in Apache TomEE
How can I set the logging levels of OpenEJB components running inside TomEE? I want to see the debug logging statements from the source code of org.apache.openejb.config.AutoConfig.
I tried modifying ...
0
votes
2answers
94 views
Consume ActiveMQ advisory messages in tomEE mdb
I have an MDB that manages to consume ActiveMQ advisory messages when deployed on glassfish.
But when i deploy on tomEE this MDB doesnt consume any advisory messages. Is there something I need to ...
0
votes
1answer
103 views
How to access CDI managed bean from JAX-RS MessageBodyWriter?
I'm struggling with accessing CDI managed beans from a JAX-RS message body handler in TomEE.
My handler class (implements MessageBodyWriter<Object>, MessageBodyReader<Object>) is ...
0
votes
2answers
62 views
ocpsoft.org PrettyTime: Could not find any registered converter-class
I found this fairly incredible date conversion library for JSF called Pretty Time. I've included the maven coordinates into my pom.xml:
<dependency>
...

