Skip to content

Commit 02ecd39

Browse files
authored
Fix system message schema URLs (#10251)
Schema URLs are http, not https
2 parents 39b704d + ba8b444 commit 02ecd39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/database-engine/service-broker/broker-system-messages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ In addition to the application-defined message types specified in the contract,
2424

2525
## Error messages
2626

27-
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.
27+
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.
2828

29-
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.
29+
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.
3030

3131
For example, an error message generated by a service that processes expense reports might contain the following XML (reformatted for readability):
3232

0 commit comments

Comments
 (0)