Show TOC Start of Content Area

This graphic is explained in the accompanying textDefaultAuthentication  Locate the document in its SAP Library structure

In this authentication method an application doesn’t use any additional Java EE authentication mechanisms, but uses credentials configured by default for SAP JRA (during SAP JRA deployment). All Users that are authorized to access your application will therefore communicate with the SAP system using the same User / Password credentials configured on your SAP JRA instance.

 

To enable this, the servlets or EJB standtad descriptors should contain the following entry:

<res-auth>Application</res-auth>

 

 

Example:

To enable it for ConenctionFactory MyConnFactory the following entries are required:

 

<resource-ref>

        <res-ref-name> MyConnFactory</res-ref-name>

        <res-type>javax.resource.cci.ConnectionFactory</res-type>

        <res-auth>Application</res-auth>

</resource-ref>

 

 

 

End of Content Area