Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Authentification with X.509 on SAP NW Java

Former Member
0 Likes
849

Hi experts,

A Certificate RootAuthority delivers X.509 to our users.

We want to have authentification using those X.509 on SAP NW Java. Does SAP Java able to check certificate validity in RootAuthority Server ? Does it come out of box, or do we need additionnal library ?

Thanks for your help,

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
811

Hi,

it should work out of the box. Check SAP doco for more info.

http://help.sap.com/saphelp_nw72/helpdata/en/4a/41f432343f2ab1e10000000a42189c/content.htm

Cheers

Hi experts,

A Certificate RootAuthority delivers X.509 to our users.

We want to have authentification using those X.509 on SAP NW Java. Does SAP Java able to check certificate validity in RootAuthority Server ? Does it come out of box, or do we need additionnal library ?

Thanks for your help,

4 REPLIES 4
Read only

mvoros
Active Contributor
0 Likes
812

Hi,

it should work out of the box. Check SAP doco for more info.

http://help.sap.com/saphelp_nw72/helpdata/en/4a/41f432343f2ab1e10000000a42189c/content.htm

Cheers

Read only

Former Member
0 Likes
811

Hi Martin,

Thanks for your quick answer. I will be more precise in my question :

User certificate is compare to CA root authority certificate stored in PSE file (no direct request) ?

For Certificate Revocation, there is no way to send a request to CA ? The only way is to include ACL file on Java server ?

Thanks,

Read only

mvoros
Active Contributor
0 Likes
811

Hi,

not sure if I understand your first question but the system needs to trust to certificate that is used to sign certificates for users. The certificate (chain of certificates) is stored in PSE. There is no call to CA to verify cert.

CRL file can be downloaded to application server to improve performance. In this case you have to update CRL by yourself. Java AS can also request CRL from CA. Hence the answer for you second question is no. You can have online request. More info.

Cheers

Read only

Former Member
0 Likes
811

thanks Martin for your answer. It helps.