The Java EE 6 platform significantly improves developer productivity, introduces the lightweight Web Profile for Web-centric applications, and includes the latest versions of technologies such as such as JAX-RS 1.1, JavaServer Faces(JSF) 2.0, Enterprise JavaBeans (EJB) 3.1, Java Persistence (JPA) ...

learn more… | top users | synonyms (3)

9
votes
3answers
1k views

what does this error mean: org.hibernate.DuplicateMappingException?

I'm trying to force JPA/Hibernate to generate and use only lowercase tablenames. I've implemented a NamingStrategy like this: public class MyNamingStrategy extends DefaultNamingStrategy { ...
6
votes
1answer
342 views

How Do I Use @ConversationScoped

I am writing a JSF 2.0 application, and I want to use CDI annotations instead of the "equivalent" JSF annotations. In other words, @Model or @Named instead of @ManagedBean, and @Inject instead of ...
6
votes
1answer
534 views

Properties file changes are not reflecting unless restarting Glassfish server

I am using JSF2.0 and Glassfish v3. I have a ValidatorMessage.properties file under WEB-INF>Classes folder of my project. When I make any changes to messages in this file, through my project, its ...
6
votes
5answers
20k views

How to install the GlassFish 3 server adapter with Eclipse Helios 3.6

Question as stated in the title: how to install the GlassFish Server Adapter on Eclipse Helios 3.6?
5
votes
1answer
123 views

Multiinstance Application architecture and deployment in GlassFish app server

I need to setup a hosting environment for around 100 customers per one GlassFish server (v 3.1). Each customer needs custom configured application that can be run independently from each other. (JDBC, ...
5
votes
1answer
258 views

InputStream left open from TimerTask call to Guava map; GlassFish complains on undeploy

I'm implementing ServletContextListener in order to schedule various jobs on my app server (GlassFish 3.1). I'm using contextInitialized() to schedule recurring tasks, and contextDestroyed() to call ...
5
votes
3answers
3k views

Best way to deploy on Glassfish V3

What is the best way to deploy my web project (or ear project) to remote server and glassfish? How to use ant-deploy.xml and build-impl.xml that netbeans create for this purpose? Using autodeploy ...
5
votes
4answers
753 views

What is the correct maven2 phase for deployment into application server?

I'm trying to configure pom.xml so that it automatically deploys EAR archive to GlassFish application server. I want to attach this operation to the proper maven execution phase. But can't understand ...
4
votes
1answer
69 views

EJB 3.1. Is @Local annotation needed?

So far, I almost always worked with no-interface EJBs and have a slight understanding about the need of @Local annotation. Consider this example: public interface MyBeanIntf { void doStuff(); } ...
4
votes
1answer
186 views

Glassfish - Java EE application from 32bit to 64bit OS, incomplete DB queries?

I'm facing very, very strange problem migrating from 32 to 64 bit system. I have 2 envirnoments: Development - Windows XP 32bit Production - Windows 2008 server R2 64bit On both system I use ...
4
votes
3answers
1k views

Comparison of JBoss AS 7.x and Glassfish 3.x?

I was wondering if there is a (mostly) objective comparison between the JBoss AS 7 and Glassfish 3.x? I don't care for any differences in standards or their implementation, I was thinking more about ...
4
votes
4answers
229 views

JPA. Transaction problems while migrating from Hibernate to Eclipselink

Standard JEE environment: JPA + EJB called from JSF beans. Server: glassfish 3.1.1 Code which is developed, tested and deployed with Hibernate as JPA provider, refuses to persist entities with ...
4
votes
1answer
125 views

How do I bind web service to a particular glassfish port?

I have Glassfish 3.1.1 (Metro JAX-WS stack) installation with several http listeners in my domain's virtual server. When I deploy my EAR, web application and soap services are all bound to all ...
4
votes
2answers
278 views

Admin port configuration not found' error while setting up Glassfish config in IntelliJ

When setting up Glassfish in IntelliJ IDEA I get the following Error message ´Admin port configuration not found´. Now I searched high an low but I found no place where I can set the admin port. ...
4
votes
1answer
339 views

EJB interceptors are not called when using generic interfaces

Given the following code public interface Foo<T> { T get(); } @Remote public interface Bar extends Foo<String> { } @Stateless public class BarImpl implements Bar { ...
4
votes
1answer
606 views

Redirect to protected resource or original/saved request after Servlet 3.0 HttpServletRequest#login() authentication?

As expected, the login page loads when a protected/secure resource is requested: <login-config> <auth-method>FORM</auth-method> <realm-name>jdbc</realm-name> ...
4
votes
2answers
2k views

Java EE 6: How to implement “Stay Logged In” when user login in to the web application

I am using Form-based authentication provided by GlassFish v3 btw. Most of the website, when the user about to provide the username and password to log into the system, it has a checkbox "Stay logged ...
4
votes
2answers
4k views

How to set response header in JAX-RS so that user sees download popup for Excel?

I wrote code that generate Excel file using REST JAX-RS and I confirmed that the generated Excel file is in GlassFish server directory. But my goal is when user click on the button (which generate ...
4
votes
1answer
428 views

Wicket on GlassFish v3

I was hoping this would be easier because I just want to do a simple test run with Wicket inside an EAR on GlassFish v3. However now that I have added the Wicket libraries through the netbeans plugin ...
4
votes
1answer
2k views

Deploying GWT app to Glassfish 3.0

I'm having some troubles figuring out if its possible to run a GWT Application inside a Glassfish Application Server 3.0. I was already able to run it using Tomcat, but that seemed more natural and ...
4
votes
2answers
5k views

How to use 3rd party libraries in glassfish?

I need to connect to a MongoDB instance from my EJB3 application, running on glassfish 3.0.1. The Mongo project provides a set of drivers, and I'm able to use them in a standalone Java application. ...
4
votes
3answers
4k views

Maven Embedded Glassfish plugin

I cannot seem to get the Maven Glassfish plugin working for the life of me: <project> ... <pluginRepositories> <pluginRepository> ...
4
votes
3answers
17k views

Glassfish v3 / JNDI entry cannot be found problems!

I've been having problems trying to call an EJB's method from a Java Application Client. Here is the code. EJB Remote Interface package com.test; import javax.ejb.Remote; @Remote public interface ...
3
votes
0answers
17 views

Issues with Impersonating a WCF Secure Web Server using Glassfish / Metro

I am attempting to construct a Glassfish hosted web service that impersonates (for development testing) a WCF hosted web service. I have the WSDL from the WCF hosted service, and I can construct the ...
3
votes
2answers
43 views

jdbc realm with glassfish v3: Realm properties and configuration error

I have the following database schema (MySQL): My login is a form based authentication system, to which i am trying to create a jdbc realm. My web.xml: <login-config> ...
3
votes
2answers
438 views

Java web service method receiving null argument from C# client

I'm working on a Java 6 application server which has a web service for receiving a SOAP messages containing an HL7 message. The Java application runs on Glassfish 3.1. The client is a third-party ...
3
votes
4answers
1k views

Unable to start Glassfish 3.1 even though port not occupied

I'm having trouble starting Glassfish 3.1 on a newly setup Debian "Squeeze" server. This is a testing server that has been setup and the Glassfish installation was copied from a working server to this ...
3
votes
2answers
224 views

What causes a full request on this page?

Consider the following jsf page: <h:body> <h:form id="SessionStartDialog"> <table> <tr> <td class="label"> ...
3
votes
8answers
5k views

Glassfish 3.1 CREDENTIAL_ERROR in Eclipse

I can't start Glassfish 3.1 on Eclipse Indigo with "Oracle Glassfish Server Tools" plugin on Windows 7. After installing the plugin, I've chosen "New" -> "Server" in the server view and clicked on ...
3
votes
4answers
1k views

UC_IMAGE_PATH Update Tool

I am using the Update Tool that is part of the GlassFish Server v3. I received the following error: Update Tool was unable to start. The Python runtime could not be found. To fix this problem ...
3
votes
1answer
680 views

Programmatic Java EE 6 login: how to catch the LoginException?

Hey guys I have implemented a login using a backing bean and request.login() function. It works fine but if the login fails it throws a nasty error. It's fine because I have caught a differnt error ...
3
votes
1answer
291 views

Glassfish Deploy CommandException Error

I want to deploy my application to glassvish v3 with asadmin deploy command however I get an error: com.sun.enterprise.admin.cli.CommandException: remote failure: There is no installed container ...
3
votes
5answers
521 views

GF 3.0.1 + Virtual Server: www.myhost.com:8080/projectname-war => www.myhost.com. How?

EDIT I need to change www.myhost.com:8080/myproject-war to www.myhost.com. Here is what I've been trying: I configurate the Virtual Server: server. I have still have default Network Listeners to be ...
3
votes
1answer
2k views

Custom Glassfish Security Realm does not work (unable to find LoginModule)

I'm trying to get a Custom Security Realm in Glassfish working (i tried 3.0.1 final and 3.1 B33). I read nearly all tutorials about this, but it doesn't not work on my System. I'm getting the error ...
3
votes
2answers
365 views

throwing exceptions from EJB interceptors

Let's say I have an interceptor that looks smth like this: public class AuthorizationInterceptor { Logger log = Logger.getLogger(getClass().getName()); @AroundInvoke private Object ...
3
votes
3answers
907 views

Accessing Hibernate Session from EJB using EntityManager

Is it possible to obtain the Hibernate Session object from the EntityManager? I want to access some hibernate specific API... I already tried something like: org.hibernate.Session hSession = ( ...
3
votes
1answer
526 views

How can I print the full stack trace with GlassFish?

I have a GlassFish web application which throws errors (listed below) to the webbrowser. But my problem is that I can't see the full stack trace. I think I have to know what the real problem is. How ...
3
votes
2answers
2k views

Java EE 6 - Embedded container EJB tests

This questiong is regarding Java EE 6, using glassfish v3 embedded-all. I have a unit test that uses EJBContainer to test my stateless EJB. Problem is I'm having trouble looking up the EJB (remote) ...
3
votes
1answer
416 views

Add JEE Security Roles dynamically without using deployment descriptor

I'm developing a Java EE 6 application using Glassfish 3.1, B06. To secure my app, i'm using a JDBCRealm and programmatic security. This works fine to check username and password. But when it comes to ...
3
votes
1answer
1k views

Learning resource for Configuring Hibernate JPA 2.0 on Glassfish server

I am trying to create a new JEE project using hibernate and JPA 2.0 on the glass fish server. Can you guys provide me some resources to configure the above so that they work seamlessly? I have tried ...
3
votes
2answers
2k views

Performance in JavaEE 6 Applications (Glassfish v3) - Logging, DI, Database-Operations, EJBs, Managed Beans

The important technologies i use are: Glassfish v3, JSF 2.0, JPA 2.0, EclipseLink 2.0.2, log4j 1.2.16, commons-logging 1.1.1. My problem is that some parts of the application are pretty slow. I ...
3
votes
2answers
2k views

Automatically start JavaDB (Derby) on GlassFish

I am planning to deploy GlassFish v3 open source edition to a production environment. It comes with JavaDB (Apache Derby) which is just want I need. The only problem is that JavaDB is not started by ...
3
votes
1answer
506 views

How m2eclipse create a new domain by maven-glassfish-plugin?

version is glassfish v3 I want to trying maven-glassfish-plugin but I don't know how to create a new domain . Plz step by step say me,thx. And I want to looking pom.xml,thx
3
votes
2answers
3k views

Splitting EJBs and interfaces into separate module — deployment fails

I'm having trouble following this guide to "extract" my interfaces and entities from my EAR to use them from another Web Application: I use NetBeans 6.8 and Glassfish 3.0.1 "Java Class Library" ...
3
votes
2answers
3k views

How do I access Glassfish V3 Administration Console Website from a remote host

I have installed Glassfish v3 on a standalone server running ubuntu-server 9.10. I can open the Admin website if I use a browser running on the server by browsing to: http:// localhost:4848/ I ...
2
votes
0answers
23 views

Ejb3 GlassFish - JNDI Lookup failed in SerialContext - NameNotFoundException

I'm using EJB3, GlassFish 3.0.1 and eclipse helios I have a remote EJB @Stateless (mappedName="TestBean") public class TestBean implements TestBeanRemote { public int add(int a, int b){ return a+b; ...
2
votes
1answer
48 views

Spring + Felix war = FileNotFoundException

Is it possible to use spring inside war bundle on felix? I use spring 3.0.5 with felix on glassfish 3.1 I tried to enter component-scan tag inside OSGI war bundle in felix, and I'm getting the below ...
2
votes
2answers
45 views

Disabling all schedules in Glassfish 3.1

How can I disable all schedulers (@Schedule annotated) in a project deploing on Glassfish 3.1 Maybe there are some config entries to do this? I have about 20 EJBs with schedulers in my project and if ...
2
votes
1answer
77 views

Cannot Filter Context Root Servlet Requests

I have a @WebServlet("") and a @WebFilter(urlPatterns = {"", "/", "/*"}, asyncSupported = true) But the filter is not being invoked for the servlet :-( I am using @WebServlet("") instead of ...
2
votes
2answers
77 views

@MessageDriven transactions and redelivery semantics

What's the best way to accomplish the following? @MessageDriven bean does some work on database on failure, I want to roll back the DB transaction but I also want the JMS message NOT to be ...

1 2 3 4 5 13