Show TOC Anfang des Inhaltsbereichs

Diese Grafik wird im zugehörigen Text erklärtDefaultAuthentication  Dokument im Navigationsbaum lokalisieren

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>

 

 

 

Ende des Inhaltsbereichs