请帮帮我。我正在尝试使用cosign对pdf进行签名。hear是我代码的一部分
try {
initializeKeyStore();
HttpsURLConnection.setDefaultHostnameVerifier(new NullHostnameVerifier());
final DSS dss = new DSS(wsdlURL, new QName("http://arx.com/SAPIWS/DSS/1.0/", "DSS"));
final SignRequest req = createSignRequest(pdfFile, signFieldName, userName, password);
signRes = dss.getDSSSoap().dssSign(req);
} catch (Exception e) {
throw new DssException(e.getMessage(), e);
}但是我得到了"90030103“错误。
谁能给我提供一些简单的教程,在那里我可以找到如何签署PDF。
发布于 2015-03-16 16:38:42
看看http://www.berthou.com/us/2007/11/28/sign-a-pdf-document/吧,我希望它对你的目的有用。
https://stackoverflow.com/questions/29071468
复制相似问题