I\'ve been looking for hours for some angularjs documentation that explains how to POST xml data using the $http object. Does angular simply not of
angularjs
$http
Figured it out. The Content-Type is threw me for a while. Seemed that application/xml made more sense. Oh well, whatever works!
Content-Type
application/xml
$http({ method: 'POST', url: 'http://10.0.0.123/PHP/itemsGet.php', data: '', headers: { "Content-Type": 'application/xml' } })