次の方法で共有


サービスのスクリプト例

この Transact-SQL コード例では、型指定されていない XML ドキュメントを保管するサービスを定義します。ここでは、コントラクト スクリプトとサービス定義スクリプトの 2 つのスクリプトを提供します。コントラクト スクリプトでは、メッセージ型とサービスのコントラクトを定義します。メッセージ型の定義とコントラクトの定義は、発信側と発信先のサービスで一致している必要があります。そのため、これらの定義は、発信側のサービスをホストするデータベースに配布できる個別のサービス定義スクリプトに追加されます。サービス定義スクリプトでは、サービス自体を定義します。このスクリプトは、発信先のサービスを実装するデータベース内でのみ実行される必要があります。

注意

サービス定義スクリプトでは、発信先のサービスを定義していますが、サービスの実装は含まれていません。

コントラクト スクリプト

-- The contract script contains definitions that must be
-- present for both the intiating service and the target
-- service.

USE AdventureWorks2008R2;
GO

-- Create messages for each broker-to-broker
-- communication needed to complete the task.

-- Message for the initiator to send XML
-- to be archived.

CREATE MESSAGE TYPE
    [//Adventure-Works.com/messages/ArchiveXML]
    VALIDATION = WELL_FORMED_XML ;
GO

-- Message to return event archiving information.

CREATE MESSAGE TYPE
    [//Adventure-Works.com/messages/AcknowledgeArchiveXML]
    VALIDATION = WELL_FORMED_XML ;
GO

-- Create a service contract to structure
-- an event archiving conversation, using 
-- the message types defined above.

CREATE CONTRACT 
    [//Adventure-Works.com/contracts/ArchiveXML/v1.0]
    (
        [//Adventure-Works.com/messages/ArchiveXML]
        SENT BY INITIATOR,
        [//Adventure-Works.com/messages/AcknowledgeArchiveXML]
        SENT BY TARGET
     ) ;
GO

サービス定義スクリプト

-- This script defines the target service. The
-- objects created by this script are only
-- required in a database that hosts the target
-- service.

USE AdventureWorks2008R2 ;
GO

-- Create the service queue that will receive 
-- messages for conversations that implement
-- the ArchiveXML contract.

CREATE QUEUE ArchiveQueue ;
GO

-- Create the service object that exposes the 
-- ArchiveEvents service contract and maps 
-- it to the ArchiveQueue service queue.

CREATE SERVICE [//Adventure-Works.com/ArchiveService]
    ON QUEUE ArchiveQueue
    ([//Adventure-Works.com/contracts/ArchiveXML/v1.0]) ;
GO