GlassFish is an open source, production-ready, Java EE-compatible application server.

learn more… | top users | synonyms (3)

1
vote
1answer
109 views

WAR doesn't get redeployed in Glassfish from autodeploy

I was able to deploy my WAR the first time I placed it under domains/domain1/autodeploy dir. However, after making some changes and redeploying the WAR to the autodeploy dir, the changes were not ...
1
vote
1answer
17 views

Introspector finding properties that no longer exist

I'm relying on introspection for XML processing in a Java EE 6 app I've been working on for quite a while. So far it has worked just fine. However, I had to rename a property setter name. The problem ...
0
votes
1answer
96 views

Oracle ADF Glassfish MySQL - Data Source Error

I have set up ADF essentials library on my glassfish server as specified here . I am able to successfully deploy applications to the glassfish server from jDeveloper and the application runs fine ...
0
votes
1answer
28 views

embedded glassfish - activation.jar

I need to use javax.activation to get the mimetype of files. I am running embedded glassfish and added the activation jar to the maven plugin as a dependency; however, it is still returning ...
0
votes
0answers
54 views

jsp not found in SpringMVC and glassfish

i am working on project. i did some simple changes and now i am getting following error. SEVERE: PWC6117: File ...
0
votes
0answers
27 views

EJB-calls to GF wraps enums in javax.rmi.CORBA.EnumDesc

I am working on a client-server application using EJB for communication between the client and the server. Now I am updating from glassfish 3.0.1 to glassfish 3.1.2.2, so I wanted to change the ...
0
votes
3answers
638 views

WARNING: Provider com.sun.xml.internal.bind.v2.ContextFactory not found

I have integrated within a JSF app a few webservices through Jersey. Everything works fine, even the OAuth identification is working. BUT! When starting my webserver, I ALWAYS get this error : ...
1
vote
2answers
200 views

TypedQuery instead of normal Query in JPA

Is it possible to write this Query as a TypedQuery and let the two Long's run into a Object with two public Long fields inside. Query q = em.createQuery( "SELECT c.id, COUNT(t.id) " + ...
-1
votes
1answer
58 views

I can run my application but glassfish shows an error on console

My Web Container is GlassFish Servewr 3+, when I run my Java application, the application will be ran correctly but I see the following error in my console. INFO: The Admin Console is already ...
0
votes
1answer
82 views

RequestScoped Logging bean with Asynchronous calls

I have a logging bean where I log how long database calls and bean method calls take via interceptors. I have a bean that calls two @Asynchronous methods. Those two @Asynchronous methods call the ...
2
votes
1answer
49 views

Fast loading data from two sql servers

I need to load and merge data from two different sql servers (JDBC) and give the result via REST to the client. Instead of loading first data a and then data b I would like to start loading data a ...
0
votes
1answer
27 views

how to track number of sessions in Glassfish instance?

We used to use WebObject servers to host our apps. Now moving to Glassfish is quite interesting. WebObject used to let us see how many transactions and sessions were being handled by each instance. ...
1
vote
0answers
61 views

Scope of java:global datasource definition

I define a datasource definition with in web.xml (or with @dataSourceDefinition) with a name java:global/jdbc/db. It works: I can use the datasource in the application. But, after the running of the ...
0
votes
1answer
275 views

Glassfish 3.1.2.2 Eclipse Plugin for Juno

Somehow, at some point, I installed this version of the Eclipse Glassfish Plugin for Juno: Oracle GlassFish Server Tools 2.0.1.201207240829 I'm trying to help a co-worker install it too. But the ...
0
votes
1answer
89 views

“IOR must have at least one IIOP profile” error while deploying application to Glassfish

I'm developing an application which receives messages using message driven bean and persist data into the database. While trying to deploy it on glassfish, I receive following error: ...
-1
votes
2answers
230 views

install glassfish3 in Netbeans IDE 7.3?

i have installed glassfish3, and have also installed netbeans ide 7.3. Now, i want to add the installed glassfish3 into my server. How can i do this? i don't want to download it again. like, can i ...
0
votes
1answer
42 views

GlassFish app cannot be accessed with www URL

When I deploy my application locally or on the server, I can always access the app at either http://localhost:8080/myApp/ or http://example.com/myApp. However, whenever I add www to either of the ...
0
votes
1answer
61 views

Glassfish Applications Not Starting

