Details
-
Bug
-
Status: Closed
-
Resolution: No Longer Reproducible
-
7.1.0 Alpha
-
None
-
None
-
2
Description
Using curl like this:
curl http://localhost:8080/api/jsonws/assetentry/get-entries \
-u [email protected]:test \
-d +entryQuery=%7Basdf%7D
I get this error:
{"exception":"No JSON web service action with path /assetentry/get-entries and method POST for null","throwable":"com.liferay.portal.kernel.jsonwebservice.NoSuchJSONWebServiceException: No JSON web service action with path /assetentry/get-entries and method POST for null","error":{"message":"No JSON web service action with path /assetentry/get-entries and method POST for null","type":"com.liferay.portal.kernel.jsonwebservice.NoSuchJSONWebServiceException"}}
But this works correct if I do this:
curl http://localhost:8080/api/jsonws/assetentry/get-entries \
-u [email protected]:test \
-d entryQuery={}
Maybe there is an error while adding the `+` symbol.