cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Cloud workflow GET service task log on error

Former Member
0 Likes
1,303

Hello,

In my cloud workflow, I am using HTTP GET, service

in gateway i tested and it worked perfect.

I tried to call same request in service task , configured as below

I was expecting response to be captured in response (which i was planning to modify and use in PUT method later).

but this service task is giving logon error.

Following is Task Context details.

Accepted Solutions (1)

Accepted Solutions (1)

tobias_breyer
Product and Topic Expert
Product and Topic Expert

Hi Niketan,

401 status code usually means that there were no authorization credentials in the request. See for example:

https://httpstatuses.com/401

With respect to Gateway or generally the ABAP HTTP server, you either might have specified "No authentication" at the Cloud Platform destination or the one configured is not compatible with the allowed logon procedures for the ICF service used for the Gateway service in your ABAP system. Possibly there are also system settings of your ABAP system. You should probably check the ICM log of the system to see why the authentication fails.

Regards,

Tobias

Answers (2)

Answers (2)

Archana
Product and Topic Expert
Product and Topic Expert

Error message says unauthorised. Please use right credentials in your destination.

Former Member
0 Likes

Hi Archana,

I am trying to use Service task with PUT oData call,

I am passing below path to XRF Token , but it is resulting in error

Former Member
0 Likes

It worked if I pass ?sap-user=user&sap-password=password in my URL for now.

I would try to explore better authentication process.