I was just reading about using libraries in glassfish. That is, put jar files in a 'centralized' location so that it can be accessed from different web applications. domains-dir/lib/ext is one of such ...
1
vote
1answer
180 views

Liferay 6.1 with Glassfish 3.1.2: IllegalStateException: Must call associate() before calling activate()

I want to ask what is wrong with my code. I was having problems regarding IllegalStateException in my project. My set up is as follows: Netbeans 7.2.1 + JSF 2 Liferay 6.1 GA2 bundled with Glassfish ...
0
votes
1answer
323 views

exception while deploying ADF in Glassfish

hi I am using Jdeveloper glassfish 3.1.2.2 to make Fusion web application ADF in ubuntu. i am getting this exception while deploying my web app. Error occurred during deployment: Exception while ...
0
votes
1answer
130 views

Java-EE-6 / Glassfish: How to access Entity Manager from Custom Audit Module?

I am using Glassfish 3.1.2.2 and I want to collect and store authentication information to my MySQL database attached to the Glassfish application server. So far I successfully implemented a ...
0
votes
0answers
76 views

ResourceBundle not Reloading with Glassfish 3

Environment: JSF 2.0, Glassfish 3.1.1, I have configured Internationalization in my application. Entry added for resource bundle in one of the jsf page is: <f:loadBundle var="msg" ...
0
votes
1answer
69 views

what is difference between glassfish configuration, server, instance and cluster?

following is a paragraph from glassfish 3.1.2.2 administration guide You can rotate log files manually by using the rotate-log subcommand in remote mode. The default target of this subcommand is ...
1
vote
0answers
101 views

Injecting generic data model with CDI/WELD

I have problem with generics and CDI/WELD on GlassFish 3.1.2. I have these classes: This is abstract bean which holds reference to JPA entity. public abstract class AbstractViewBean<T extends ...
0
votes
1answer
444 views

GlassFish Server works on Netbeans 7.2 but not on 7.3

I have just installed Netbeans 7.3. Prepared a sample web application. But Glassfish does not start. Error message is "....\nbproject\build-impl.xml:1036: Deployment error: GlassFish Server 3+ Server ...
10
votes
1answer
552 views

JAAS configuration and LDAP login module in JavaEE 6

I'm writing a question here because I haven't been able to find the solution myself for months. My situation: I have a client-server application written on java which uses Java2ee 6 and EJB3.0. The ...
0
votes
1answer
59 views

Background process using EJB

I'm trying to figure out how to solve a design issue I've stepped into. Let's assume that in my application I need to have a kind of daemon/service that continuously works in the background managing a ...
0
votes
0answers
24 views

Admin console sessions end with two instances of glassfish on debian

i have downloaded from glassfish.org two zipped instances (on debian), next created on each a domain with different ports, however when i went to admin console on each domain the session is really ...
2
votes
1answer
112 views

Does Spring webservice support Java7?

