The glassfish-embedded tag has no wiki summary.
1
vote
1answer
19 views
Using different eclipselink than bundled in glassfish-embedded-web
I use glassfish-embedded-web for integration tests inside a maven project:
<dependency>
<groupId>org.glassfish.extras</groupId>
...
0
votes
0answers
29 views
How I should point to my resource.xml when I am setting up arquillian with tomee?
With glassfish-embedded server I used the following line in arquillian.xml to specify my resource.xml
arquillian.xml
<container qualifier="glassfish-embedded" >
<configuration>
...
0
votes
0answers
26 views
Specify logging.properties in embedded Glassfish with maven-embedded-glassfish-plugin
I use a project template containing a Maven configuration for an embedded Glassfish (using the maven-embedded-glassfish-plugin). I need to enable logging, but I do not even know which logging engine ...
0
votes
0answers
21 views
Embedded security errors, but works fine locally
I have a small project using GlassFish 3.1.2.
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</security-constraint>
...
0
votes
1answer
54 views
Java full EE on Heroku application server or servlet container (best practices)
lets say I need a "full" Java EE applicaton on Heroku.
What would be the "better" way to go? (when it comes to performace and memory usage)
embedded glassfish server
use embedded jetty and build the ...
0
votes
0answers
128 views
Connection refused on Arquillian with embedded glassfish
I am setting Arquillian on a JPA , weld CDI project with embedded Glassfish container.
When I am running my test cases I am getting Connection refused exception to Glassfish.
Here is my pom.xml:
...
0
votes
0answers
43 views
weld-se and netbeans: debugging not working
I am attempting to port a javaSE application to Weld SE to gain dependency injection support. The application starts and behaves correctly (I changed the main to an observer for the ...
0
votes
1answer
280 views
testing REST web services with arquillian
We would like to test our REST APIs using arquillian.
We use glassfish for production and arquillian.
We already have arquillian tests for some JMS queue we expose, and that works fine, so we at ...
0
votes
1answer
132 views
Unexpected behaviour of EntityManager.merge()
I am using embedded glassfish (3.1.2.2) with junit (4.11), with JDK 1.7, though my source and target is set to 1.6 (maven-compiler-plugin configuration).
Following is my code:
Person.java
@Entity
...
0
votes
1answer
76 views
How to exclude maven dependency while running test cases
Im working on ejb3 and testing with arqullian.
I have following dependency in pom.xml
<dependency>
<groupId>org.glassfish.main.ejb</groupId>
...
3
votes
0answers
85 views
Embedded Glassfish “randomly” responds to requests after restart and redeploy
We use embedded glassfish version 3.2-b06 for integration tests.
The problem is that sometimes test that call our web service (RESTful) returns a 404 response and sometimes 200.
For example:
@Test
...
0
votes
1answer
73 views
sample domain.xml that will work with arquillian
I've been testing my programs using arquillian for months now. I just recently installed jenkins in a glassfish container and have it build my project. I have a problem that arquillian is trying to ...
2
votes
0answers
375 views
org.apache.catalina.LifecycleException: PWC2769: Manager has not yet been started in maven glassfish plugin (3.1)
i user maven glassfish plugin (3.1) and i got this error . so help me .....
error :
Feb 14, 2013 1:54:31 PM org.apache.catalina.core.StandardContext start
SEVERE: PWC1305: Exception during cleanup ...
0
votes
0answers
98 views
Deploy war dependency onto embedded-glassfish
Can you get the maven-embedded-glassfish-plugin to deploy a war pulled in from a dependency. Currently I'm deploying a war file copied to my lib folder:
<plugin>
...
3
votes
1answer
204 views
How to test @RolesAllowed secured EJB3.1 with embedded glassfish
I have a @RolesAllowed protected @Stateless EJB that I'm trying to JUnit-4 test with embedded GlassFish container. The most recent hurdle I've overcoming has been GlassFish domain configuration for ...
2
votes
0answers
82 views
How to exclude jars from an embedded glassfish scattered archive?
We would like to use an embedded glassfish for the Server part (EJB 3.1) of our desktop application.
While starting the glassfish server with our scattered archive, we experienced long startup times ...
1
vote
0answers
55 views
How can I serve static content with Glassfish embedded?
I'm trying to setup Glassfish embedded with a WAR project that implements a REST API and then some static Javascript content that calls it. I got the WAR to deploy and the REST API is available with a ...
0
votes
0answers
49 views
Is there a maven-embedded-glassfish-plugin for Glassfish 3.2?
The documentation of Glassfish 3.2 embedded points to the 3.1 maven plugin
Is there an updated version of the maven-embedded-glassfish-plugin for Glassfish 3.2?
I tried some guesswork without any ...
0
votes
1answer
48 views
GlassFish Installation error
I have installed NetBeans 7.1.1 . I had installed Tomcat intially and Glassfish was removed f . But I need to develop some Enterprise applications . Hence I have separately download and installed ...
0
votes
0answers
182 views
junit test with glassfish-embedded-static-shell
for unit testing I am trying to use the glassfish-embedded-static-shell (http://docs.oracle.com/cd/E18930_01/html/821-2424/gjldt.html#scrolltoc). However, I can't make the below program execute ...
0
votes
1answer
459 views
Deployed null when using embedded glassfish server
after reading several tutorials (e.g. ocpsoft, oracle) I started to use embedded glassfish for running my hello-world app. It does work with the remote server but for some reason nothing is deployed ...
1
vote
0answers
424 views
Can't run test in arquillian and glassfish
I'm trying to deploy my EJB ear file to embedded glassfish server with Arquillian.
Here is my project structure.
Parent Module
-- EAR Module (maven-ear plugin creates the ear file)
-- UI Module
-- ...
1
vote
2answers
553 views
Integration tests with maven2 fail-safe & embedded-glassfish
I've created a new project which will only run the integration test with
maven-ear-plugin
maven-failsafe-plugin
maven-embedded-glassfish-plugin
When I set the packaging to ear the ear file ...
3
votes
0answers
305 views
Embedded ActiveMQ in Embedded Glassfish (using maven-embedded-glassfish-plugin)
Im trying to run a ActiveMQ glassfish embedded using the maven-embedded-glassfish-plugin.
I have separately completed below tutorials, so I know the basics.
The goal is to have a setup that builds in ...
0
votes
1answer
79 views
Integration ActiveMQ5.6.0 web-console in GlassFish 3.0.1
Hello guys have such issue i do all like this tutorial says
javadudeTutorial
But i can not to deploy web-console.war in GlassFish. and the stack trace says me only
There is no installed container ...
1
vote
1answer
296 views
How to Upgrade glassfish?
I want to upgrade Glassfish without internet connection. But I have already downloaded the latest version.
I have done the following steps,
For eg. galssfish-3.0 is the older version and ...
0
votes
2answers
155 views
Could not connect to glassfish ip address on windows server 2008
I have developed a servlet and deployed it on my server -windows server 2008-
the server have an ip and the port of the glassfish 3.1.2 server is 11188, when i call the servlet from the local host it ...
1
vote
1answer
309 views
Embedded Glassfish and `imqcmd`
We are using an embedded Glassfish Server in our testing environment. We use the org.glassfish.embeddable.CommandRunner interface to execute administrative tasks (i.e., what we do with asadmin with a ...
1
vote
0answers
436 views
Glassfish embedded with JUnit for EJB testing
I ran into a big issue, what I cannot solve.
I trying write a small application with JavaEE6 and EJB. I would like set up testing environment with EJBContainer and Glassfish Embedded.
This project ...
1
vote
2answers
618 views
how do I get started unit testing a Java EE JAX-RS app using embedded GlassFish and Java DB/Derby, ideally in NetBeans sans Maven?
I'm relatively new to JAX-RS, JPA, GlassFish, Java DB, and NetBeans, and I'd like to write unit tests for my code. [Version numbers are at the bottom.] However, I'm stuck on where to begin. I've done ...
1
vote
1answer
222 views
Glassfish embedded + maven cobertura plugin
I've used embedded glassfish in the following way:
public static void createContainer() throws IOException {
File target = new File("target/classes");
Map<String, Object> ...
1
vote
0answers
87 views
Authorization problems with Embedded Glassfish 3.1.1
I'm using Embedded Glassfish to deploy a JEE 5 web application. Using version 3.1 I was successful to:
Deploy it in a normal (not embedded) environment;
Based on the 1st step, create an embedded ...
2
votes
0answers
109 views
activeMq rar autodeployed in glassfish embedded
Is it possibile to autodeploy activeMq rar into glassfish embedded? I tried many ways using glassfish-embedded-all-3.1b11 upto 3.2b06 but had no luck. In particular, I'd like to use ...
0
votes
0answers
141 views
Starting Multiple Glassfish Servers using Maven
I have a multi-module maven project as below:
Parent (POM Project)
Module1 (Web Service) - Deployed on port 1001
Module2 (Web Service) - Deployed on port 2001
Module3 (Web Service) - Deployed on ...
0
votes
1answer
264 views
maven-embedded-glassfish-plugin throws a ClassNotFoundException
I have configured my pom file to use maven-embedded-glassfish-plugin. In fact this is the jersey-webapp artifact that generates the project. The plugin section of the pom is as below:-
...
1
vote
0answers
212 views
Maven and Embedded Glassfish Plugin - How to provide the derby jdbc driver
When running the embedded glassfish plugin I get the following message.
INFO: Cannot find javadb client jar file, derby jdbc driver will not be available by default.
How to provide the javadb ...
0
votes
1answer
135 views
Testing EJB with embedded container. How can I log in?
I'm trying to test my EJBs with the embedded container.
container = EJBContainer.createEJBContainer();
But I have some of my methods that are restricted to some roles. So, my question is. How can I ...
4
votes
2answers
645 views
How to deal with classpath conflict
In my project, I'm using both glassfish-embedded 3.1.1 and the guava lib... The problem is that glassfish comes with the old implementation of guava (ie google-collections)...
This results in ...
1
vote
1answer
194 views
Can not acces a running instance of embedded Glassfish from browser
I'm trying to use the embedded Glassfish for running some unit tests. I have managed to configure and start the server, but i can't access the management console from my browser. Nor can i access the ...
3
votes
2answers
2k views
What is the official Maven repository for Embedded GlassFish?
http://maven.glassfish.org/content/groups/glassfish/ looks like it should be GlassFish's official Maven repository, but it currently hosts only up to version 3.1.1-b05 of glassfish-embedded-all (see ...
6
votes
2answers
3k views
NetBeans 7.0 , JUnit and Glasfish Embedded 3.1: Does not work
I am trying to JUnit Test a J2EE Web Application with NB 7.0, JUnit and the embedded Glassfish Server in a Win7Professional machine.
I broke it down to just test a plain simple Hello-World Web App ...
1
vote
0answers
79 views
Can't execute embedded Glassfish App at Apple platform
I'm having a problem running an JEE5 application at GF 3.1 Embedded at Apple computers... (the same environment works at Linux and Windows). The server starts ok, but when loading the APP the server ...
3
votes
2answers
2k views
Any best practices for dealing with Java EE and java.endorsed.dirs?
I've recently run into a problem with glassfish standalone (v3.1) vs glassfish embedded (v3.1) vs java SE and the way java.endorsed.dirs is used. The specific problem I had is here, but I don't think ...
2
votes
0answers
247 views
how can one use 'embedded-glassfish:admin' to create a datasource
There a many articals pointing to embedded-glassfish:admin when it comes to create a datasource for embedded glassfish. But at the end there is now good description of how this should actually work.
...
0
votes
1answer
284 views
glassfish-embedded non-portable jndi
I wonder if anyone can help me with understanding how i could change portable jndi names.
The problem is simple - I try to create tests for existing enterprise application. This application is placed ...
1
vote
1answer
175 views
How can JMX in embedded glassfish be activated?
how can one activate JMX in embedded glassfish (using maven-embedded-glassfish-plugin)?
4
votes
2answers
3k views
Maven Embedded Glassfish Plugin - Datasource and JDBC driver
I'm trying to follow this approach to create a datasource for embedded glassfish. The only significant difference between the tutorial and my code is that I'm running the server using the official ...
0
votes
1answer
2k views
could not find Factory: javax.faces.context.FacesContextFactory - using embedded glassfish 3.0
I'm trying to run a simple jsf-2.0 tutorial using embedded glassfish 3.0 and keep getting this error. Have been searching solutions on this forum and the internet and seems getting no where. Here is ...
5
votes
0answers
2k views
Embedded Glassfish, security and Arquillian questions
I want to test my EJBs on an embedded Glassfish using Arquillian.
The important thing is that I have to have security up because my bean logic does some programmatic security checking ...
0
votes
1answer
1k views
How to setup JUnit tests for Glassfish Embeddable EJBContainer + EclipseLink JPA?
I'm trying to use EJB 3.1 Embeddable EJBContainer on Glassfish 3.1 for integration
testing my EJB's. There's a classloading issue I can't figure out.
My ejbs are build into dum-ejb.jar. They use ...


