I need to make a application with xml and ajax, my questions are:
- what should I learn besides xml and ajax?
- How can I test the application? I heard that wampserver is good for hosting a website locally, but I don’t really know php, but I think I can learn it.
- There are better ways to test a xml application?
PS: I haven’t started learning xml and ajax yet. I know some basic stuff in java, python and c#
>Solution :
If you are going to make Ajax calls from the browser to a REST endpoint that returns data in xml format you could test the REST endpoint with Postman. If you are getting xml from a SOAP web service you can test with SOAPUI. If you need to parse the returned xml with Javascript you could use the Javascript DOMParser object. See https://www.w3schools.com/xml/xml_parser.asp.