Hi, I want to have a web service so that each person can put his/her surname, firstName, and dateOfBirth and this information will be extended as a XML file (Person.xml) on our server.
I already put Person.xml (which has only one person - Bill Gates) on Tomcat server. But now, I want to give other persons opportunity so they can also extend their information on our xml file ((Person.xml) as Bill Gates already did! Please let me know how can I implement such a service. I am a beginner in web service field, so please share your knowledge. Person.xml: <?xml version="1.0" encoding="UTF-8"?> <Person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "file:/C:/Tomcat/webapps/axis2/WEB-INF/services/Person.xsd" surname="Gates" firstName="Bill" dateOfBirth="1956-05-04"/> Looking forward for your response soon.