1 / 5

Create SQL Server Service Broker Endpoint for HTTP/TCP Communication

This guide details the syntax and options for creating a Service Broker endpoint in SQL Server using T-SQL. You can configure the endpoint name, authorization logins, operational state (STARTED, STOPPED, or DISABLED), and the communication protocol (HTTP or TCP). Learn how to specify protocol-specific arguments for both TCP and HTTP, as well as options for authentication methods, encryption, and message forwarding settings. This setup is essential for enabling efficient communication between services in a distributed database environment.

lorna
Télécharger la présentation

Create SQL Server Service Broker Endpoint for HTTP/TCP Communication

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SQL SERVER SERVICE BROKER

  2. CREATE ENDPOINT endPointName [ AUTHORIZATION login ] [ STATE = { STARTED | STOPPED | DISABLED } ] AS { HTTP | TCP } (<protocol_specific_arguments>) FOR { SOAP | TSQL | SERVICE_BROKER | DATABASE_MIRRORING } (<language_specific_arguments>)

  3. <AS TCP_protocol_specific_arguments> ::= AS TCP (LISTENER_PORT = listenerPort [ [ , ] LISTENER_IP = ALL | ( 4-part-ip ) | ( "ip_address_v6" ) ])

  4. FOR SERVICE_BROKER ([ AUTHENTICATION = { WINDOWS [ { NTLM | KERBEROS | NEGOTIATE } ] | CERTIFICATE certificate_name | WINDOWS [ { NTLM | KERBEROS | NEGOTIATE } ] CERTIFICATE certificate_name [ [ , ] ENCRYPTION = { DISABLED | { { SUPPORTED | REQUIRED } [ ALGORITHM { RC4 | AES | AES RC4} ] } ] [ [ , ] MESSAGE_FORWARDING = { ENABLED | DISABLED } ] [ [ , ] MESSAGE_FORWARD_SIZE = forward_size ])

  5. FOR DATABASE_MIRRORING ([ AUTHENTICATION = { WINDOWS [ { NTLM | KERBEROS | NEGOTIATE } ] | CERTIFICATE certificate_name | WINDOWS [ { NTLM | KERBEROS | NEGOTIATE } ] CERTIFICATE certificate_name [ [ [ , ] ] ENCRYPTION = { DISABLED | { { SUPPORTED | REQUIRED } [ ALGORITHM { RC4 | AES | AES RC4} ] } ] [ , ] ROLE = { WITNESS | PARTNER | ALL })

More Related