Questions tagged [tomee-7]

Apache TomEE 7 is the Java Enterprise Edition (JEE7) of Apache Tomcat that combines several Java enterprise projects. Use this tag to mark questions which clearly relate to TomEE versions >= 7.0.0-M1.

Definition

From Apache TomEE's current JEE7 information website:

The latest release of Apache TomEE 7.1.2, which is based on Apache Tomcat 8.5.50 ...

Apache TomEE 7.1.2 can be downloaded at the official download page.

It combines several software components of different projects of the Apache foundation:

  • Apache Tomcat
  • Apache OpenEJB
  • Apache OpenWebBeans
  • Apache OpenJPA
  • Apache MyFaces
  • Apache ActiveMQ
  • Apache CXF
  • Apache Derby
144 questions
2
votes
0 answers

What does "Some Principal APIs could not be loaded" during TomEE 8.0.x container startup signal?

While migrating several projects from a TomEE-7.x environment to the new TomEE-8.0.x container (8.0.0-M2), I'm finding this message in the logs during startup of the container INFO - Some Principal APIs could not be loaded: …
MWiesner
  • 8,868
  • 11
  • 36
  • 70
2
votes
1 answer

How to make Spring Boot app deployable on TomEE 7.x?

I have a simple Spring Boot web application. https://gist.github.com/IvanZelenskyy/90f554276c6b3665f11368c7152ae97e And I have a Tomcat 8.x and TomEE 7.x servers with default config both. When I deploy my app (as war) to Tomcat (and also to…
Ivan Zelenskyy
  • 659
  • 9
  • 26
2
votes
0 answers

setting timeout for cxf rest client in tomee

I wish to set the ReceiveTimeout property at application level for all jax-rs requests in Tomee. I am unable to find any documentation specific to setting the property other than at a low level in code: client.property("http.receive.timeout",…
Mark
  • 21
  • 3
2
votes
2 answers

Why is TomEE not accessible when run in Docker environment?

I am running Tomee7 in Docker. Log says it started but I am not able to see in Browser . I tried with localhost:8080 and also with docker ip 192.168.99.100:8080 Tomee Log: INFO - Creating Container(id=My Stateless Container) INFO - Creating…
MyTwoCents
  • 7,284
  • 3
  • 24
  • 52
2
votes
3 answers

Tomee Installation process?

SPEC : jdk1.8 ,TOMEE702, win10 Question : How/What/which to install and use TOMEE for open-ejb3.X ? url : http://tomee.apache.org/download-ng.html I could not find any easy install-able for all of the downloads from the url. with regards Karthik
N.S.Karthik
  • 485
  • 13
  • 29
2
votes
1 answer

TomEE multiple hosts with the same app deployment issues

I am trying to set up TomEE (7.0.2) with multiple virtual hosts for development and testing environments, the same applications will usually be deployed to all hosts. I discovered from this post how to avoid the JNDI naming conflicts, which largely…
Tim
  • 125
  • 1
  • 8
2
votes
0 answers

testing role-based (cxf) jaxrs service with openejb application-composer

I have a service: @RolesAllowed({ROLE_ADMIN, ROLE_USER}) @Stateless @Path("test") public class TestServiceImpl implements TestService And a TestNG test with the…
Aviram
  • 553
  • 1
  • 8
  • 21
2
votes
1 answer

Arquillian error while using with TomEE

I am getting below error while running Arquillian tests in embedded TomEE container Caused by: javax.el.ELException: Provider com.sun.el.ExpressionFactoryImpl not found at javax.el.FactoryFinder.newInstance(FactoryFinder.java:101) at…
Raj
  • 115
  • 8
2
votes
1 answer

How to disable assertions in tomee-maven-plugin - What's the precedence of "args"?

I tried to figured out how to disable assertions via the tomee-maven-plugin. By default, the console output of the launched TomEE JVM informs me: Command line argument: -ea Therefore, to disable assertions, I made a good guess and tried -da as…
hatze
  • 521
  • 4
  • 12
2
votes
1 answer

PrimeFaces: dealing with incomplete components.js

I'm getting some complaints that the p:toolbar of my applications is not working. Looking personally on one of the workstations that the problem happened, Firefox 49 console had the following error: SyntaxError: missing ) after argument list[Learn…
FkJ
  • 1,609
  • 1
  • 19
  • 29
2
votes
2 answers

Does a batch jobs admin page similiar to Spring batch admin page exist in TomEE server?

Is there any batch job manager console/GUI from where I can see the status of batch jobs in TomEE. I mean something like GUI in spring batch admin.
vermaji
  • 539
  • 2
  • 10
2
votes
1 answer

What is the correct way to upgrade JSF library in TomEE 7 Plume?

I have seen that Mojarra 2.3 was released in June. What is the right way to make the upgrade? In my pom.xml? Where basically I only have javax javaee-web-api
user1156544
  • 1,725
  • 2
  • 25
  • 51
2
votes
0 answers

How to access EJB3 deployed on TomEE (Plume) with Corba/IIOP client?

I am looking for some hint or possibly an example on exposing EJB3 as IIOP/CORBA compliant while deploying on TomEE (Plume) and accessing the same EJB3 with IIOP/CORBA client. Our current application is designed as such that it’s EJBs(EJB3) are…
J Dev
  • 43
  • 1
  • 4
2
votes
1 answer

TomEE embedded/bundle with single application

I'm currently exploring building a webapp which is bound to a TomEE server, i.e. it either runs as the sole (additional) application within a TomEE or has a TomEE embedded. The webapp should support servlets and JSPs (basically we'd like to use…
Thomas
  • 87,414
  • 12
  • 119
  • 157
2
votes
0 answers

Api type [org.atmosphere.cpr.AtmosphereResource] is not found with the qualifiers

I'm doing a websocket app using Atmosphere and I'm trying to reproduce the chat sample in my own environment. I'm working with a TomEE 7 plus server, and the sample works fine on it. I added the maven dependency to atmosphere-runtime and to servlet…
Tako
  • 661
  • 12
  • 34
1
2
3
9 10