...
1. Log on to the product's management console and select "Broker -> Add" under the "Configure" menu.
2. The "Create a New Broker" window opens. New broker configuration details can be added here. For example, enter the following details to create a WS-Event broker
No Format |
---|
Broker Name : wsEventBroker Broker Type : ws-event URI : https://localhost:9444/services/EventBrokerService (Here we assume you started WSO2 MB on port 9444 to have this URI) User Name : admin Password : admin |
Once you click on 3. Click the "Add Broker" button , you once configuration details are added. You will be directed to the Available Brokers page.
...
the "Available Brokers" window.
Broker configurations can be viewed by clicking on the broker name and
...
brokers can be deleted by clicking on
...
the "Delete" button.
Configuring
...
through broker-manager-config.xml
Broker management configuration can be provided via specified in the <CARBON_HOME>/repository/conf/broker-manager-config.xml . These configurations will be file, whose configurations are loaded at server start-up.
...
1. Open the file and enter the following WS-Event broker configurations inside the "brokerManagerConfiguration" element
...
.
Code Block | ||
---|---|---|
| ||
<brokerManagerConfiguration>
..
<brokerConfiguraton name="wsEventBroker" type="ws-event">
<property name="uri">https://localhost:9444/services/EventBrokerService</property>
<property name="username">admin</property>
<property name="password">admin</property>
</brokerConfiguraton>
..
..
</brokerManagerConfiguration> |
...
...