sqloptions:clientPID 헤더 요소
sqloptions:clientPID 로그인 옵션을 사용하여 클라이언트가 로그인에 사용할 클라이언트 프로세스 ID를 지정할 수 있습니다. 예를 들면 다음과 같습니다.
<SOAP-ENV:Header
xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
xmlns:sqloptions="https://schemas.microsoft.com/sqlserver/2004/SOAP/Options">
<sqloptions:clientPID
SOAP-ENV:mustUnderstand="1"
value="ID of client process "/>
</SOAP-ENV:Header>
sqloptions:clientPID
로그인 옵션은 SOAP 헤더로 나타나며 sqloptions:clientPID
라는 하나의 요소로 구성됩니다. 이 요소에는 value
라는 필수 특성이 하나 있습니다. 이 값은 64비트로 서명된 정수(Long)입니다. value
특성은 로그인에 설정할 클라이언트 프로세스 ID를 지정합니다. 이 클라이언트 프로세스 ID는 sys.sysprocesses 호환성 뷰의 hostprocess 열에 나타납니다.
하나의 요청에는 sqloptions:clientPID 옵션이 한 번만 나타날 수 있습니다. 이 옵션은 응답에는 나타날 수 없습니다. 해당 옵션이 여러 개 나타나면 오류가 발생합니다.
서버에서 인식할 수 있는 sqloptions:clientPID 값 범위를 제한할 수 있습니다. 클라이언트가 허용된 범위 밖의 값을 전송하면 서버에서 정의되지 않은 방식으로 해당 값을 자동으로 자릅니다.
SOAP 세션을 사용하고 있는 경우 이 옵션은 sqloptions:sqlsession initiate 특성과 같은 요청에 나타나야 합니다. sqloptions:sqlSession 헤더가 있으며 initiate 특성이 포함되지 않은 요청에 이 옵션이 나타나면 오류가 발생합니다.
다음은 sqloptions:clientPID 옵션에 대한 스키마의 일부분입니다.
<xs:element name="clientPID" form="qualified">
<xs:annotation>
<xs:documentation>
Set the client process ID for the login.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute use="required" name="value" type="xs:long" form="unqualified">
<xs:annotation>
<xs:documentation>
The client process ID to set for the login.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
예
다음은 SOAP 요청 및 응답 메시지 내에 sqloptions:clientPID 헤더를 사용하는 예입니다.
요청
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
xmlns:sql="https://schemas.microsoft.com/sqlserver/2004/SOAP"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:sqlparam="https://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlParameter"
xmlns:sqlsoaptypes="https://schemas.microsoft.com/sqlserver/2004/SOAP/types"
xmlns:sqloptions="https://schemas.microsoft.com/sqlserver/2004/SOAP/Options">
<SOAP-ENV:Header>
<sqloptions:clientPID SOAP-ENV:mustUnderstand="1" value="1234" />
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<sql:sqlbatch>
<sql:BatchCommands>
SELECT hostprocess FROM sysprocesses WHERE spid=@@spid AND hostprocess='1234'
</sql:BatchCommands>
</sql:sqlbatch>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
응답
<SOAP-ENV:Envelope xml:space="preserve"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
xmlns:sql="https://schemas.microsoft.com/sqlserver/2004/SOAP"
xmlns:sqlsoaptypes="https://schemas.microsoft.com/sqlserver/2004/SOAP/types"
xmlns:sqlrowcount="https://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlRowCount"
xmlns:sqlmessage="https://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlMessage"
xmlns:sqlresultstream="https://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlResultStream"
xmlns:sqltransaction="https://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlTransaction"
xmlns:sqltypes="https://schemas.microsoft.com/sqlserver/2004/sqltypes">
<SOAP-ENV:Body>
<sql:sqlbatchResponse>
<sql:sqlbatchResult>
<sqlresultstream:SqlRowSet xsi:type="sqlsoaptypes:SqlRowSet">
<diffgr:diffgram xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<SqlRowSet1 xmlns="urn:schemas-microsoft-com:sql:SqlRowSet1">
<row>
<hostprocess>1234</hostprocess>
</row>
</SqlRowSet1>
</diffgr:diffgram>
</sqlresultstream:SqlRowSet>
<sqlresultstream:SqlRowCount xsi:type="sqlrowcount:SqlRowCount">
<sqlrowcount:Count>1</sqlrowcount:Count>
</sqlresultstream:SqlRowCount>
</sql:sqlbatchResult>
</sql:sqlbatchResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>