Hi there
Is it possible to generate a proof when using a continuous delivery in a workflow? I am keen to do this as I will be using script within the 'Advanced' tab to define certain parameters and so need to check that this is working as intended.
I have found the delivery.PrepareProof ( Boolean bStart) parameter within the CHM file. Will this do it? If so, is anyone able to advise what value goes in the bStart parameter?
Cheers
Chris
Solved! Go to Solution.
Views
Replies
Total Likes
Being boolean you just need to use the value of 1 for bStart.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">
<soapenv:Header/>
<soapenv:Body>
<urn:PrepareProof>
<urn:sessiontoken>___faked785-5bad-48f9-824d-e637fa869321</urn:sessiontoken>
<urn:entity>
<!--You may enter ANY elements at this point-->
</urn:entity>
<urn:bBStart>1</urn:bBStart>
</urn:PrepareProof>
</soapenv:Body>
</soapenv:Envelope>
Views
Replies
Total Likes
Being boolean you just need to use the value of 1 for bStart.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">
<soapenv:Header/>
<soapenv:Body>
<urn:PrepareProof>
<urn:sessiontoken>___faked785-5bad-48f9-824d-e637fa869321</urn:sessiontoken>
<urn:entity>
<!--You may enter ANY elements at this point-->
</urn:entity>
<urn:bBStart>1</urn:bBStart>
</urn:PrepareProof>
</soapenv:Body>
</soapenv:Envelope>
Views
Replies
Total Likes
Views
Likes
Replies