...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:sch="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
<soapenv:Header/>
<soapenv:Body>
<pws:PwsAddProjectNote>
<pws:serviceRequest>
<req:RequestId>1</req:RequestId>
<req:SessionTicket>AWYoWMBC/cjl/RFPrykteA==</req:SessionTicket>
<sch:Note>To include additional or supporting information, you can add a note to a task, resource, assignment, or the entire project.</sch:Note>
<sch:ProjectIdentity>
<com:ProjectCode>P001320-001</com:ProjectCode>
</sch:ProjectIdentity>
</pws:serviceRequest>
</pws:PwsAddProjectNote>
</soapenv:Body>
</soapenv:Envelope> |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:sch="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/"> <soapenv:Header/> <soapenv:Body> <pws:PwsAddProjectNote> <!--Optional:--> <pws:serviceRequest> <req:SessionTicket>Ade8vXDjCIr0kcDpdVTbCw==</req:SessionTicket> <sch:Note>1st note</sch:Note> <sch:ProjectIdentity> <!--Optional:--> <com:ProjectCode>P001125-001</com:ProjectCode> </sch:ProjectIdentity> <!--Optional:--> <sch:LocksToSteal> <!--Zero or more repetitions:--> <com:PwsEntityLockSummary> <!--Optional:--> <com:EntityIdentity> <!--Optional:--> <com:EntityCode>P001125-001</com:EntityCode> <com:LockType>P</com:LockType> </com:EntityIdentity> <!--Optional:--> <com:EntityLockSummary> <!--Zero or more repetitions:--> <com:PwsEntityLockSummaryItem> <!--Optional:--> <com:LockCount>1</com:LockCount> <!--Optional:--> <com:LockHolderUserIdentity> <!--Optional:--> <com:UserDisplayName>Krakauer, Larry</com:UserDisplayName> </com:LockHolderUserIdentity> <!--Optional:--> <com:MostRecentLockAcquisitionTimestamp>2018-11-13T20:31:20.647Z</com:MostRecentLockAcquisitionTimestamp> </com:PwsEntityLockSummaryItem> </com:EntityLockSummary> </com:PwsEntityLockSummary> </sch:LocksToSteal> </pws:serviceRequest> </pws:PwsAddProjectNote> </soapenv:Body> </soapenv:Envelope> |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<PwsAddProjectNoteResponse xmlns="http://projectorpsa.com/PwsProjectorServices/">
<PwsAddProjectNoteResult xmlns:a="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/>
<ResponseId xmlns="http://projectorpsa.com/CommonServices/">1</ResponseId>
<Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status>
<ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2018-01-19T21:53:15.0569601Z</ServerTimestampUtc>
</PwsAddProjectNoteResult>
</PwsAddProjectNoteResponse>
</s:Body>
</s:Envelope> |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <PwsAddProjectNoteResponse xmlns="http://projectorpsa.com/PwsProjectorServices/"> <PwsAddProjectNoteResult xmlns:a="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"/> <ResponseId xmlns="http://projectorpsa.com/CommonServices/">0</ResponseId> <Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status> <ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2018-11-13T20:37:37.6214694Z</ServerTimestampUtc> <a:ProjectTimestamp>AAAAABFFCOw=</a:ProjectTimestamp> <a:StolenLocks xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:EntityIdentity> <b:EntityCode>P001125-001</b:EntityCode> <b:EntityId i:nil="true"/> <b:EntityUid>1152921504607425735</b:EntityUid> <b:LockType>P</b:LockType> </b:EntityIdentity> <b:EntityLockSummary> <b:PwsEntityLockSummaryItem> <b:LockCount>1</b:LockCount> <b:LockHolderUserIdentity> <b:UserDisplayName>Krakauer, Larry</b:UserDisplayName> <b:UserId i:nil="true"/> <b:UserReferenceSystemId>097</b:UserReferenceSystemId> <b:UserUid>1152921504606944254</b:UserUid> </b:LockHolderUserIdentity> <b:MostRecentLockAcquisitionTimestamp>2018-11-13T20:31:20.647Z</b:MostRecentLockAcquisitionTimestamp> </b:PwsEntityLockSummaryItem> </b:EntityLockSummary> </a:StolenLocks> </PwsAddProjectNoteResult> </PwsAddProjectNoteResponse> </s:Body> </s:Envelope> |
...