Tagged Questions
0
votes
0answers
22 views
What does this mean commit():Illegal for a non-transacted Session:sessionId
I am using a glassfish server and using the JMS functionality of that glassfish server.
Keep on getting this error message :
MQJMSRA_DS4001: commit():Illegal for a non-transacted ...
0
votes
1answer
7 views
What is the difference between the asadmin purgue message queue command and the imqcmd command
I am new to JMS and have the following question:
I wish to purgue all the JMS messages which I created in the glassfish JMS queue.
I found two commands to do the same thing
asadmin flush-jmsdest ...
0
votes
0answers
38 views
Strange behavior of JMS queue in Glassfish 3.1.2
My application consumes JMS messages in a Glassfish 3.1.2 server and OpenMQ as JMS provider.
The strange behavior happens when a consumer fails to process a message. In this situation Glassfish ...
0
votes
1answer
70 views
How do I inject a JMS resource in a JAX-RS REST Web Service?
Using GlassFish 3.1.2.1, I have configured a JMS connection factory and a queue, which can be injected in JavaServer Faces managed beans using the @Resource annotation.
However when I try to use ...
0
votes
0answers
166 views
JMS Chat application using Spring and GlassFish
I'm trying to get a simple Spring JMS Chat application to work on GlassFish.
I think my problem has to do with how my JndiTemplate bean is setup.
Here's what I have so far...
-- Chat.java --
...
0
votes
1answer
47 views
asadmin start-domain fails when remote JMS queue is unreachable
I have 2 servers A and B running a glassfish 3.1.2.2 application server on them. Both use a JMS queue for communication, which works fine so far. If the network connection breaks for any reason, I can ...
2
votes
0answers
30 views
Is there a way to configure MDBs programatically?
I am currently working on a EJB 3.1 based project running on GlassFish that uses a custom built framework to configure the functionality of any SessionBeans. Using this we can enable, disable and ...
0
votes
1answer
46 views
WARNING in Glassfish about JMS
I have recently installed the latest Glassfish open source version and configure it but I have problem with JMS and now my 2 Glassfish servers have problem (whereas before installing new GF server, it ...
0
votes
0answers
71 views
Glassfish JMS service authentication
I have installed the last open source Glassfish server but I have authentication problem with the JMS service.
In the Glassfish UI when I ping the JMS service I receive this exception :
...
0
votes
1answer
85 views
Cannot instantiate initialcontext on standalone client
I have a standalone client that I do not want to deploy on my Glassfish server. With the client I want to post message via the Point to Point communication pattern. I found this great tutorial, which ...
2
votes
2answers
106 views
Implement two phase commit protocol between EJB Application(Running on Glassfish) and Swing application
I have a EJB application running on Glassfish server which stores data on MySQL DB which I call as Global DB.
I have two exact remote Swing applications which are stand alone applications accessing ...
0
votes
0answers
79 views
Easiest way to distribute JMS messages in a Glassfish cluster?
we have some kind of "batch application" on a Glassfish 2.1 server. This application receives HTTP "job requests" in a module called "Job Generator". Based on this requests "Job Generator" generates a ...
0
votes
1answer
140 views
Glassfish - How to broadcast JMS message to all instances in a cluster?
I am using Glassfish 3.1.2, and I set up a cluster with one node and two instances.
I have an message driven bean in my application that subscribes to a topic, which I deployed to the cluster.
When ...
0
votes
1answer
53 views
useSharedSubscriptionInClusteredContainer doesn't seems to work
I'm having problem to configure a JMS Topic in my GlassFish 3.1.2.2.
I have a cluster with one node and 4 local instances in this node. I want a JMS Topic on which I send a message and all instance ...
0
votes
0answers
87 views
How to create an internal bridge to forward a queue to a topic
I'm trying to set-up an internal bridge from a queue to a topic and I'm getting a "Lookup failed" exception.
Here's some more details:
Env: GlassFish 3.1.2.2 (fresh install) and embedded JMS host
...
0
votes
0answers
225 views
Message Driven Bean does not receive messages
I'm trying to implement a service which listens to a topic to receive messages sent to that topic. The code is quite simple:
@MessageDriven(mappedName="jms/TEST", activationConfig={
...
0
votes
1answer
158 views
How do I run multiple instances of a JMS program in Eclipse?
I copied a sample Chat application from http://onjava.com/pub/a/onjava/excerpt/jms_ch2/index.html?page=2 I also got it to compile and run under GlassFish. Unfortunately to see the program in action ...
0
votes
1answer
81 views
JMS Application giving error
I'm trying to run some applications (both my own and tutorial-applications) to help me understanding the basics of JMS. The code in the applications should be correct (for at least some). My added ...
1
vote
2answers
66 views
Return bean-type transaction to queue
We have an application deployed to a glassfish server with an MDB that, for other reasons, must use Bean-type transactions (TransactionManagementType.BEAN).
In certain situations, inside the ...
0
votes
1answer
434 views
Arquillian, (embedded) Glassfish & JMS: How to test a worker?
I want to test a JMS-worker included in my glassfish-application using arquillian (to have container-services). My Worker looks the following:
package queue.worker;
import ...
0
votes
0answers
124 views
C4090: Invalid port number. Broker is not available [localhost, -1]
I am running glassfish server on RHEL 6. After opening imqadmin, when I create a broker with the following settings:
Broker Host: localhost
Primary Port: 7676
I get the following error message:
...
0
votes
2answers
102 views
Read synchronous (i.e. “receive” instead of listener)
The following code snippet (standalone Java-application) will never find any messages on the queue while the same client, when implemented using message listeners, does (Using Glassfish 3.1).
ctx ...
1
vote
1answer
200 views
Spring integration with JMS glassfish MQ
So i have this problem with setting up connection to JMS from Spring project. Problem lies in my Client implementation and it is as follows:
public class EndpointHelper implements Runnable{
...
1
vote
1answer
581 views
Sending message on glassfish server message queue
I am just testing to send the message on glassfish server queue so for that i have created JMSResource on glassfish server like this :
And now i have created one java application in Netbeans IDE. ...
0
votes
0answers
51 views
JMS testing in glassfish server
I want to test JMS using sending the text message in messageQueue in glassfish server. I have seen on the net using netbeans wizard mode but i want to test with jndi.properties file. So user will give ...
0
votes
0answers
62 views
JMS rcv+send in one transaction
Given an EJB method that sends several messages (and does a lot of processing in between, therefor it's @Asynchronous). What would be the best way if I want to receive (blocking) an independent ...
1
vote
1answer
400 views
Sending Text Message using JMS on glassfish server
I am testing JMS with glassfish server so for that i want to send simple text message on glassfish server queue. I have tried with ActiveMQ and that is going fine but i unable to understand what can i ...
1
vote
2answers
124 views
Concurrent IO Processing JAVA EE: Best Method?
I have an JavaEE 6 / EJB3.1 / Glassfish 3.1.2 application that retrieves .xml pages from a remote computer, converts them to java objects, then persists each of them in my mysql database. There are ...
1
vote
2answers
549 views
Exception when deploying EJB 3 MDB in Glassfish3
Screenshots from Glassfish Web Admin:
With the factory and Queue are injected, the code deploys OK:
@Resource(name = "jmsQueueConnectionFactory", mappedName = "connectionFactory")
private ...
2
votes
0answers
88 views
How to connect to JMX service on Glassfish from within an EJB?
I have a message-driven EJB deployed to a Glassfish 2.x system. When I get a message that causes an exception or isn't able to be sent or consumed, I would like to do one of the following things:
...
2
votes
2answers
349 views
How can I track/monitor opened/closed JMS connections in Glassfish?
I have a JavaEE application currently deployed on Glassfish for which I have written a load test that can, in less than one hour (for now - speed improvements to the crash are coming) exhaust the JMS ...
0
votes
1answer
260 views
JMS: how to redeliver messages in the DLQ to a Topic Subscriber?
I do not understand how to handle errornous messages when using a JMS topic. I have a persistent JMS Topic with 4 subscribers. I send a message to the topic. 3 of the subscribers consume the message ...
0
votes
1answer
96 views
What tools can be used to monitor jms broker in GlassFish
I use Open MQ GUI Administration Console (in GF instal dir) and QBrouser.
Something else?
0
votes
0answers
114 views
Send message from one web application to message-driven bean located in another web application
How can I send a JMS message from a standard Java class located in one web application to a message-driven bean located in another web application (both apps written in JSF 2.1 and reside on the same ...
0
votes
2answers
366 views
Synchronous Consumer with JMS Queue
I want to process all the messages from a JMS Queue in Glassfish 3 in a synchronous way so I have tried to change the property Maximum Active Consumers from -1 to 1 in JMS Physical Destination in ...
0
votes
1answer
276 views
Glassfish/JMS MDB transaction aborted
I have a number of MDBs in my Glassfish 3.1.2.2 application that consume JMS messages on a regular interval. All will seemingly work flawlessly for a period of time after application startup- ...
1
vote
0answers
407 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
1answer
466 views
Glassfish - JMS Request/Response - message doesn't go on queue
I'm trying to implement a web service in Glassfish 3.1.2, using the included OpenMQ JMS queue, that implements a synchronous JMS Request-Response using Temporary queuing for the response. It sends a ...
0
votes
1answer
212 views
JMS Expiration after it has been receive not working
The title might be confusing but this is what I want to accomplish. I want to send a jms message from 1 ejb to another, the 2nd ejb has a message listener and this is now working properly. But I ...
0
votes
1answer
138 views
Configurations of JMS Queue for saving low priority informations on sql server
i would like to setup a JMS Queue on a Glassfish v3 Server for saving some protocoll informations on a sql server.
My first try ended up in lot's of deadlocks on the sql server.
My first question ...
0
votes
1answer
158 views
Is there an event listener for jms message expiration?
I'm currently working on jms message using the default broker from glassfish. Example I have a queueA.
queueA, will receive 2 types of response:
1.) normal response - meaning the service replies ...
0
votes
0answers
264 views
Spring Jms Jta Glassfish Transaction Commit fails
We are using Glassfish (3.1.2) and Spring (3.0.5)
When we try to send a message to queue we get the error below. How can we solve the problem? thanks in advance.
Problem occurs on methods annotated ...
2
votes
0answers
139 views
Error connecting JMS to glassfish
When I am trying to get a DomainRoot using the following:
final TLSParams tlsParams = new TLSParams( TrustAnyTrustManager.getInstanceArray(), null );
final AppserverConnectionSource conn
...
0
votes
0answers
164 views
Glassfish / JMS: not able to consume messages from remote MQ Broker
I need to configure Glasshish 2.1.1 instance to consume Messages from remote broker.
The problem is that Glassfish tries to use guest account to login to REMOTE Message Broker even when I specified ...
0
votes
1answer
287 views
EJB Dependencies are not wired (injected) properly on GlassFish 2.1
For some reason I should use old EJB container GlassFish 2.1.1. (certified for Java EE 5 and EJB 3.0). The project structure is following:
MDB:
@MessageDriven(
mappedName = "jms/Queue",
...
1
vote
0answers
243 views
Glassfish - connecting with OpenMQ to SonicMQ does not work
I have a glassfish instance running version 3.1.2. I need to connect to a remote server via JMS. The remote system - i think - uses SonicMQ.
I have a JAR an example (from the remote servers company) ...
3
votes
1answer
810 views
How to configure Message Driven Bean Application & Glassfish to consume messages from remote Message Broker?
I've created a simple MDB application and deployed it to Glassfish v 3.1 with embedded MQ broker. Destination Resource with name "jms/Queue" was created as well.
Please see part of the code below:
...
1
vote
1answer
689 views
How to connect a Glassfish client to Glassfish JMS server when thread creation is not allowed?
I have an application in which a client component is run in a "managed" environment (as an Adobe InDesign plugin). In this "managed" environment, it doesn't seem possible to create threads during ...
0
votes
3answers
161 views
In a JMS MDB with CMT, is there any way to specify an action to be performed after onMessage has returned and the transaction committed?
I have an MDB which, in response to an incoming message, needs to perform a sequence of actions atomically, for which we're using CMT. After the message has been processed and the transaction ...
0
votes
1answer
549 views
Cannot Instantiate InitialContext
I have a class that acts as standalone client for Glassfish V3 JMS queue. This class works fine from my localhost, i.e. both glassfish server and the standalone client are on my local PC.
Now I need ...