1
vote
1answer
21 views

Unable to load class warning messages with glassfish3.1.2, primefaces 3.4, maven

Maven : Strange ClassNotFoundException of Primefaces library on deploy Hi there everyone! The link above mostly describes my problem, but since it is not solved I'm a bit stucked with this. So the ...
2
votes
1answer
39 views

Any Idea where I can find the server.log file when using Glassfish?

I get the following error: deploy?DEFAULT=C:\Users\Bart\Documents\SE ...
0
votes
1answer
47 views

Glassfish - disable logging to server.log

I currently have a Glassfish server writing the logfile to the server.log. I read the logfile with tail -f server.log via cygwin. My backend builds like 3 minutes and without logging to the file it ...
0
votes
0answers
45 views

How to add a load time aspect to an application deployed on Glassfish?

I'd like to add a simple load time logging aspect to an application deployed on Glassfish. The app is packaged as FooBar.war, which is deployed to the autodeploy directory of Domain1; Glassfish ...
0
votes
1answer
113 views

logging and/or debugging on remote Glassfish

I have a problem. I deployed a web service on a remote Glassfish instance. Now I need to have some simple log or debug system in order to correct my code( using simple prints would be preferable). My ...
0
votes
0answers
118 views

Glassfish - Using a custom logging configuration file to view JSF framework logging

I am trying to use a custom logging configuration file in Glassfish 3.1.2.2 in order to look at JSF framework logs, here is what I tried: Created the "java.util.logging.config.file" system property ...
0
votes
2answers
174 views

Location of GlassFish Server Logs

I have NetBeans IDE installed on a Windows 7 64-bit machine. Obviously, NetBeans comes with the GlassFish server. I am currently having problems with a project and would like to check the server ...
0
votes
1answer
57 views

java.util.logging not working in Gwt and Glassfish

I'm working on create gwt application and deploy it on glassfish. I used java.util.logging for logging, however it seems to not work as I cannot find any log in server.log. I already put into ...
0
votes
0answers
67 views

Gatling results storing [closed]

I have simple servlet on Glassfish and i'm testing it using Gatling tool. Servlet do not important things and count how much does it take. Then it should store this time. Now, my question is: Do you ...
2
votes
2answers
94 views

logback on a mac returns question marks instead of words

I'm just start using logback for logging my Java project running on glassfish3 AS, and I'm noticing some strange thing. This string of code LOG.error("Вычисление {} уже произведено.", calc); ...
0
votes
2answers
126 views

How to remotely view activity logs from a Java EE app in Vaadin?

I'd like to remotely monitor the activity of my Java EE application (deployed on a glassfish server). Basically, I want my client-side implemented using Vaadin to display logs about the server-side ...
0
votes
1answer
74 views

running tinylog inside glassfish

I'm trying to run tinylog inside glassfish 3.1.2.2. First I copied tinylog.jar into /glassfish3/glassfish/domains/domain1/lib. Second I created tinylog.properties inside domain1/config. ...
0
votes
1answer
89 views

Glassfish log of uncaught exceptions

I have a fairly simple question: Where do uncaught application errors are logged to in Glassfish 2.1? In a webservice implementation an InvocationTargetException is raised and returned as a ...
3
votes
1answer
165 views

Setting log level for inner class (in Glassfish)

