Listing a message store using command line

Before you begin

These example scripts provide an alternative to using the administrative console.

To run the command, use the AdminTask object of the wsadmin scripting client.

About this task

Perform the following steps to list the message store of a messaging engine:

Procedure

  1. Assign your messaging engines a variable name, for example, mengines:
    • Using Jacl:

      set mengines [$AdminConfig list SIBMessagingEngine]
    • Using Jython:
      mengines = AdminConfig.list('SIBMessagingEngine')
  2. Identify the messaging engines whose message store that needs to be listed, for example, me1 with an index number:
    • Using Jacl:

      set me1 [lindex $mengines 0]
    • Using Jython:
      arraymengines = mengines.split(lineSeparator)
      me1 = arraymengines[0]
  3. Assign themessage store of the selected messaging engines a variable name:
    • Using Jacl:

      $AdminConfig showAttribute $me1 messageStoreType
    • Using Jython:
      AdminCofig.showAttribute(me1, 'messageStoreType')



In this information ...


IBM Redbooks, demos, education, and more

(Index)

Use IBM Suggests to retrieve related content from ibm.com and beyond, identified for your convenience.

This feature requires Internet access.

Task topic Task topic    

Terms and conditions for information centers | Feedback

Last updatedLast updated: Aug 30, 2013 10:47:11 PM CDT
http://www14.software.ibm.com/webapp/wsbroker/redirect?version=pix&product=was-nd-iseries&topic=txml_jmsdest
File name: tjm_cmd_list.html