Hi, In the documentation I read they can send for one call : REQUEST_METADATA.VISIBLE_SIGNATURE_RECTANGLE REQUEST_METADATA.VISIBLE_SIGNATURE_PAGE For a call of type : MultipartBody prepareRequest = Unirest.post(URL_API_PRODUCTION + "/process") .field("workerName", "PDFSigner") .field("processType", "signDocument") .field("filereceivefile", file); But in some case, we have two or more signature one the same document. Should we send an API call "for each signature"? or is there a way to send a document...
Hi, I launch signserver with the command : docker run -it --name signserver \ -h signserver.xxx.com \ --network="host" \ -e DATABASE_JDBC_URL='jdbc:mysql://localhost:3306/signserver?characterEncoding=UTF-8' \ -e DATABASE_USER='aaaa' \ -e DATABASE_PASSWORD='bbbbbbb' \ -e PROXY_HTTP_BIND='w.x.y.z' \ keyfactor/signserver-ce:latest In the documentation : Configuring the container as a proxy back-end will disable TLS setup and the Admin UI will be open to anyone with network access until configured otherwise....