57
Views
1
Comments
Solved
ODC: Consume Rest Service behind a Private Gateway
Question

We set up a Private Gateway and try to fetch data with a RestService from a server in the local network.

Things that are done

  • The Private Gateway is running
  • The Rest-Methods are imported through a swagger file
  • The REST API's Base URL is set to https://secure-gatway:8081
  • The OnBeforeRequest appends new Header Entries to the CustomizedRequest.Headers List:
    • Host: theServerUrlInTheLocalNetwork.com
    • Authorization: Bearer asdfTheBearerToken

When i call the service, i get the Error Message:

"OS-BERT-00000 - The SSL connection could not be established, see inner exception. "

But there is no inner exception.

What could i try next?


Thank you

Kevin

2025-03-12 07-08-15
Nilesh Trivedi
Solution

Hi @Kevin Busch,

The SSL connection error you're encountering typically indicates a problem with the SSL/TLS handshake between your Private Gateway and the target server.

The error "OS-BERT-00000 - The SSL connection could not be established" without an inner exception suggests one of several potential issues:

  • Certificate trust chain problems
  • TLS version mismatch
  • Hostname verification failure
  • Network-level SSL interception
  • Incorrect Private Gateway configuration

Thank you

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.