e-Contract / dssp

Digital Signature Service Protocol
Other
4 stars 2 forks source link

SignResponseVerificationResult.getSignerIdentity always returns null #6

Closed klr8 closed 9 years ago

klr8 commented 9 years ago

I would like to learn about who signed a document. To get to that information, I'm calling getSignerIdentity on the SignResponseVerificationResult object returned by SignResponseVerifier.checkSignResponse. However, that always seems to return null.

Is there something else I need to do to make this work?

I'm using dssp-client 1.2.3.

fcorneli commented 9 years ago

Via PendingRequestFactory.createPendingRequest you have to indicate that the DSS should return this signer identity.

klr8 commented 9 years ago

That indeed seems to work. Thanks!