Reputation: 14578
I have deployed my application on WebSphere and it is up and running and so are the queues associated with the application.
When I put messages on the queue I do not see any processing in SystemOut.log file of the app server. This queue is supposed to process the message and then forward it to another queue.
Please tell me which log file to check the processing of the message being done my application.
Upvotes: 0
Views: 233
Reputation: 4229
Are you using the SIB or WebSphere MQ ?
As far as I know, the SIB does not log anything about message consumption by itself. However, you could use a logging framework such as Commons-Logging, Log4J, ... to add some logging details.
Upvotes: 1
Reputation: 131
A really simple verification would be to inhibit the consumption of the messages. Then your produced messages will stay in the queue.
Upvotes: 1