Linked Questions

0 votes
1 answer
810 views

angularjs rest call return xml in json format [duplicate]

I am using angularjs and spring mvc in my application. angularjs invokes spring controller using rest. The controller invokes external URL that returns XML. Now, I want to send this XML to angularjs ...
Maz's user avatar
  • 663
2 votes
2 answers
7k views

Displaying XML data in a webpage using AngularJS

I have an XML file which contains employees' data. <Employee> <ID>01</ID> <FirstName>Steven</FirstName> <LastName>Smith</LastName> <Phone>...
ARB's user avatar
  • 305
1 vote
0 answers
1k views

how to parse and get root element from an xml file using angularjs

i want to parse an xml and then get root element of that xml file using angular js, so far i have got that much coding where i can select multiple files. I have taken reference from the following :- ...
user3918170's user avatar
0 votes
0 answers
761 views

$.parseXML(xml) is not working on node.js

I am trying to use jquery on node.js under Bluemix but it is not working. I am retrieving an xml data from an URL and then try to parse it using jquery however I get the following error: ERR /home/...
Daniel Cabrera's user avatar
0 votes
1 answer
545 views

Working with XML and AngularJS - special web method to return JSON how to implement

I was recently assigned the task of creating a login page for my company and they're requiring that I use angularjs for the client side application. The authenication services are asp.net web ...
Bailey Miller's user avatar
1 vote
0 answers
350 views

AngularJS controller to search xml for value

We have an XML file with the structure: <people> <person> <name>David</name> <url>http://www.davidsurl.com</url> </person> <person> <...
rlsaj's user avatar
  • 735
0 votes
1 answer
337 views

How to get data from webservice using angularjs

I want to get the data from the webservice using angular js. pls help.. . $http( { url: "xxx.asmx/GetLogin", method: "GET", ...
KAKASHII's user avatar
0 votes
2 answers
322 views

How Do I Organize External JSON Data in Angular.js?

Okay, so I am trying to organize data I am retrieveing from an external API, and I am not sure how to go about it. I am able to get the entire JSON data to show via {{data}}, but how would I go about ...
user2259122's user avatar
0 votes
1 answer
237 views

AngularJS Binding Issue on Complex Object

I have this View Model returned from MVC REST service: [DataContract] public class AccountViewModel { [DataMember] public IEnumerable<string> Currencies { get; set; } [DataMember] ...
c0D3l0g1c's user avatar
  • 3,204
0 votes
0 answers
182 views

How to get the XML elements using AngularJS

I am retrieving some XML files from the server and I want to get elements by some tags. But It shows me an error to catch the element by tag. Can somebody help me to get the element by tag(tag name ...
K.Suthagar's user avatar
  • 2,306
0 votes
1 answer
90 views

Variable inside $http not reflecting change outside block

I am writing a web app in Angular, this piece of code is meant to get test XML data as text from the server. I am using Angular's $http service to send a GET request from the server. The variable '...
Emma's user avatar
  • 35