sergiosorias / jscep

Automatically exported from code.google.com/p/jscep
MIT License
0 stars 0 forks source link

jScep should return correct list of capabilities for test ScepServlet implementation #45

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Current test ScepServlet implementation support GetNextCACert command, but it 
doesn't return it as supported capability.

The file \server\src\test\java\org\jscep\server\ScepServletImpl.java, method 
doCapabilities should be:

@Override
protected Set<Capability> doCapabilities(String identifier) 
{
    return EnumSet.of(Capability.SHA_1, Capability.POST_PKI_OPERATION, Capability.GET_NEXT_CA_CERT);
}

Original issue reported on code.google.com by victor.r...@gmail.com on 25 May 2011 at 6:05

GoogleCodeExporter commented 9 years ago
The test implementation is designed specifically for testing only.

Original comment by davidgrant41 on 25 May 2011 at 7:06

GoogleCodeExporter commented 9 years ago

Original comment by da...@grant.org.uk on 13 Jul 2011 at 6:37