Currently, I have a dynamic web application built using Angular and ASP.Net WebAPI. The process involves sending a JSON query to an API endpoint and receiving the response in RSS format.
$scope.generateRss = function(query){
$http.post("api/url", query)
.success(function(response){
//The response contains RSS feed data in XML format
//However, there are issues when trying to publish it as RSS
/*response = "<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
...
</channel>
</rss>"*/
})
.error(function(e){
//handle error
});
}
As of now, my API only supports HttpPost requests due to the large size of the queries being submitted. Is there any workaround or solution for this limitation?