Sending an event from an HTTP URL

Sending an event from an HTTP URL

book

Article ID: KB0090115

calendar_today

Updated On:

Products Versions
TIBCO BusinessEvents Enterprise Edition -
Not Applicable -

Description

Resolution:
Description:
===========
How to send a BusinessEvents Event with input data using a HTTP URL?

Environment:
===========
BusinessEvents 4.x

Resolution:
==========

Assume you have an HTTP destination(AllOps) configured to listen for Events(CreateAccount). In order to trigger the event through a HTTP URL, your URL should be of the following format:

http://localhost:8104/Channels/HTTP/AllOps?_ns_=www.tibco.com/be/ontology/Events/CreateAccount&_nm_=CreateAccount&AccountId=Greg&Balance=20004&AvgMonthlyBalance=11004

Port 8104 is the port the HTTP channel is listening on.

_ns_ and _nm_ are the namespace of the event to be triggered.

AccountId,Balance,AvgMonthlyBalance are the input values of the event.

Issue/Introduction

Sending an event from an HTTP URL