Skip to Main Content

Java Security

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

TLS handshake w Client Authentication via Smart Card

4247649May 7 2020 — edited May 7 2020

Our group has a JavaFX application that transfers user data to our server.  The TLSv1.2 negotiation requires client authentication via a smart card.  The user has JRE 1.8.0_241-b26.  Where can this exact build be downloaded. The machines at his site all use the version.  I have tried to produce the handshake errors with 122, 241, and 251.  No problems for me but I don't have this exact build. Is there a build archive and what is required to access it.

Thanks, Andrew

Comments

Hello,
UNC paths usually are restricted due to the security nature of Oracle Report.
Added <folderAccess> element in rwserver.conf file

<folderAccess>
<read>O:\temp\*</read>
<write>O:\temp\*</write>
</folderAccess>

Add this line to setDomainEnv.cmd script in $DOMAIN_HOME/bin directory
NET USE O: \\server01\my_directory /user:<userid> <password>
where:
O: – is the mapped drive letter
\\server01\my_directory – is the root of remote file system
<userid> – name of user authorized to connect to remote file system.
<password> – password for <userid>
then you can use O:\file to access files within my_directory
Thanks, Suresh

user6532048

I did add the drive from file explorer, I can access the new drive in the file explorer.
Is that I also need to add "NET USE" in setDomainEnv.cmd?

1 - 2

Post Details

Added on May 7 2020
0 comments
166 views