Tagged Questions
2
votes
2answers
82 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 ...
0
votes
1answer
98 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 ...
1
vote
0answers
63 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;
...
2
votes
1answer
160 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 = ...
0
votes
1answer
33 views
TomeEE Java Version 5
I installed TomEE plus version 1.5.1. It has Tomcat version 7. Can TomEE be used with Tomcat 6? It is possible?
Having a quick search on Google, doesn't give anything back.
0
votes
1answer
56 views
TomEE: CDI Extension - provider not found error
I have running TomEE+ 1.5.1 and trying to create an CDI extension. I created a class implementing javax.enterprise.inject.spi.Extension and put that class name into the file ...
0
votes
0answers
52 views
Is it possible to use parallel deployment with TomEE
Parallel deployment was a feature introduced with Tomcat 7 to allow two separate versions of a WebApp/WAR to be deployed into a Tomcat Container.
Has this functionality been maintained in TomEE? Are ...
0
votes
0answers
95 views
How do I define a web service client resource in TomEE+?
I am working on an enterprise web application that consumes a web service. Because of application support department requirements, I have to configure the web service using a service-ref in web.xml. ...
0
votes
1answer
145 views
TomEE: single class loader per EAR + parent last
Is there a way to configure TomEE to use single class loader per EAR and load classes from the application first and server last?
1
vote
1answer
185 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
228 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 ...
0
votes
1answer
142 views
Erroneous sym type: EmbeddedSolrServer.query
Im having a problem implementing the EmbeddedSolrServer from Solr, everything it seems to be in the right place, and its compiling and everything but when it tries to make a request>
QueryResponse ...
1
vote
2answers
853 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: ...
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 ...
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 ...
1
vote
1answer
599 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 ...
5
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 ...
4
votes
1answer
636 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")
...
1
vote
1answer
543 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", ...
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 ...
1
vote
1answer
639 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 ...
10
votes
5answers
616 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 ...
1
vote
1answer
525 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:
...