cancel
Showing results for 
Search instead for 
Did you mean: 

B1 Service Layer Login Issue On Destination Properties

nakuln
Explorer
0 Kudos

Hi Community,

i am trying to get the the following to work:

I have my SAP B1 ServiceLayer defined as a Destination.

I am getting SSL errror - "An error of type SSLpeerUnverified occured during connection" while using HTTPS.

Please note we are using SAP B1 on Cloud.

SAP B1 Version : SAP B1 9.3 PL 09 on HANA on Cloud

image-2019-06-20t08-37-13-180z.png

Accepted Solutions (1)

Accepted Solutions (1)

former_member197733
Contributor

2 Things to check

1 - The SL has a valid SSL certificate

2 - Are you sure you have the correct parameters for the connection? Asking cause I saw a port 50000 on the screenshot and that is usually not the case when we are dealing with B1 Cloud. Can you connect to it using postman?

Answers (2)

Answers (2)

former_member800925
Discoverer
0 Kudos

Hello.
Did you have success solving this? Im facing the same thing.

nakuln
Explorer
0 Kudos

Hi

Please guide me.

1- The SL has a valid SSL certificate -"OK"

2 - Yes, We have using the parameters fro the connection. To below information :

Name: InecomCloud
Type: HTTP
Description: Inecom Cloud
URL: https://sapb1hana.inecomcloud.com:50000/b1s/v1/Login
Proxy Type: Internet
Authentication: BasicAuthentication
User: {"UserName":"nakulnagekar","CompanyDB":"INECOM_INDIA_SALESCRM" }
Password : ********
-----------------------------------------
Additional Properties

WebIDEEnabled: true
WebIDESystem: INECOM_INDIA_SALESCRM
WebIDEUsage: odata_xs,odata_gen,ui5_execute

-----------------------------------------------------------------------------------

We are not able loging through postman.

-----------------------------------------------------------------------------------
Case 1)
request:
{
"UserName":"INECOMCLOUD/nakulnagekar",
"Password":"************",
"CompanyDB":"INECOM_INDIA_SALESCRM"
}

response:
{
    "error": {
        "code": -304,
        "message": {
            "lang": "en-us",
            "value": "Fail to get DB Credentials from Cloud Control Center."
        }
    }
}
-----------------------------------------------------------------------------------
Case 2)
request:
{
"UserName":"INECOMCLOUD\nakulnagekar",
"Password":"************",
"CompanyDB":"INECOM_INDIA_SALESCRM"
}
response:
{
    "error": {
        "code": -304,
        "message": {
            "lang": "en-us",
            "value": "Fail to get DB Credentials from Cloud Control Center."
        }
    }
}
-----------------------------------------------------------------------------------
Case 3)
request:
{
"UserName":"nakulnagekar",
"Password":"************",
"CompanyDB":"INECOM_INDIA_SALESCRM"
}
response:
{
    "error": {
        "code": -304,
        "message": {
            "lang": "en-us",
            "value": ""
        }
    }
}
-----------------------------------------------------------------------------------

It was working untill yesterday morning on psotmnan but now even postnam we are not able to connect.

former_member197733
Contributor

Did you also tried double slashes (\\) for the username?

like

"UserName":"INECOMCLOUD\\nakulnagekar",