Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
AndreasForster
Product and Topic Expert
Product and Topic Expert
2,519
The OpenAPI Servlow operator in SAP Data Intelligence provides a REST-API that can be called from another program or process. Such pipelines can be used to obtain predictions from a Machine Learning model in real-time, but there are many other use cases.

In this blog you find the steps to call such a REST-API using a technical user's certificate (and not your own user's password).

Thanks to jamesgiffin, we looked into this together, and kudos to mark.waldaukat and Florian Föbel who helped us along with DI's certificate concept.



Prerequisites


You have already created a pipeline that uses the OpenAPI Servlow operator. The steps in this blog are based on the inference pipeline described in SAP Data Intelligence: Create your first ML Scenario

My own user is defautl\ext01 and it can call the REST-API using my own SAP Data Intelligence password.


 

Call the REST-API with a technical user's password


First, the pipeline must be visible to the technical user. Undeploy any inference pipeline that might still be running. Then, still logged on with your own DI user, create a new version of the ML Scenario. The versioning makes the content visible to other users, including the technical user.


 

After having versioned the ML Scenario the technical user can see the notebooks, pipelines and saved models from the scenario. However, the Dockerfile is not yet visible for the tech user and must be shared specifically.

Still logged on with your own user go into the "System Management" and select the "Files" tab. With the search box find the folder of your Dockerfile. Select "Export as solution to solution repository". These steps are also documented in the help under Sharing Files Using Solution Repository.


 

Now log out of your own user and back in with the technical user. My technical user is called ditech This technical user must have the role "sap.dh.Developer" assigned and possibly other roles. For a simple test I assigned all roles but you may want to be more restrictive.

Still on the "Files" tab of "System Management" (but now logged on as the tech user) click the "+" sign and select "Import solution from solution repository".


 

Find the solution that you have exported and select "Import Solution".


 

Now all required content should be accessible for the technical user. Go to the ML Scenario and deploy the existing inference pipeline. Select the trained model that was created by your own user. The first deployment will take longer as the Dockerfile is getting built for the technical user.


 

Once the pipeline is running you get the usual deployment url.


 

And now you can call the REST-API with the technical user.


 

Call the REST-API with a technical user's certificate


Download and extract the "SAP Data Intelligence System Management Command-Line Client (CLI)". This CLI will create the certificate that will be used to replace the password.

Logon with the technical user through vctl to SAP Data Intelligence. You will be prompted for the password. (click the screenshot to see the details)
vctl login https://YOURDISYSTEM.ondemand.com/ YOURDITENANT YOURDIUSER


 

Create the certificate files. The "-o ." parameter specifies that the files should be written into the current folder.
vctl user certificate generate -o .


Two files were created:

  • bundle.pem:  the certificate

  • key.pem: the private key


 

Now test a logon with these files through vctl. Logout first.
vctl logout

 

Log back in, now with the certificates.
vctl login  https://YOURDISYSTEM.ondemand.com/ --user-cert bundle.pem key.pem


 

Knowing that the certificates are working, use them to call the REST-API created by the OpenAPI operator in SAP Data Intelligence. Go back to Postman. First remove any cookies from Postman so that you are sure that the certificates will be used.


 

Then add the certificates to Postman. Go to "File" -> "Settings" -> "Certificates" and click "Add Certificate". Use the details to add the certificates

Specify the host as: YOURDISYSTEM.ondemand.com/

CRT file: Select the bundle.pem file

KEY file: Select the key.pem file


 

Now in the existing Postman request change the Authorization to "Inherit auth from parent".

Send the request and you should receive the response.


 

You have called a REST-API that is provided by an OpenAPI Servlow operator with a technical user's certificate. No password required.
7 Comments