Tagged Questions

GlassFish is the open source reference Java EE implementation which implements enterprise features such as clustering and failover.

learn more… | top users | synonyms

46
votes
9answers
11k views

Would you, at present date, use JBoss or Glassfish (or another) as Java EE server for a new project?

If you started a new Java EE project today which is to be finished in about a year, which application server would you choose and why? Part of your answer should include your arguments for your ...
20
votes
6answers
9k views

Real world comparisons of Glassfish and JBoss 5?

Does anyone have experiences with both in the real world? How do they compare in terms of performance (memory usage, speed, etc)? Stability? Does JBoss Seam work well on Glassfish?
19
votes
3answers
9k views

Which Maven Glassfish plugin to use?

I've been trying to integrate deploying java .war's in Glassfish V3 through Maven. While I have found a few plugins, none of them look to be very active: Maven Glassfish Plugin Eskato's Wordpress ...
17
votes
3answers
6k views

What is difference between Tomcat and JBoss and Glassfish?

I am starting to look into Enterprise Java and the book I am following mentions that it will use JBoss. Netbeans ships with Glassfish. I have used Tomcat in the past. What are the differences between ...
12
votes
3answers
5k views

Why use Glassfish instead of Apache? What's it strengths and weaknesses?

Sorry for my ignorance here, but when I hear the word webserver, I immediately imagine Apache, although I know people use Microsoft's IIS too. However since I've been hanging out here at Stackoverflow ...
11
votes
1answer
8k views

Help getting JSTL to run within tomcat and eclipse

I've been trying to get this to run, but I can't. I'm using Eclipse Galileo, Tomcat 5.5.23 and have several JSTLs around. My latest try was to use the glassfish jar file "jstl-impl-1.2.jar". I placed ...
11
votes
5answers
2k views

Glassfish in real world

Are there any companies/web-sites that use Glassfish in production? I am new to J2EE and deploy JRuby on Rails alongside a JAX-WS Metro application in Glassfish v3 Prelude. Sometimes the quirks make ...
11
votes
5answers
2k views

Compare and Contrast Java Module/Plugin mechanisms

There are several mechanisms for module/plugin mechanisms: JSR-277 (now defunct), Project Jigsaw OSGi Eclipse plugins (currently built on top of OSGi) Netbeans plugins Android apps Glassfish plugins ...
10
votes
5answers
1k views

Glassfish as an OSGi Container

I'm evaluating OSGi containers and the subject came up of using Glassfish to contain my OSGi application components. My question is: Is Glassfish good for this? Does anybody have any experience using ...
10
votes
11answers
2k views

Singleton in Java App Server.. How bad of an idea is this?

I am currently working on some older java code that was developed without App Servers in mind. It is basically a bunch of "black box code" with an input interface, and an output interface. ...
10
votes
4answers
8k views

How would you compare Apache Tomcat & Glassfish as production servers?

I have a J2EE-based system which is running currently on Apache Tomcat. We are in discussions to move our production servers to the Glassfish server. Can someone share their experiences with either ...
8
votes
2answers
2k views

Sharing a persistence unit across components in a .ear file

In a Java EE 6 application where I'm using .ear packaging, I'd like to create a persistence unit that can be accessed from components in different .jar files. However, I'm not sure how to define this ...
8
votes
1answer
577 views

IIOP Client Authentication and ProgrammaticLogin in Glassfish v3

In Glassfish v2 I secure my JNDI lookups by enabling the "IIOP Client Authentication" checkbox in the admin console under the ORB node. In my standalone client I then perform a "ProgrammaticLogin", ...
8
votes
2answers
931 views

GlassFish on Windows vs RedHat

Wondering if it matters (reliability wise) choosing Redhat or Windows 2003 Server? Assume equal skills in both. Thanks
7
votes
1answer
177 views

Play's continuations holding http threads

We have implemented a feature in our web app that updates the GUI in response to new events in the server by using Play's continuations, just like a chat app. After running it for some time in ...
7
votes
2answers
121 views

