diff --git a/src/main/webapp/scripts/controllers/transactionList.js b/src/main/webapp/scripts/controllers/transactionList.js index 7ec95ec7c..1a9851898 100644 --- a/src/main/webapp/scripts/controllers/transactionList.js +++ b/src/main/webapp/scripts/controllers/transactionList.js @@ -131,7 +131,9 @@ pinpointApp.controller('TransactionListCtrl', ['TransactionListConfig', '$scope' */ getTransactionList = function (query, cb) { $http - .post(cfg.applicationUrl, query.join("")) + .post(cfg.applicationUrl, query.join(""), { + headers: {'Content-Type': 'application/x-www-form-urlencoded'} + }) .success(function (data, status) { if (angular.isFunction(cb)) { cb(data);