From ba8b444887951ad70f4080fb73191d56b7d4d827 Mon Sep 17 00:00:00 2001 From: Nivin Date: Mon, 15 Dec 2025 10:13:20 +1000 Subject: [PATCH] Fix system message schema URLs Schema URLs are http, not https --- docs/database-engine/service-broker/broker-system-messages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/database-engine/service-broker/broker-system-messages.md b/docs/database-engine/service-broker/broker-system-messages.md index 3fe12e39952..1915e0c8186 100644 --- a/docs/database-engine/service-broker/broker-system-messages.md +++ b/docs/database-engine/service-broker/broker-system-messages.md @@ -24,9 +24,9 @@ In addition to the application-defined message types specified in the contract, ## Error messages -When a remote service ends a dialog with an error or the local broker detects an unrecoverable error in a dialog, the local broker creates an Error Message. Error messages are of message type `https://schemas.microsoft.com/SQL/ServiceBroker/Error`. Error messages are validated as well-formed XML. +When a remote service ends a dialog with an error or the local broker detects an unrecoverable error in a dialog, the local broker creates an Error Message. Error messages are of message type `http://schemas.microsoft.com/SQL/ServiceBroker/Error`. Error messages are validated as well-formed XML. -The XML document that is contained in an error message uses the namespace `https://schemas.microsoft.com/SQL/ServiceBroker`. The root element of the document has the local name **Error**, and contains an element named **Code** and an element named **Message**. The **Code** element holds an integer value. The **Message** element holds the human-readable text of the message. +The XML document that is contained in an error message uses the namespace `http://schemas.microsoft.com/SQL/ServiceBroker`. The root element of the document has the local name **Error**, and contains an element named **Code** and an element named **Message**. The **Code** element holds an integer value. The **Message** element holds the human-readable text of the message. For example, an error message generated by a service that processes expense reports might contain the following XML (reformatted for readability):