We are in the process of upgrading Java version from 1.6 to 1.7 for our Java EE system. We extensively use spring webservice (1.5.8 in the server side and 2.0.4 in client side). Initial testing (with ...
0
votes
1answer
42 views

How to change bundle start level in glassfish 3.1.2 equinox?

I want to change the start level for a bundle in my glassfish. I used equinox as osgi runtime. I changed the configuration file glassfish\config\osgi.properties and add the folowing line: ...
1
vote
0answers
73 views

Glassfish MethodExecutor Exception

I am getting the following error upon deploying a fairly simple Spring MVC app on Glassfish. I believe it has to do with a memory leak somewhere, but there really isn't any indication of where it ...
0
votes
0answers
14 views

Deploy a MYSQL Application to glassfish

I have MYSQL DB, glassfish,and eclipse. Out of the Db is successfully viewed in eclipse. But i want to display with glassfish application server. I have one jsp file. I don't have any idea. can you ...
2
votes
1answer
196 views

How inject EJB into abstract CDI class?

I have a problem with injecting an EJB into an abstract class which is the parent of my JSF CDI beans. In my project I am using MyFaces CODI 1.0.5 (ViewScope), Omnifaces 1.3, PrimeFaces 3.4.2 and ...
0
votes
0answers
58 views

Iframe not render in safari

In this JSF 2.0 ViewExpiredException on Glassfish 3.1 when using iframe in Safari <--- it perfectly works on my localhost but when i deployed it in actual server it doesn't work again in my safari ...
0
votes
0answers
34 views

Setting GlassFish Enterprise Server Pool Resize Quantity

I have read in glass fish document saying that, For optimal performance, use a pool with eight to 16 connections per node. For example, if you have four nodes configured, then the steady-pool size ...
0
votes
0answers
111 views

Web application using log4j logs tons of severe error messages

I'm written an application which uses a library (Jabber stream objects) which internally uses log4j. When I deploy the application, there are no errors. However after some time, I could see lots of ...
0
votes
0answers
33 views

How to execute sql statments through a terminal on a glassfish3 server

The idea seems sort of simple to me but my google skills are failing me hard. Can anyone tell me how to execute some sql statments on a jdbc database through the terminal so i dont have to make a java ...
0
votes
1answer
86 views

How to access an image stored on the server

I have a web application that is hosted on jelastic.com. I uploaded an image into the home directory of the server by using the path /opt/glassfish3/temp. The code is as follows: FileOutputStream fos ...
0
votes
0answers
129 views

JMS reply not received by client consumer

I've got a client that sends a request to a JMS MDB. It works fine for sending the messages to the MDB, but I cannot for the life of me figure out how to get the client to pick up the response the MDB ...
0
votes
1answer
87 views

How to correctly export a JSF 2.0 web application into war?

I have a JSF 2.0 web project and I use Glassfish 3.1.2 server. In this project, I have among other things : a class called AjaxServlet annotated with @javax.servlet.annotation.WebServlet a class ...
0
votes
1answer
44 views

glassfish3 + apache + octopuslb

I am trying to build a glassfish3 cluster made of 6 nodes which has as a frontend 6 apache web servers balanced by Octopus lb. The load balancer allows me to send requests depending on load that is ...
3
votes
1answer
296 views

websockets and WebContainer HttpSession in glassfish V3.1.2.2 and grizzly-websockets v1.9.56

Problem : Websockets and WebContainer HttpSession in glassfish V3.1.2.2 and grizzly-websockets v1.9.56. ref link : http://java.net/jira/browse/GRIZZLY-1289 i am use web-scoket with glassfish ...
0
votes
0answers
158 views

@Asynchronous method throws EJB5184 javax.ejb.NoSuchEJBException: Cannot remove EJB: transaction in progress

I have a REST server (glassfish 3.1.2.2) that calls an EJB. The method that it calls in the EJB is annotated @Asynchronous. I get the reply from the server fine. I also can see (through logging) that ...
0
votes
2answers
131 views

Glassfish not closing threads when done request

I have a Java Servlet that has a doPost method and when the doPost finishes, I assumed Glassfish would close the connection, but I was wrong. The Servlet is on a Linux server and after 300 posts the ...
0
votes
1answer
114 views

Glassfish, JDBC Connection pool advanced tab throwing error

On some of our servers, we are getting errors when trying to access the advanced tab on the connection pools page in Glassfish (3.1.2 (build 23)) type Exception report message descriptionThe server ...
1
vote
1answer
210 views

Maven 3 ejb-client dependency visible at compile time not visible at runtime for ejb 3.1 app client

I have a simple EJB 3.1 project which uses Glassfish 3.1.2 as AS and Maven 3 for dependency management. In the pom.xml of ejb project I set the generateClient option to true. I successfully deployed ...
0
votes
1answer
137 views

Connecting two MySQL data source using a single Connection object

Actually I need to connect two mysql datasource which are created in my application server. I'm using JPA2.0 I tried the following code. but i'm getting exception "java.lang.IllegalStateException: ...
1
vote
2answers
282 views

Why am I receiving java.lang.OutOfMemoryError: PermGen space error?>

I am developing an application using java and I am using GlassFish Serve 3+ as my container, some times when I run my application run into the following error, I am wondering what would be the reason, ...
2
votes
1answer
653 views

Glassfish AppServer or JBoss AppServer which is More Better For Production Enviroment?

I would like to know about pros and cons of glassfish server and jboss (glassfish v3 vs jboss 7.0) in using in production environment,i know more people use jboss as the application server , but ...
0
votes
0answers
37 views

Migrating Glassfish v3 to Tomcat7

Let me start by saying I am quite new to Java EE. I am trying to make a Java EE program to work on Tomcat 7 as opposed to GlassFish v3 it was initially run on. The program runs fine on GlassFish in ...

1 2 3 4 5 27