Loading an Atom plug-in framework configuration file
To make the settings in your Atom plug-in framework configuration file active, you must load the file into WSRR.
Procedure
You can load your Atom plug-in framework configuration file into WSRR in either of the following ways:
- Use the web UI. Complete the following steps:
- Switch to the Configuration perspective if necessary, by selecting Configuration in the Perspective list.
- Click Active Profile > Atom Feed Application.
- Click Load Atom Feed Application Configuration.
- Click Browse, select the required file, and click Open.
- Click OK to load the file.
- Use the loadConfiguration.jacl script. Run one
or other of the following commands, depending on whether WSRR is deployed
in a cluster configuration, or a stand-alone or federated node configuration.
Run the commands from the <WAS_INSTALL_ROOT>\WSRR\admin\scripts_cell directory.
You must enter the commands all on one line. The configuration type must be
"ATOM_FEED_APPLICATION", as specified by the -configtype parameter.
- In a cluster configuration:
<WAS_INSTALL_ROOT>\bin\wsadmin -f loadConfiguration.jacl -cluster <CLUSTERNAME> -filepath <FILEPATH> -filename <FILENAME> -configname <CONFIGNAME> -configtype ATOM_FEED_APPLICATION -systemflag true - In a stand-alone or federated node configuration:
<WAS_INSTALL_ROOT>\bin\wsadmin -f loadConfiguration.jacl -cell <CELLNAME> -node <NODENAME> -server <SERVERNAME> -filepath <FILEPATH> -filename <FILENAME> -configname <CONFIGNAME> -configtype ATOM_FEED_APPLICATION -systemflag true
For example:c:\WebSphere\AppServer\bin\wsadmin -f loadConfiguration.jacl -cluster cluster1 -filepath c:/tmp -filename atom_feed_sample.xml -configname AtomFeedSample -configtype ATOM_FEED_APPLICATION -systemflag trueNote: In parameters passed to wsadmin, directory paths must be specified using a forward slash (/), as used in c:/tmp in the previous example.
Parent topic: Atom plug-in framework
Related information: