1. Overview of Enterprise Server Administration
Default Settings and Locations
Instructions for Administering Enterprise Server
4. Administering the Virtual Machine for the Java Platform
6. Administering Web Applications
7. Administering the Logging Service
8. Administering the Monitoring Service
9. Administering Life Cycle Modules
10. Extending Enterprise Server
Part II Security Administration
11. Administering System Security
12. Administering User Security
13. Administering Message Security
Part III Resources and Services Administration
14. Administering Database Connectivity
15. Administering EIS Connectivity
Administering Connector Connection Pools
To Create a Connector Connection Pool
To List Connector Connection Pools
To Connect to (Ping) or Reset (Flush) a Connector Connection Pool
To Update a Connector Connection Pool
To Delete a Connector Connection Pool
Administering Connector Resources
To Create a Connector Resource
To Update a Connector Resource
To Delete a Connector Resource
Administering the Resource Adapter Configuration
To Create Configuration Information for a Resource Adapter
To List Resource Adapter Configurations
To Update a Resource Adapter Configuration
To Delete a Resource Adapter Configuration
Administering Connector Security Maps
To Create a Connector Security Map
To List Connector Security Maps
To Update a Connector Security Map
To Delete a Connector Security Map
Administering Connector Work Security Maps
To Create a Connector Work Security Map
To List Connector Work Security Maps
To Update a Connector Work Security Map
To Delete a Connector Work Security Map
Administering Administered Objects
To Create an Administered Object
16. Administering Internet Connectivity
17. Administering the Object Request Broker (ORB)
18. Administering the JavaMail Service
19. Administering the Java Message Service (JMS)
20. Administering the Java Naming and Directory Interface (JNDI) Service
21. Administering Transactions
Packaged within a connector module, an administered object provides specialized functionality for an application. For example, an administered object might provide access to a parser that is specific to the connector module and its associated EIS.
The following topics are addressed here:
Use the create-admin-object subcommand to create an administered object resource. When creating an administered object resource, name-value pairs are created, and the object is associated to a JNDI name.
The resource adapter must be deployed before running this subcommand (jmsrar.rar).
Create an administered object by using the create-admin-object(1) subcommand.
Information about properties for the subcommand is included in this help page.
If needed, restart the server.
Some properties require server restart. See Configuration Changes That Require Server Restart. If your server needs to be
restarted, see
To Restart a Domain.
For this example, the javax.jms.Queue resource type is obtained from the ra.xml file. The JNDI name of the new administered object is jms/samplequeue.
asadmin> create-admin-object --restype javax.jms.Queue --raname jmsra --description "sample administered object" --property Name=sample_jmsqueue jms/samplequeueCommand create-admin-object executed successfully
You can also view the full syntax and options of the subcommand by typing asadmin help create-admin-object at the command line.
Use the list-admin-object subcommand in remote mode to list the existing administered objects.
Ensure that the server is running.
Remote subcommands require a running server.
List the administered objects by using the list-admin-objects(1) subcommand.
This example lists the existing administered objects.
asadmin> list-admin-objects jms/samplequeue Command list-admin-objects executed successfully
You can also view the full syntax and options of the subcommand by typing asadmin help list-admin-object at the command line.
Use the get and set subcommands to view and change the values of the administered objects properties.
List the administered objects by using the list-admin-objects(1) subcommand.
View the properties of the administered object by using the get(1) subcommand.
For example:
asadmin> get domain.resources.admin-object-resource.jms/samplequeue.*
Set the property of the administered object by using the set(1)
subcommand.
For example:
asadmin> set domain.resources.admin-object-resource.jms/samplequeue.enabled=false
If needed, restart the server.
Some properties require server restart. See Configuration Changes That Require Server Restart. If your server needs to be
restarted, see
To Restart a Domain.
Use the delete-admin-object subcommand to delete an administered objects.
List the administered objects by using the list-admin-objects(1) subcommand.
If necessary, notify users that the administered object is being deleted.
Delete an administered object by using the delete-admin-object(1) subcommand.
This example deletes the administered object with the JNDI name jms/samplequeue.
asadmin> delete-admin-object jms/samplequeue Command delete-admin-object executed successfully
You can also view the full syntax and options of the subcommand by typing asadmin help delete-admin-object at the command line.