SoapUI 5.4.0 Client Credentials Grant - Get Access Token failure
I'm trying to use SoapUI 5.4.0 "Get Token" functionality to get the access token for Client Credenttials OAuth2.
It fails with the error "Could not retrieve access token ...".
I'm running an Oracle ORDS server (17.4.1.353.06.48) in Standalone mode, HTTPS with a self-signed certificate.
I can successfully retrieve a token using curl UNIX command and also Advanced REST client.
I turned on logging on the ORDS server and the only difference I can spot is that SoapUI is not sending any Authorization with the Client Id and Client Secret.
SoapUI - this fails
POST /ords/dev/oauth/token HTTP/1.1
Host: 192.168.10.2
Connection: keep-alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
Host: 192.168.10.2:8443
Content-Length: 103
Content-Type: application/x-www-form-urlencoded
curl - this works
POST /ords/dev/oauth/token HTTP/1.1
Host: 192.168.10.2
Authorization: Basic encrypted_client_id/secret
User-Agent: curl/7.56.1
Host: 192.168.10.2:8443
Accept: */*
Content-Length: 29
Content-Type: application/x-www-form-urlencoded