JavaEE solution configuration best practices

We build 3-tier enterprise solutions that typically consists of several webapp and ejbjar modules that all talk to a db and have several external integration points. Each module typically needs its ...
7
votes
4answers
726 views

Glassfish 3 security - Form based authentication using a JDBC Realm

I want to understand form based security and JDBC realms with glassfishV3, so i decided to create a little app that just allows to sign in and out, i followed the instructions from this book to do ...
7
votes
5answers
3k views

Could not open ServletContext resource

This is quite similar question to one older but the solution did not work for me. I have a WAR package. In web.xml <context-param> ...
7
votes
4answers
932 views

Why do we use multi application server instances on the same server

I guess there is a good reason but i don't understand why sometimes we put for exemple 5 instances having the same webapplications on the same physical server. Has it something to do with an ...
7
votes
4answers
326 views

Maven is trying to update glassfish plugin from maven.ocean.net.au

We cannot deploy our app as Maven is trying to update glassfish plugin from maven.ocean.net.au repository, although no such repository was defined in our pom. The problem is maven.ocean.net.au isn't ...
7
votes
3answers
571 views

Glassfish v3.0.1 versus Oracle GlassFish Server 3.0.1 product - any _technical_ reason to use the commercial version?

I understand that Oracle GlassFish Server 3.0.1 product is the open source Glassfish + branding + some closed source components. Is there any technical reason to purchase the commercial version? A ...
7
votes
10answers
24k views

Log4J properties file - where to put it

I wrote a web service project using netbeans 6.7.1 with glassfish v2.1, put log4j.properties to the root dir of project and use static Logger logger = Logger.getLogger(MyClass.class); in ...
7
votes
3answers
2k views

Application configuration files for Glassfish/Java EE 5 web services

I am trying to write some simple Java web services so we can call Java code from .NET. So far, I got a proof-of-concept working under Glassfish. Pretty straightforward when the IDE does all the ...
6
votes
3answers
251 views

Clustering a stateless Java EE application with Glassfish on Amazon AWS

What's the best way to deploy a stateless Java EE 6 application in a distributed environment in order to achieve high availability and scalability? My application is stateless. Therefore, I don't need ...
6
votes
1answer
352 views

Strange file name character encoding problem with Ubuntu / Java / Glassfish

I have a Java application deployed on Glassfish web server on Ubuntu Server Edition PC. One of the services this application has to provide is to mount an ISO image in a specific folder and copy all ...
6
votes
1answer
224 views

Binding a User entity and a GlassFish Principal

I have an entity class User that contains information such as username, first name, last name and a password and I have my GlassFish 3.1 server setup to perform authentication. So far, so good. After ...
6
votes
5answers
1k views

Why use Apache Web Server in front of Glassfish or Tomcat?

Is it good idea to use Apache Webserver in front of GF or Tomcat? Does it improve the performance/security? Or there is not any reason to use Apache Web Server with GF?
6
votes
2answers
653 views

Default EJB transaction mode for asynchronous methods?

When I have an @Asynchronous method in an EJB, and I don't specify the @TransactionAttribute, then how exactly does the container handle the transaction boundaries? Obviously, it can't use the ...
6
votes
1answer
5k views

glassfish v3 vs tomcat 7 [closed]

Which one do you recommend for web and why?
6
votes
6answers
1k views

Comparing OpenEjb and Glassfish

Dear all, can we replace Glassfish with Tomcat/OpenEJB for lighter applications? What is the performance of OpenEJB comparing to glassfish as EJB container. What is the restrictions of OpenEJB ...
6
votes
5answers
19k 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?
6
votes
4answers
4k views

Inject a EJB into a JSF converter with JEE6

I have a stateless EJB that acceses my database. I need this bean in a JSF 2 converter to retreive an entity object from the String value parameter. I'm using JEE6 with Glassfish V3. @EJB annotation ...
6
votes
4answers
7k views

Java Heap Space error in glassfish

