Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This web service returns existing locks on a specified entity.

Request Format


Panel
titlePwsCheckProjectorLocks Request

Request Elements


Element

Data Type

Required?

Default

Description

RequestId

Int32

 

 

 

SessionTicket

String

 

 

 

Locks

PwsProjectorLockRequest[]

 

 

 

ProjectorLockSetId

Int32

 

 

 

LocksToSteal

PwsEntityLockSummary[]

 

 

 

Request Usage Example(s)


Code Block
languagexml
titleExample 01 - Check Locks without Stealing
collapsetrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsCheckProjectorLocks>
         <pws:serviceRequest>
            <req:RequestId>1</req:RequestId>
            <req:SessionTicket>AXMhtleRqwAazB/BUJaCKA==</req:SessionTicket>
            <req:Locks>
               <com:PwsProjectorLockRequest>
                  <com:EntityIdentity>
                     <com:EntityCode>P001468-001</com:EntityCode>
                     <com:LockType>P</com:LockType>
                  </com:EntityIdentity>
               </com:PwsProjectorLockRequest>
            </req:Locks>
         </pws:serviceRequest>
      </pws:PwsCheckProjectorLocks>
   </soapenv:Body>
</soapenv:Envelope>

...