Related to this question. It appears that Glassfish is exporting slf4j into my application and overriding my logging solution. Is it possible for me to override Glassfish's logging and have my own logging solution take precedence? After searching, I have only found ways to modify the log using logging.properties.
I am not married to my...
Hello everybody,
I have some problem's with a simple application in JSF 2.0.
I try to build a ToDo List with ajax support. I have some todo strings which I display using a datatable. Inside this datatable I have a commandLink to delete a task. The problem is now that the datatable don't get re-rendered.
<h:dataTable id="todoList" ...
I am using java.util.logging in an EJB application running on glassfish v3. I can see the log messages in server.log but i don't seem to be able to configure the logging level in glassfish\domains\domain1\config\logging.properties. If I use:
Logger logger = Logger.getLogger("com.foo");
To obtain the logger and log with:
logger.info("...
I am wondering conceptually how load-balancing works on the EJB-level (not web session replication) with Java EE containers like Glassfish. From what I have gleaned your remote interface is a proxy that delegates your call to one of many servers you may have in an environment.
If things fail are they supposed to be able to "finish" o...
Hi all, I have a application that running ok over tomcat 6.20, I use in my app a token A3 smart card reader. Everthing looks fine. Now, I want migrate my application to Glassfish v2.1, then, my nightmare begins! Can I use de same code to load the Provider? In Tomcat works good, but not luck with glassfish v2.
String configName = "C:\\pk...
I have the following problem deploying my application.
It uses JMS and a remote openMQ for communication between servers. The problem is that the connection is not fully reliable so it can be up or down. For reconnecting I set the jms reconnect glassfish property so it reconnects if at some moment the connection gets lost. The problem ...
Hi
I have some trouble understanding a JPA behaviour. Mabye someone could give me a hint.
Situation:
Product entity:
@Entity
public class Product implements Serializable {
...
@OneToMany(mappedBy="product", fetch=FetchType.EAGER)
private List<ProductResource> productResources = new ArrayList<ProductResource>();
....
public List<Produ...
I'm reasonably new to JEE, so this might be stupid.. bear with me pls :D
I would like to inject a stateless session bean into a message-driven bean. Basically, the MDB gets a JMS message, then uses a session bean to perform the work. The session bean holds the business logic.
Here's my Session Bean:
@Stateless
public class TestBean im...
Hi
I want to set up a virtual server for subdomain
my domain is redirected from
pradyut.dyndns.org
to pradyut.dyndns.org/WebApplicationSecurity
using a virtual server whose default web module is
WebApplicationSecurity
I have used the string "${com.sun.aas.hostName},pradyut.dyndns.org"
in the hosts of the virtual server
now to the qu...
I basically want to be able to deploy multiple versions of the same EAR file to the same server (Glassfish instance?) , and have a unique path to each version separating them.
From my reading on this it appears that multiple EARs deploy to the root of the web server namespace so that they can coexist if they do not have colliding contex...
Hi,
I'm having issues with an IceFaces / JSF application. We have an IceFaces InputRichText component that is causing a lot of pain. Sometimes the page containing the component throws this exception and the page loading fails (it becomes all white):
[#|2010-03-18T10:44:40.197+0100|SEVERE|sun-appserver2.1|javax.enterprise.resource.webco...
Hello
I'm planning to a webapp where every guy using it would have a client that would run computations on its computer (because these computations can't be done on the server, too much load...), and then send results to the server.
I guess there will be lot of people interested in my application and that's why i'm wonder if my archite...
Hello.
I've try with EJB 3.0 and swing client and i've tried with glassfish and jboss as application server
when i did use glassfish, the comunication is via corba.
when i did use jboss, the comunication is via JNP.
in my tests the JNP was faster than corba
who has some like this?, and who could tell me which is better: JNP or Corba?...
I found serveral IllegalStateException Exception in the logs:
[#|2009-01-28T14:10:16.050+0100|SEVERE|sun-appserver2.1|javax.enterprise.system.container.web|_ThreadID=26;_ThreadName=httpSSLWorkerThread-80-53;_RequestID=871b8812-7bc5-4ed7-85f1-ea48f760b51e;|WEB0777: Unblocking keep-alive exception
java.lang.IllegalStateException: PWC4662:...
I am trying to send special characters like spanish chars from my page to a JSP page as a form parameter. When I try get the parameter which I sent, it shows that as "?" (Question mark).
After searching on java.net thread I came to know that I should have following entry in my sun-web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE...
Hi
I have a question regarding JPA persistence in Glassfish.
Situation:
I have a Supplier class that has a 1:n bidirectional relation to SupplierAddress.
I would like to have the following behaviour:
If I remove the SupplierAddress object from the List in the Supplier object and update it via the merge(supplierobject), the SupplierAdd...
Hi,
For glassfish v2, I have searched through the web and I cannot find anyway to specify query timeout when using TopLink essential query hint. We have another option to migrate to EclipseLink but that is not feasible.
have tried the solution in
http://forums.oracle.com/forums/thread.jspa?threadID=974732&tstart=-1
but it seems the ...
Hi,
I have glassfish installed on a server with a JMS ConnectionFactory set up jms/MyConnectionFactory with a resource type or javax.jms.ConnectionFactory.
I now want to access this from a client application on my local machine for this I have the following:
public static void main(String[] args) {
try{
Properties ...
Has anyone gotten the glassfish v3 adapter to work with Eclipse without restarting every time there's a code change? I tried to set this up but the adapter "republishes" every time I change any file, which is very annoying. It takes up to 3 minutes and locks up my machine for a second.
I must remember to constantly stop the adapter befo...
What is the proper way to redeploy a new version of a running app in glassfish? I have a WAR running, and I've made changes. I thought doing an undeploy + deploy might be the right thing, but glassfish (v3) often crashes when I undeploy.
What' the proper way to redeploy a running app in glassfish?
...