Home > Back-end >  How/where can I test a xml application
How/where can I test a xml application

Time:01-23

I need to make a application with xml and ajax, my questions are:

  1. what should I learn besides xml and ajax?
  2. 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.
  3. 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#

CodePudding user response:

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.

  •  Tags:  
  • Related