cancel
Showing results for 
Search instead for 
Did you mean: 

"ICF Error when receiving the response: ICM_HTTP_SSL_ERROR") in SAPbyDesign

We are doinga small application in SAPbyDesign that consults the exchange rates of the European Central Bank and through the soap webservice that SAP provides us, we want to keep the exchange rates we obtain every day.

The fact is that we are consulting the exchange rates of the European Central Bank well, and we obtain the data well. But when we want through the soap webservice provided by SAP we are not able to save those types of changes, we get the following error

SOAP:1.023 SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_SSL_ERROR")

My code is:

var requestExchangeRate : LN_Std_ManageExchangeRate.MaintainBundle.Request; requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.BasicMessageHeader.UUID.content = this.uuid.content.ToString(); requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.ExchangeRate.GetFirst().TypeCode.content = this.TypeCode.content; requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.ExchangeRate.GetFirst().SourceCurrencyCode = this.OriginCurrency; requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.ExchangeRate.GetFirst().TargetCurrencyCode = this.DestinyCurrency; requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.ExchangeRate.GetFirst().MidRate = this.Rate; requestExchangeRate.ExchangeRateBundleMaintainRequest_sync.ExchangeRate.GetFirst().ValidFromDateTime = this.Date; var result=LN_Std_ManageExchangeRate.MaintainBundle(requestExchangeRate,"",StdScenarioName);


Best Regards

Accepted Solutions (1)

Accepted Solutions (1)

anant_acharya
Advisor
Advisor

Dear Luis,

Could you please first check if your certificate has expired, you need to renew it and import the new certificate again

You need to contact the person who maintains the communication arrangements to upload the certificates

Please find below steps where we you have to upload the certificates in ByDesign

  1. Go to Application user management work center
  2. Go to common task Edit Certificate Trust List
  3. Click on Upload

Regard
ANant

Answers (0)