The database name is AdventureWorks and the identifier of the connection is 067BA596-D4397921-6AD15864-BD08FDF7-2A09D765.
                        The handle of the request is 1 because the GetDatabaseOwners method applies at app level.
                        The client sends:
                        {
  "jsonrpc": "2.0",
  "id": 6,
  "method": "GetDatabaseOwners",
  "handle": 1,
  "params": [
    "067BA596-D4397921-6AD15864-BD08FDF7-2A09D765",
    "AdventureWorks"
  ]
}
                        The engine returns:
                        {
  "jsonrpc": "2.0",
  "id": 6,
  "result": {
    "qOwners": [
      {
        "qName": "dbo"
      },
      {
        "qName": "HumanResources"
      },
      {
        "qName": "Person"
      },
      {
        "qName": "Production"
      },
      {
        "qName": "Purchasing"
      },
      {
        "qName": "Sales"
      },
      {
        "qName": "INFORMATION_SCHEMA"
      },
      {
        "qName": "sys"
      }
    ]
  }
}
                        The list of the owners for the database AdventureWorks is displayed.