We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example if I want to serialize a BasicOCSPResponse which in turn has a ResponseData that has the attribute producedAt: Date
BasicOCSPResponse
ResponseData
producedAt: Date
This snippet fails with Error: Cannot get schema for 'Object' target
Error: Cannot get schema for 'Object' target
AsnConvert.serialize( new OCSPResponse({ responseStatus: OCSPResponseStatus.successful, responseBytes: new ResponseBytes({ response: new OctetString( AsnConvert.serialize( new BasicOCSPResponse({ tbsResponseData: { producedAt: new Date(), responses: [], responderID: new ResponderID(), version: Version.v1, responseExtensions: [ { critical: false, extnID: id_pkix_ocsp_nonce, extnValue: new OctetString(Convert.FromHex("FFF")), }, ], }, }) ) ), }), }) );
Is there a workaround for this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example if I want to serialize a
BasicOCSPResponse
which in turn has aResponseData
that has the attributeproducedAt: Date
This snippet fails with
Error: Cannot get schema for 'Object' target
Is there a workaround for this?
The text was updated successfully, but these errors were encountered: