Questions tagged [cosign-api]

DocuSign Signature Appliance API for digital signatures and integration questions. The appliance used to named "CoSign."

64 questions
0
votes
1 answer

Set Clear Policy while creating a Signature Field with CoSign Signature API

How to set Clear Policy while creating a Signature Field with CoSign Signature API programmatically in order to protect the signature from changes? I've found an enum SAPI_ENUM_SIG_CLEAR_POLICY in the documentaion but the usage of can't be…
Alexander Zwitbaum
  • 4,776
  • 4
  • 48
  • 55
0
votes
1 answer

cosign-api add reason to SOAP request

I am trying to add a reason to the soap request for a COSign SOAP signing. Can anyone provide me with a VB or C# example of how to do this? Thank you
0
votes
1 answer

DocuSign - Need to downgrade replacement CoSign Central appliance to version 5.2

We recently received an ARX device to replace a failed unit. The issue is that it has version 6 installed and we have a legal requirement to keep it version 5.2. Is it possible to downgrade to version 5.2 from version 6? And, if so, what is the…
John M
  • 1
0
votes
0 answers

New CoSign boxes return error: Failed create and sign err 90030389

We are upgrading our CoSign boxes. I am testing our code against the new box. All of the User create and update code works OK. The signing code gets this error: 08:52:15,663 gvl.ArxCoSignService addSignedSignatureFieldToPdfEDoc, Exception:…
DennLindy
  • 21
  • 5
0
votes
1 answer

Sign a hash with CoSign SOAP API

I have an sha256 hash and my goal is to sign it with CoSign SOAP API. Could you provide me a Java example? The PDF Signing example is working like a charm, but it's not perfectly clear for me, how should I set the InputDocument for this task.…
user1333856
  • 47
  • 1
  • 3
0
votes
2 answers

CoSign Cloud - Possible to sign binary file or buffer? (Detached Signature)

The CoSign documentation indicates that is possible to sign an arbitrary binary buffer and create a detached signature. See http://developer.arx.com/examples/sapi_local_detached_signatures/ However, looking at the WebAgent and SOAP API docs this…
kwaclawek
  • 91
  • 2
  • 5
0
votes
1 answer

Need help for integrating our custom application with CoSign Signature(JSON)

We are working on a CoSign Signature API app. We are using the 7.1 documentation. As mentioned in the documentation, to work on “CoSign Signature," we need to have the ARX ROOT certificate to establish the SSL session with the CoSign Appliance.…
0
votes
1 answer

Hash Error when trying to get Document Signed

When I try to send a document and signee over SOAP to CoSign in order to append the signature, I'm getting the following error: urn:oasis:names:tc:dss:1.0:resultmajor:ResponderError
0
votes
1 answer

How to Sign a PDF File using Field Locators using Java including its necessary jar (i.e. java packages)?

I am having a C# code for signing a PDF file using Field Locator in the given link http://developer.arx.com/examples/sapi-local-csharp-signing-a-pdf-file-using-field-locators/ I need Java compatible code and its necessary java packages to achieve…
mushir2007
  • 25
  • 5
0
votes
2 answers

Using coSign, can not figure out how to use .cer/.pfx files to sign and verify pdf documents in c#

I was recommended coSign for c# to sign and verify documents. I can't find anything helpful on the subject of using .cer and .pfx files to sign pdf files. I was assuming it would be as easy as loading a .cer file as a X509Certificate2, and then…
0
votes
2 answers

How to run CoSign Signature SOAP API in IBM Lotus Notes?

Session session = getSession(); AgentContext agentContext = session.getAgentContext(); // Custom Values String filePath = "C://20/ToSign.pdf"; // Pdf File to sign String fileMimeType = "application/pdf"; // File MIME type String username …
mushir2007
  • 25
  • 5
0
votes
1 answer

How to run CoSign Signature SOAP API code in java 1.6 version of IBM Lotus Notes?

I am having problem while using code for adding digital signature to pdf file. Here is the link of the code http://developer.arx.com/quick-start/sapi-web-services/#tab=t-helloworld . There are some classes in the code which are needed to import in…
mushir2007
  • 25
  • 5
0
votes
1 answer

CoSign API: How to display the signer's title in a signature

How do I display the user's title in a signature field? I've tried setting the Description and Job Title properties, but it doesn't show up in the signature, even when I include SAPI_ENUM_DRAWING_ELEMENT_TITLE in the signature appearance's flag.
Larry K
  • 47,808
  • 15
  • 87
  • 140
0
votes
1 answer

CoSign API: Controlling the font size in the signature block

Is there any way to control the font size in a signature field when a user signs a document using the web service? I'm referring specifically to the name, title and date attributes--as well as their respective labels--and not the graphical…
Larry K
  • 47,808
  • 15
  • 87
  • 140
0
votes
1 answer

CoSign API: How to sign a docx using webservice and java

I want to sign a Word docx file in the CoSign system. I want the signed file to be the Word document; I don't want it converted to be a PDF. I am using Java. I am using a test program, below, but it isn't working. import…