I use CSS 11501 to accelerate ssl sessions and autheticate users.
CSS gets the certificate from the client browser. The certificate DN contains for example:
"CN=info1, SERIALNUMBER=REGON: 321123321, OU=info2, O=info3, C=PL".
The CSS sends the certificate to beckend servers as:
"C=PL, O=info3, OU=info2 ADR, SN=REGON: 321123321, CN=info1".
There are two incorrect things:
1. The order of attributes in DN is reversed. This is not compliant with RCF 1779.
2. SERIALNUMBER is replaced to SN string.
How to resolve this problem ?