I am using a fresh Glassfish install with very little customizations. I have a Message Driven Bean (ObjectUpdateMDB) that listens to a topic, then updates the object it receives in a database. There ...
6
votes
6answers
2k views

Thread in App Server

I have a Java program/thread that I want to deploy into an App Server (glassfish). The thread should run as a "service" that starts when the App server starts and stops when the App Server closes. ...
6
votes
6answers
3k views

Advantages/disadvantages of Glassfish v3 Prelude vs Springsource dm server for Web applications?

Both of these appservers are at least in part OSGI based. One (Glassfish) is obviously J2EE while the other isn't. Now I'm at the stage of choosing a platform for a new project and the natural ...
5
votes
1answer
220 views

Disabling EJB Timer (Glassfish 3.1, JEE 6)

We have a VIP (BIG-IP) that actually moves the web service requests to two nodes each with its own glassfish server 3.1 and our services deployed. So it is not a true glassfish cluster. My problem is ...
5
votes
2answers
969 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 ...
5
votes
1answer
926 views

Xerces error: org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl

I'm developing a web application using JSF 2.0, NetBeans 6.9.1, GlassFish Server 3.1, mojarra 2.0.3, and JasperReports 3.7.6. Included in my project library is the jar file "xerces-2.8.0.jar". This ...
5
votes
3answers
1k views

Upgrade Glassfish v2 to JPA 2.0?

I'm trying to use Hibernate 3.5.5 with Spring HibernateJpaVendorAdapter on Glassfish V2 but I'm getting the following exception when the Spring context is initialised: java.lang.NoSuchMethodError: ...
5
votes
3answers
334 views

EJB testing strategies?

I'm working on a Java EE 6 application. When I started out, I was writing tests for my EJB classes by manually instantiating the EJB, then manually adding the members that normally get provided by ...
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
1answer
3k views

unit testing EJBs with Maven 2 and Glassfish 3

I've been trying to set my application up so that I can unit test it's EJBs all day but I can't seem to get past what seems like a really simple problem. I have a standard Maven web application set ...
5
votes
4answers
714 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 ...
5
votes
3answers
349 views

Using Glassfish libraries in proprietary software

I would like to use some parts of Glassfish in a proprietary software that are under a CDDL + GPLv2 license. Am I allowed to do that? I haven't modified anything in the code of these libraries, so is ...
5
votes
2answers
6k views

JavaEE in netbeans giving BUILD FAILED error upon deployment

When I try to run my Java EE program in Netbeans consisting of servlets (java pages), JSP's, beans(java pages) and HTML pages I get this error in the output: In-place deployment at ...
5
votes
2answers
3k views

How to activate SSL(HTTPS) in Glassfish 3.0 embedded API?

We are implementing an application with a webservice as component and decided to use the Glassfish 3.0 embedded distri to provide the webservice. And it works. We need a SSL(HTTPS) connection to the ...
5
votes
4answers
2k views

GlassFish problem with filter chain (has worked in Tomcat for years): java.lang.IllegalStateException: PWC3990: getWriter() has already been called for this response

We need to upgrade an elderly web application to run under GlassFish 3 instead of Tomcat in order to get EAR deployments (Glassfish was chosen as it is the reference JEE 6 implementation) ...
5
votes
5answers
3k views

Simple database web application with Eclipse and Glassfish

I just started to learning Eclipse with Glassfish server. I was looking around how can I make simple database web application, but can't figure out yet. I downloaded the Glassfish bundle for Eclipse. ...
5
votes
3answers
312 views

How to integrate OpenID into GlassFish?

I want to integrate OpenID as an authentication mechanism into GlassFish 3.1 (preview). The Development Guide says that JSR 196 could be used to implement custom authentication mechanisms like OpenID. ...
5
votes
2answers
601 views

J2EE/Glassfish Application Logic

I am trying to understand where some of my application logic should go in my J2EE Application. I am new to J2EE and am looking at loading a lot of unstructured data from a legacy database and building ...

1 2 3 4 5 37