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.

link|improve this question

62% accept rate
I'm not aware of any WebSphere logs that record per-message processing but then I'm not a WAS guy. I've added the websphere tag to get better exposure for the question. WMQ won't log this activity unless it is transactional and then the transaction logs are not meant to be parsed for humans. Typically, the app will write log entries on a per-message basis but where they go is up to the app. – T.Rob Feb 13 at 18:02
feedback

2 Answers

A really simple verification would be to inhibit the consumption of the messages. Then your produced messages will stay in the queue.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.