I'm looking for a way to set the log level for an inner class, let's say I have the following class: package mypackage; class Outer { Inner inner = new Inner(); public void logSomething() { ...
0
votes
0answers
58 views

Catching EJBAccessException

I have implemented exception class what extends EJBAccessException. Why it writes stack trace to glassfish server log file after it's thrown even I catch it and do nothing in the catch clause? Is it ...
3
votes
2answers
225 views

Is it better to use Glassfish logging facilities?

My JSF application is deployed with a recent version of Glassfish, using EclipseLink as a JPA provider. I wrote a fairly simplistic logging facility that stores log records in the JPA data base. The ...
1
vote
0answers
81 views

glassfish 2.1 best approach for logging?

There are several discussions out there how to configure glassfish to use log4j and similar stuff. But what is the best approach for logging in glassfish 2.1? Which log framework (log4j, slf4j, ...
1
vote
1answer
488 views

CDI - using interceptor class from library

Can we use annotation-based interceptor in ejb-jar from a different ejb-jar? I tried it with the @Logged example, but stucked with it. Can somebody help me out? In core.jar: @Inherited ...
0
votes
0answers
63 views

.lck file created in glassfish 3.1.1 server

I am running a web application using glassfish 3.1 in my server, and in order for glassfish to keep running when I log off the server, I created a windows service. The problem is when I start the ...
0
votes
1answer
516 views

Java Logging - logging is done, where is my log file

I am using java.util.logging, NetBeans IDE and Glassfish Server. I have loaded a custom log properties file. Application is doing the logging but the log file is missing. handlers = ...
4
votes
4answers
2k views

GlassFish 3: how do you change the (default) logging format?

The question originated from here: http://www.java.net/forum/topic/glassfish/glassfish/configuring-glassfish-logging-format - without an answer. The default GlassFish 3 logging format is very ...
2
votes
1answer
478 views

Reducing line width of glassfish log

Does anyone know how I can reduce the width of each line on a glassfish log. It seems to contain lots of information that I do not need. Below is an example of one line. ...
2
votes
1answer
905 views

Glassfish 3.1.1 suddenly stopped writing to server.log

I changed one of the log levels in the admin console, and Glassfish 3.1.1 stopped writing anything into the domain1/logs/server.log. I since reverted the change and tried restarting the server a ...
0
votes
1answer
331 views

Glassfish logging suddenly stops

We're running many instances of glassfish in a linux box and suddenly they stop logging (a blank server.log file is created and no logging data is appended to it). it happens after something like a ...
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 ...
0
votes
1answer
698 views

How do I set logging level in Glassfish?

We are running glassfish 2.1; I want to reduce the chattiness of the logging to server.log but cannot find what config file allows me to do this. (I'm assuming this will use log4J syntax.) thanks!
2
votes
2answers
73 views

How can I log that a log file is newly created?

I've been given the requirement that the first line of my log files must begin with a specific header. This header should specify that this current file is newly created. Even when log files are ...
1
vote
3answers
703 views

Spring on Glassfish - Get Hibernate parameters logged?

I have a Spring application running on the Glassfish Webserver and I'm seeing some very strange behavior in hibernate queries. I would like to be able to see the query AND its parameters, not just ...
0
votes
2answers
506 views

How to enable logging on com.sun.enterprise.security.auth.realm.ldap.LDAPRealm?

I've just started working with GlassFish (3.1.1) and especially with configuring an LDAPRealm. I have it kind of working, and I've started to look at the source code for the realm, and noted that ...
0
votes
2answers
534 views

Is it possible to make glassfish3/eclipselink to log bind varibles values into log file?

I have application deployed on GlassFish 3.1.1. I use Eclipselink as JPA provider. Is it possible to make glassfish/eclipselink to log bind variables' values in sql queries to file? At the moment I ...
1
vote
0answers
145 views

Linking Stacktrace from Glassfish log output to source code in eclipse

I'm running an application in a Glassfish server from Eclipse using verbose output. Therefore, all the logging gets written into the console. The thing is that when an exception occurs, I can see the ...
1
vote
1answer
322 views

How to log to syslog from clustered Java application server

My Java EE application, which currently runs on Glassfish 3, is currently using java.util.logging to send logmessages. This is intercepted by Glassfish and written to files. I'd like to switch to a ...
8
votes
4answers
3k views

DCH class error with JavaMail

I'm attempting to set up a simple logging test with JavaMail in Java EE 6, using the jar files provided with Glassfish 3.1. There seems to be a wealth of questions out there on this subject, but I ...
1
vote
1answer
359 views

How to get caught exceptions of my application in the Glassfish 2.1 server log?

We have ported an EJB application from BEA Weblogic 8.1 to Glassfish 2.1. The client is accessing the server through RMI, no web client. In Weblogic exceptions were logged automatically to ...
0
votes
1answer
276 views

How to log webservice calls with Glassfish?

I would like to know how to configure a Glassfish server for logging the webservice calls ? I would like especially : - that the log will contain the adress of the caller, - and that the log will be ...
0
votes
1answer
214 views

How can I get in Glassfish 3 a log of what is injected and how?

Question title sums it up. However, to be a little more clear. I have EJBs scattered in my application, and I sometimes get exceptions like the following : ...
1
vote
1answer
412 views

GlassFish 3.1, Jersey/JAX-RS logging

is there a way to log incoming JAX-RS requests? Or is this pretty much logging HTTP requests?
5
votes
1answer
3k views

How do I configure log4j per deployed application in Glassfish 3?

I'm trying to use log4j to handle the logs for a web-service which is running under Glassfish 3. Most of the guides I've seen using log4j with Glassfish want me to mess around with Glassfish global ...
0
votes
2answers
262 views

Glassfish server.log compression and archiving

I'm looking for a simple solution for the following problem. We have some glassfish server.log files that are getting quite large (about 700mb per day) for a high traffic web application. We need to ...
1
vote
1answer
299 views

Glassfish Logs Date and DST?

So, the system time on my Ubuntu server updated appropriately with DST on Sunday. However, the timestamp on my glassfish logs are still an hour off. I've restarted the application server, but this ...
0
votes
2answers
230 views

What domain files would an application running in Glassfish have access to?

I'm working on a beta release of an application. This is a Java app that runs on Glassfish. Obviously we are getting bug reports from time to time. I would like to provide my users with a simple ...
3
votes
1answer
5k views

How do you configure application logging with glassfish?

I'm new to logging and am trying to implement it in a webapplication using glassfish. I have implemented my own loghandler using JDBC, but how am I supposed to configure the system to make use of it? ...
1
vote
3answers
597 views

java web app cannot create log files on glassfish v3(using log4j)

As far as I can tell, it can write to console on production environment, it also can create log files on my local glassfish. Any thoughts on this issue? Thank you!
1
vote
2answers
757 views

Unable to change TopLink logging level in GlassFish

In a GlassFish 2.1 environment, I am trying to increase the logging level for TopLink... to see the raw SQL being generated. In the GlassFish Admin Console, I go to: Configurations -> my-config ...
4
votes
1answer
1k 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
1answer
1k views

What is a good way to handle slf4j logging in a web app deployed in Glassfish 3.0.1?

I have a quite ordinary web application which logs with slf4j, which is fine, and I have used several slf4j backends without any problems. Under Tomcat I just told logback to point at a location in ...
1
vote
1answer
444 views

Logging application (a struts + ejb3 web application) specific logs to my own log file while server (Glassfish) specific logs to server.log

I am working on an enterprise application that is developed on Struts1.3 + EJB3.0 + Glassfish2.1.1. The requirement is to route my application logs to a file that I have defined and all server ...
2
votes
1answer
1k views

Glassfish logging to multiple .log files

We have Glassfish v2 server and some modules there: EJBs, web-apps, etc... We need logging from different modules goes to different log files, the same way like Tomcat or other app server allowed to ...
1
vote
1answer
699 views

Glassfish v3 logging

How to in Glassfish v3 can use stdout and stderr in Primary Key class the glassfish server log ($GF_HOME/domains/domain1/logs/server.log).Is there a setting that has to be turned or do applications ...
6
votes
2answers
12k views

Glassfish v3 logging

In Glassfish v2.1 I could look at my web-applications log all stdout and stderr in the glassfish server log ($GF_HOME/domains/domain1/logs/server.log). But I dont see the same in v3. Is there a ...

1 2