CF18 - The @FormParam is utilized when the content type of the request entity is not
Started seeing some weird message today in my CF18 environment. The message is "The @FormParam is utilized when the content type of the request entity is not application/x-www-form-urlencoded" when calling a CF REST service in a cfc file. This has worked as recent as a week ago so not sure why it would be an issue now. Has anyone expereicned this before? The call we make to the REST service is shown below. I am thinking it is related to tthe headers but not sure if that value should be something different.
$http({
method: 'POST',
url: strServiceUrl + 'admin/create/' + $scope.selectedRecall.id + '/retailblock/remove',
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
Thanks.
