0
votes
0answers
9 views

Caught Glassfish Server Exception in java program

I am using open-source glassfish 3.1.1. I have a web application running on it which is using Java Message Server (JMS). I have being experiencing JMS exception frequently (number of producer exceed ...
6
votes
1answer
63 views

Where can I configure the thread pool behind the @Asynchronous calls in Java EE 6?

I recently learned that I can easily make any session bean method Asynchronous by simply adding the @Asynchronous annotation. E.g. @Asynchronous public Future<String> processPayment(Order ...
0
votes
1answer
17 views

How to find, in runtime, the jndi name that was given to my EJB

I have a static method that needs to lookup for a EJB instance. The problem is that the JNDI name depends on the name of the JAR where the Interface for the JEB is located. What I'm trying to do is ...
0
votes
0answers
8 views

Glassfish Exception Stacktrace hidden line numbers

Downbelow you see a part of a stacktrace of a exception. I cannot find the line number as usual in the trace because there it says unknown source. I guess it is because of @EJB Injected bean method ...
0
votes
1answer
20 views

Check if there are JMS messages on Glassfish 3 cluster nodes

I'm trying to check if there are messages on a queue. To access the queue I'm using a Connection Factory, a Destination Resource and JNDI lookup (method below). The problem comes when the Connection ...
0
votes
1answer
21 views

Running EJB timer on each node in a cluster

Is it possible to run EJB Timer (@Schedule) on each node of a cluster? Is it enough to declare the timer as non-persistent? Do I need a database which can be accessed by both nodes or can I use the ...
0
votes
1answer
14 views

Glassfish FileNotFoundException on First Load

I've created a simple login test setup using form-based authentication (using JSF). I have both a login.jsf page and an error.jsf page to redirect to on login failure. Now, in the tutorial I'm ...
0
votes
0answers
56 views

Passing parameter in EL action doesn't work with RequestScoped bean

Edit: using JSF scopes now and JSF managedbean instead of CDI as it doesn't work with CDI beans regardless of RequestScoped, ConversationScoped or SessionScoped. I'm trying to pass a parameter to a ...
1
vote
1answer
36 views

How to find a ininite loop in glassfishv3

I have s.t. like a infinite loop some where in the code. That place is somehow not called often. So after a couple of hours one of the cpu's on the linux machine start's running at 100% then after a ...
0
votes
0answers
77 views

Jersey 1.3 + GlassFish 3.1 with pagination (next, prev, self), build ok, run ok but no results in browser

I'm currently following the old tutorial here about how to make REST java web services with Jersey and including hyperlinking (next, prev and self URI). I tried to passed it to Java EE 6 instead of ...
0
votes
3answers
76 views

Configure the path (localhost) of the war application to be the root (Java EE)

I want to change the path when I run my war-application locally... Right now, it is running on the default setting... http://localhost:8080/myproject-war/ and I want it to be the root, something ...
0
votes
1answer
31 views

Java Messaging Service issue with Java EE and glassfish server

I am new to Java Messaging Service and not really completely sure how it all works. I am using JMS with a Java EE project in NetBeans. The server type I am using is glassfish 3. Here is my ...
0
votes
1answer
83 views

javax.jms.MessageFormatException: Invalid message format

When I try to send Date object in MapMessage using JMS on Glassfish 3.1 Open MQ I get the following error: javax.jms.MessageFormatException: [C4017]: Invalid message format. Following is the code ...
0
votes
0answers
100 views

Glassfish 3 stand-alone client hangs during ejb lookup

Per this guide http://docs.oracle.com/cd/E18930_01/html/821-2418/gkusn.html#gkusp I am trying to access an ejb component from a remote stand-alone client. When executing my remote client, I have the ...
0
votes
1answer
168 views

@ejb injection works, jndi lookup doesn't in Glassfish 3

I have a stateless ejb. @Remote public interface MyService { ... } impl @Stateless public class MyServiceImpl implements MyService { ... } I have another bean which is trying to use ...
0
votes
1answer
33 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 ...
1
vote
0answers
63 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 ...
1
vote
0answers
113 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 ...
10
votes
1answer
652 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 ...
2
votes
1answer
250 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
1answer
98 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 ...
1
vote
2answers
293 views

JMS synchronous Request/Reply using temporary queue timed out reading

I'm currently having a problem with jms synchronous request/reply approach, this is what happens: 1.) ProgramA create a jms message, a temporary queue and set it as a replyTo. 2.) ProgramB has a ...
0
votes
1answer
114 views

Glassfish cluster + Remote instance fails to recover EJB timers

Our setup is: Glassfish version 3.1.2.2 - DAS and instance-1 running on the same machine, while instance-2 is running on another machine in the same network as config node. We have set up ...
3
votes
1answer
123 views

Java-EE6: How to auto-redeploy Glassfish 3 application from inside the server component?

I have a 3-tiered application design with Glassfish 3.1.2.2, MySQL 5.5 Server and a Stand-alone Swing-based client application. I am currently facing the problem of how to automatically update / ...
0
votes
0answers
189 views

Glassfish Server Session invalidate

I have deployed my web application on Glashfish 3.2.1. I have set the session timeout to be 30 minutes in the web.xml. My application has a login page and once this user is authenticated(password ...
1
vote
1answer
304 views

Redirect after Realm authentication on Glassfish

I'm currently running a JPA/EJB/JSF application on Glassfish and using the security JDBC realm for authentication. The realm works pretty well, fulfilling the requirements, until the customer asked ...
0
votes
1answer
947 views

Glassfish can not find JNDI DataSource while deploying

I am trying to deploy an ear in glassfish, but it fails to depoly it complaining that it can't find the DataSource written in the persistence.xml In persistence.xml DataSource is configured ...
1
vote
0answers
388 views

Glassfish warnings : Avertissement: Multiple [2] JMX MBeanServer instances exist

I use NetBeansIDE 7.0.1 with Glassfish 3.1 and for a project with EJB and JPA for the presentation and the MySQL database. all works fine but whenever I get the following warnings: ...
0
votes
1answer
255 views

java.lang.NoClassDefFoundError: com/mongodb/ServerAddress

i have an jee6 application with eclipselink and mongodb. i use the nosql-extension org.eclipse.persistence.nosql when i deploy my application on a local glassfish instance everything works fine. ...
0
votes
0answers
91 views

Eclipse + Oracle GlassFish Plugin, webapp will not deploy servlets

I have several projects in eclipse that will not deploy to glassfish. When I attempt to publish the application, the application only deploys as a web site. that is to say, the web.xml file does not ...
1
vote
0answers
60 views

Java EE 6 and JAXRPCSecurity

I'am trying convert my Java EE 5 (GlassFish v2, Metro 2.1.1) application to Java EE 6 (GlassFish 3.1.2, Metro 2.2.1-1). I have problem with webservice client, which security is based on ...
0
votes
2answers
173 views

RESTful web service returns JSON object but missing fields

I have a simple restful WS on top of a jpa entity created using the net beans wizards and hosted in glassfish 3.1.2. When calling the WS only fields with data are returned. Null value fields are ...
0
votes
1answer
178 views

Why i cannot deploy my ear on Glassfish

I have standard maven project in netbeans (netbeans' enterprise application), that have 1 war, 1 ejb and 1 ear modules. I want to inject with @Inject my @Stateless from ejb to war (REST class) using ...
0
votes
0answers
92 views

JaxWS authentication

My application is using the aikesommer authentication (http://code.google.com/p/authenticroast/) and extends FORM Authentication public class CustomAuthenticator extends FormAuthenticator { ...
1
vote
0answers
384 views

How to configure Log4j in a multi project maven

I have a maven war project which depends on an EJB maven project. The EJB project handles all business logic including DB access through Hibernate. Both projects are JEE6 and run on glassfish 3.1.2 ...
3
votes
2answers
240 views

Configuration Management in JavaEE

My Goal I’ve got a JavaEE environment (in my particular case it’s a Glassfish Web Profile) and I want a container independent way of configuring my application with the following features: Default ...
0
votes
0answers
93 views

Sharing simple spring, hibernate, glassfish, restlet 2.0 program

Will someone please have the kindness to create a very simple crud rest api using restlet 2.0, glassfish 3.x, j2ee6, hibernate, and mysql? Or if you have something similar that you don't mind ...
1
vote
1answer
186 views

Are No Interface View (@LocalBean) EJB beans initialized at server startup

I am using Glassfish server. It seems that the @LocalBean is getting initialized at server startup. For other beans they are correctly initialized on look up. Is this the correct behaviour for ...
0
votes
1answer
514 views

Glassfish deployment errors with uninformative error messages

I am developing a Java EE enterprise application using NetBeans IDE. I can develop and test my whole application on the Glassfish instance bundled with NetBeans IDE, but I face kind of vague errors ...
0
votes
2answers
160 views

Good IDE for Spring MVC+Glassfish+Maven+GWT? [closed]

I need some suggestion on IDE for following req.... server : Glassfish3 Bulid tool: Maven3 with Spring MVC + GWT... Currently I am going to setup Netbeans as they have built-in support for ...
0
votes
2answers
620 views

GlassFish 3.1.2.2 war can't find jar inside ear

I have built an ear with this structure (not all files shown here): myapp.ear/ myapp-ejb.jar myapp-web.war META-INF/ application.xml lib myapp-common.jar The problem ...
0
votes
1answer
63 views

Does glassfish 3.1.2 Open source edition contain all Jave EE 6 compenents?

Does glassfish 3.1.2 Open source edition contain all Jave EE 6 compenents? I'm trying to figure out my project dependencies
0
votes
1answer
125 views

Error while deploying several inherited web services on glassfish v3

I try to deploy several web services on glassfish v3. Unfortunatly I get in 6 of 8 tries an error that the bundle doesn't contains an bean. The strange is that it will work when i try it several ...
0
votes
0answers
46 views

unix java EE 6 tutorial fix broken paths

I'm on Linux and I just installed the Java EE 6 glassfish server and ran the update tool to install the tutorial. But the tutorial installed all the files to the same folder with directories ...
2
votes
2answers
222 views

Servlets - use constructor or not?

Constructors in servlets is considered a good/bad practice ? How does it compare to the init() method ? Using servlet-3 and vanilla javaEE (CDI provided by javax.inject package)
0
votes
1answer
978 views

JSF 2.0 + Programmatic authentication = 403 :)

I am transitioning to GlassFish 3.1.2, and can't seem to resolve a problem with authentication. The agenda is simple: I want a login bean to do programmatic authentication for a user. The ...
1
vote
1answer
453 views

simple Servlet CDI generating NullPointerException

I am working on sample application called bookstore where I have used Dependency Injection. Very simple application. I am using JavaEE 6, GlassFish 3.1.2, Static data in a class (no db), Eclipse Juno. ...
3
votes
1answer
1k views

Glassfish 3.1 JMS Queue Monitoring and Statistics

I come from the world of Tibco and EMS (the same as JMS) and I was wondering if there is a GUI way to see statistics of the JMS queues in Glassfish. For example, I would like to know how many ...
0
votes
1answer
474 views

Programmatic login based on JDBCRealm

I'm trying to implement OpenID authentication in a simple JSP app. The FORM-based authentication really drives me nuts, since there is no way to listen for pre, post-authenticate events. When I ...
2
votes
1answer
2k views

GlassFish: How to set Access-Control-Allow-Origin header

I am using the latest version of GlassFish. I want to set the Access-Control-Allow-Origin header in response so that my API which is hosted on GlassFish can be called from any domain. But I am not ...

1 2 3