How to: Resume Service Broker Networking (Transact-SQL)

Service Broker sends and receives messages over the network while any endpoint for Service Broker is in the STARTED state. To resume Service Broker networking, alter the endpoints to set the state to STARTED.

Security noteSecurity Note

Activating Service Broker networking allows Service Broker to send and receive messages over the network. The authentication level set on the endpoint controls which network connections are accepted by the endpoint. For more information on Service Broker networking and security, see Security Overview (Service Broker).

To resume Service Broker networking

  • Alter an endpoint to set the state to STARTED.

Example

USE master ;
GO

ALTER ENDPOINT BrokerEndpoint
    STATE = STARTED ;
GO