Tagged Questions
0
votes
1answer
37 views
TomEE, JAAS, SQLLoginModule and 403
I have added the SQLLoginModule to my deployment (TomEE 1.5.1):
system property that points to the login.config
login.config configured to use SQLLogin realm
server.xml updated to use this realm
...
2
votes
1answer
75 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 ...
0
votes
0answers
70 views
TomEE 1.5.2 / PrimeFaces 3.5 - why does the converter not work if I use JSON?
I know there's some problem with my converter, because if I replace my converter with something else it works.
Basically: I have Projects like this
public class Project implements Serializable{
...
0
votes
0answers
40 views
PrimeFaces p:orderList isn't getting processed correctly?
I have an orderList like this:
<h:form id="priority_form">
<p:orderList id="priority_list" value="#{priorities.priorities}"
var="priority" itemValue="#{priority}" ...
0
votes
1answer
136 views
Can Converter @FacesConverter(forClass=[someClass.class]) be implemented as @Singleton @Lock(READ)?
In an effort to remove 'static' declarations throughout my app (to help JVM's GC), I removed 'static' from the definition of the Converter class below. So that resulted in the infamous error below:
...
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>
...
0
votes
1answer
57 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
1answer
187 views
Update Resources / Hot deploy not working with tomee and IntelliJ
I am trying out IntelliJ for the first time and I am using tomEE. I can't get my changes reflected unless i redeploy the war (remove it then redeploy it).
What I do is the following:
Run ...
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
147 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?
0
votes
3answers
345 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
0answers
134 views
How to install and use Apache OpenEJB drop-in war?
I want to use JAX-WS in Tomcat and so I downloaded the drop-in war of Apache OpenEJB and deployed it in Tomcat to make Tomcat Java EE ready. I then deployed a JAX-WS web service on Tomcat, but I'm ...
1
vote
0answers
176 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
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
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 ...
-2
votes
1answer
73 views
JPA Development tools
i use apache tomee, Java EE 6, servlet 3 and when i start the server tomee i have this errror:
Server TomEE Server at localhost at localhost was unable to start within 45 seconds. If the server ...
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
604 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 ...
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 ...
2
votes
1answer
309 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 ...
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 ...
