How to call a .NET web service with Kerberos authentication (or NTLM) from Oracle PL / SQL

We call the .NET web service from our oracle database using the sys.utl_http package. We also tested the sys.utl_dbws package.

This works great when there is no security in the .NET web service. However, we would like to use sys.utl_http or sys.utl_dbws to invoke the .NET web service using Kerberos or NTLM authentication.

We are currently struggling with this. Any clues on how to solve it?

+3
source share
2 answers

You did it?

I have not seen this in PL / SQL. I think this can be done using utl_tcp ...

Unix, Java Callout Oracle, "SPNEGO", Java, . SPNEGO SourceForge

Oracle Database Extensions .NET

+1

Source: https://habr.com/ru/post/1718690/


All Articles