GlassFish is an open source, production-ready, Java EE-compatible application server.
4
votes
0answers
199 views
glassfish Rest WEB9031 Exception
I have a Rest Web service deployed on Glassfish 3.1.2. I sporadically get a particular exception on it.
...
3
votes
0answers
32 views
Making Username Case-insensitive in Glassfish JDBC-Realm
We have a Glassfish JDBC-Realm which uses an Oracle11g database for authentication. The username field is case sensitive, is there a way to make the username authentication case insensitive?
3
votes
0answers
91 views
Glassfish taking 20s to do hot deployment, is that right?
I'm working in a JSF project with Eclipse and Glassfish 3.1.2.
Every time I did a minor change and save it, Glassfish do the hot deployment, but is taking too much time to do that, about 20s, at ...
3
votes
0answers
168 views
Glassfish 3.1.2.2: IIOP1002: Principal propagation: Cannot find principal information in subject
I am trying to track down the cause of an annoying message in glassfish that is polluting our log files.
To simplify our set up, we have 2 glassfish servers running 3.1.2.2.
Server A has a web ...
2
votes
0answers
80 views
How to know which web service method has been throwing an exception in GlassFish?
The following error message appears in the log file. My web service publishes many methods and this stack trace doesn't show which one was invoked when this exception occurred. There are too many ...
2
votes
0answers
368 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 ...
2
votes
0answers
103 views
Utility Classes in Jar Cannot find EJBs When Packaged In EAR
I have some core functionality used across webapps packaged in a common classes JAR. This JAR has classes that reference EJBs and a web app that references both the CORE.jar and the EJB.jar.
...
2
votes
0answers
155 views
Tomcat 7 accessing EJB on glassfish 3
I've seen very many post, and i googled a lot but i'm not able to get out of this problem.
I have an EJB module deployed on a glassfish v 3.1.2, and i want to access it by a tomcat v 7.
There seems ...
2
votes
0answers
278 views
Glassfish 3.1.2 - Understanding EJB (MDB) Thread Pools
I have a MDB that receives messages to process a batch (BatchProcessor). Instead of working on one item in the batch at a time, the BatchProcessor will create a BatchItemProcessor and using a ...
2
votes
0answers
198 views
Calling CMT bean from BMT bean results in “Local transaction already has 1 non-XA Resource”
I have one EJB with Bean-Managed transaction:
@Singleton
@TransactionManagement(TransactionManagementType.BEAN)
public class BmtBean {
@Resource
private DataSource ds1;
@Resource
private ...
2
votes
0answers
210 views
Make a hot deploy on Glassfish with Maven
I have built some POM file to deploy an EAR to Glassfish V3.
It's work well for first deployment but the next deployment, it's crashed :
[INFO] asadmin --host localhost --port 4848 --user admin ...
2
votes
0answers
158 views
The Class x having annotation javax.servlet.annotation.WebServlet need to be a derived class of javax.servlet.http.HttpServlet
I tried to reproduce a Servlet example which implements a Servlet using only the javax.servlet.Servlet interface. However, it is not working. When I try to run the servlet using the web browser, it ...
2
votes
0answers
192 views
Updating Richfaces from 4.0.2 to 4.2.2 breaks web app deployment
An existing and working Netbeans v7.0 project had it's 4 richfaces jars replaced to a newer version after which the project was cleaned and built successfully, the glassfish server was stopped and the ...
2
votes
0answers
202 views
Exception in multipart/form-data web service on GlassFish OSE 3.1.2.2 (build 5)
After updating from GlassFish OSE 3.1 (build 43) to GlassFish OSE 3.1.2.2 (build 5) multipart/form-data web services doesn't work any more. There is a NullPointerException caused in ...
2
votes
0answers
541 views
Glassfish - uploading images - doing it right
I am on latest glassfish (3.1.2) - so no need for apache FileItem and no bugs with getPart(). I read that the best practice on uploading images is saving them on the file system (see here for ...
2
votes
0answers
233 views
@PostConstruct method not called when deploying onto Glassfish
I am planning to use LiquiBase to manage a database, I want it to run every time when I deploy the web application to Glassfish 3.1. In order to do this I wrote the following class:
@Singleton
...
2
votes
0answers
691 views
How to configure GlassFish logging to show milliseconds in timestamps?
I have to admit, configuring logging has me a bit baffled :(..., so I hope that someone here can help.
Basically, I need to configure the logging to server.log so that the timestamps include ...
2
votes
0answers
229 views
Glassfish containter security authentication - how to add salt (j_security_check)
How to add salt when I want to authenticate users using web.xml security (j_username, j_password, j_security_check)?
Now, I am using MD5 or SHA256 (configured in Security Realm).
Using Glassfish ...
2
votes
0answers
264 views
What Hibernate dependencies should be supplied with a Glassfish Update Center package?
I'm trying to update the Glassfish Hibernate provider from its current 3.5.0 version to 3.6.6.Final.
I need the community's help (and that of the Glassfish developers). I submitted this question via ...
2
votes
0answers
1k views
Error 404 on not found JSF-file
When request not exists jsf-page (for example blabla.jsf) I have a problem in Glassfish 3.1: the server response error 500:
SEVERE: PWC6117: File ...
2
votes
0answers
773 views
Glassfish module deploy fails with “In-place deployment” error message
It was my first time to use Java EE and I am having an error everytime I run my html file.
This is the error I am seeing:
In-place deployment at C:\Documents and Settings\scybermonde\My ...
1
vote
0answers
21 views
GlassFish Server deployment and MySQLNonTransientConnectionException
When I deploy my application, after a while I get this exception:
javax.servlet.ServletException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): ...
1
vote
0answers
11 views
Unable to stop Derby database
I have Glassfish 3.1.2 installed in my local machine. I tried starting the asadmin database using the command
asadmin start-database
It started fine. Now, when I am trying to stop it, it gives me ...
1
vote
0answers
20 views
Java EE doesnt update the changes I make
It's probably some simple setting I cannot find but since yesterday my eclipse doesn't propagate the updates I do to the code of the servlet.
Only the source code doesn't get updated the JSP pages ...
1
vote
0answers
20 views
How to obtain ServerContext in glassfish 3
I am the "proud" heir of a 12+ year old code base that has been worked on by many engineers over the years. I have been tasked to upgrade our system from glassfish 2.1.1 to glassfish 3.1.2.2. Most ...
1
vote
0answers
101 views
Avoid loosing Session and ViewState data with Glassfish clustering in a JSF application
We are using this configuration in our clustered application :
glassfish-web.xml :
<session-config>
<session-manager persistence-type="replicated">
<manager-properties>
...
1
vote
0answers
57 views
ADF Glassfish Autodeploy Error
I am able to deploy an adf application to glassfish server from jDeveloper directly (and the application runs fine too), but when I deploy an EAR file and then put it into the autodeploy folder of my ...
1
vote
0answers
55 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
98 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 ...
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 ...
1
vote
0answers
25 views
Glassfish shows nullPointerException while loading
My glassfish works properly, but when it is loading shows the following errors in console, whats the reason??
SEVERE: Exception while visiting java/lang/Object.class of size 1515
...
1
vote
0answers
67 views
Where does Glassfish 3.1 caches JSP files?
I tried to enable jsp caching globally as indicated in the Oracle Glassfish 3.1 documentation you can find here: http://docs.oracle.com/cd/E18930_01/html/821-2418/beagu.html#beagw
I started my domain ...
1
vote
0answers
364 views
GlassFish deployment exception “jersey restful with entities”
The following exception was thrown by glassfish server 3.1.2 with Netbeans IDE. I'm trying to build a restful service using jersey and entities from database(using hibernate).
where is the problem ...
1
vote
0answers
206 views
Web Service calls fail with Invalid chunk header on Glassfish 3.1.2.2 + Apache2 + proxy_ajp
I have set up Apache 2.2.16 in front of Glassfish 3.1.2.2 server to provide HTTPS on TCP 443. I am using Apache proxy_http and proxy_ajp modules to relay the requests to Glassfish which is listening ...
1
vote
0answers
382 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:
...
1
vote
0answers
242 views
Eclipse glassfish Permission denied: listen: 4848
I'm trying to setup glassfish in eclipse, but I get this error when starting:
SEVERE: Shutting down v3 due to startup exception : Permission denied: listen: ...
1
vote
0answers
57 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 ...
1
vote
0answers
118 views
Security Error Calling REST Web Service from Glassfish 3.1.2
I created a proxy RESTful web service in Glassfish 3.1.2 for an Ajax application. I define a RESTful web service in Glassfish that then calls an external RESTful web service. I use the Jersey Client ...
1
vote
0answers
40 views
How to programatically configure proxy settings using metro webservices client
I have a requirement where I need to set the proxy setting programatically using metro webservices client. Can any one suggest which API I need to user in order to set the proxy host, port.
1
vote
0answers
79 views
Client's Transaction Aborted when accessing two databases
I have a propertiesbean which gives me SqlSessions.
This bean is annotated with all this jazz @ the class level
@Singleton
@LocalBean
@Startup
...
1
vote
0answers
365 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 ...
1
vote
0answers
184 views
Secure SSL Webservices under Glassfish
Hello I'm deploying a webservice (ejb) under Glassfish, I just follow this steps without any result ...
1
vote
0answers
139 views
Create JDBC realm on glassfish - wrong pass?
I've followed this tutorial http://blog.gamatam.com/2009/11/jdbc-realm-setup-with-glassfish-v3.html
The problem is that I get login dialog again and again like pass is wrong (and never page), but I ...
1
vote
0answers
153 views
JSF navigation rule doesn't work after glassfish update
I have navigation rules like
<navigation-case>
<description>
Global rule for going to the items page from any page
</description>
...
1
vote
0answers
118 views
Spring 2 Security on Glassfish 3 Shows Basic Auth after form Auth
We are trying to upgrade our existing Spring 2.5 based application to Glassfish 3.1.2.2.
This application is working fine on Glassfish 2.1 with Spring 2 security. We are using our custom ...
1
vote
0answers
112 views
Glassfish 3.1 application.wadl reorder elements
I am currently using Glassfish to host a bunch of RESTful Web Services. Glassfish is very helpful and generates a wadl for me. The problem that I'm having is the wadl it generates puts all the ...
1
vote
0answers
76 views
What windows user does glassfish 3.1 runs as?
I'm trying to execute this from a webservice running on netbeans 7.2 prepackaged glassfish:
void correrMotor() throws InterruptedException {
try {
// Runtime rt = Runtime.getRuntime();
...
1
vote
0answers
389 views
Glassfish 3.1 Remote client connecting to JMS queue in cluster
Glassfish 3.1.2
Ubuntu 12.04
I've created a cluster of two nodes and have a JMS queue.
I'm having issues trying to connect to this JMS queue using a remote standalone client.
The cluster JMS listener ...
1
vote
0answers
210 views
Java secure https web service and Transport Security (SSL)
I'm trying web sevice security with Java and Glassfish 3.1: I configured an Hello World web service to run on https listener of Glassfish (on port 8181) by setting "Transport Guarantee" of endpoint of ...
1
vote
0answers
174 views
Glassfish Bean Reference Lookup Fails
Wierd problem here. I have a bean with a remote interface declared and an implementation defined as a Stateless bean. Since I want to be able to replace the bean with a different bean depending on the ...

