Unknown macro: {next_previous_links}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

WebSocket event receiver is an internal event receiver that comes with WSO2 products by default. You can configure it with XML, JSON, and text input mapping types. 


Prerequisites

Start the WebSocket server, before starting the event receiver configurations.

Creating a WebSocket event receiver

For instructions on creating a WebSocket event receiver, see Receiving Events.  

Configuring adapter properties

Specify the Adapter Properties, when creating a WebSocket event receiver using the management console as shown below.

Websocket input event adapter properties

After entering the above adapter properties, select the Event Stream to which you want to map the incoming events, and the Message Format which you want to apply on the receiving events. Also, click Advanced to define custom input mappings based on the Message Format you selected. For more information on custom input mapping types, see Input Mapping Types.

You can also define the respective adapter properties of the event receiver based on the transport type within the <from> element of the event receiver configuration in the <PRODUCT_HOME>/repository/deployment/server/eventreceivers/ directory as follows.

<eventReceiver name="WebsocketInputEventAdapter" statistics="disable" trace="disable" xmlns="http://wso2.org/carbon/eventreceiver">
    <from eventAdapterType="websocket">
        <property name="websocket.server.url">ws://localhost:9099</property>
        <property name="events.duplicated.in.cluster">false</property>
    </from>
    ...................
</eventReceiver>

The above adapter properties are described below.

Adapter Property
Description
Configuration file propertyExample
Web Socket Server URLURL of the WebSocket server to which you want to connect to

websocket.server.url
ws://localhost:9099
Is events duplicated in clusterIn a cluster whether the same event can reach two receiver nodes
events.duplicated.in.cluster
true/false
  • No labels