• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

generating dynamic XML

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i need ur advise on how to use XML for developing a simple application.
in my application, the user is presented with a HTML form by which he
can make necessary selections. the form template is given below:
<form name="theForm">
<select name="sel" onchange="loadFile();">
<option> Choose the map u prefer
<option value="C:\My Documents\usa.jpg">US
<option value="C:\My Documents\uk.jpg" >UK
<option value="C:\My Documents\spain.jpg">Spain
<option value="C:\My Documents\greece.jpg">Greece
</select>
</form>
in the above application , the user chooses a map and some data files and on the server side, some processing is done on the user selected map using the data also selected by the user and the final map is displayed back to the user.
i have been asked to use XML in the above situation(probably for data exchange!!). i need to design a XML file that encapsulates the choices made by the user and this XML file has to be sent to the server via HTTP.
the server-side programs are to interpret this XML file and do necessary procesing. my question is:
is it possible to design such a XML file? this XML file should be a dynamic one that should change each time the user makes selection using the form.
i posted this question in XML forum and was advised to post it in JavaScript forum for better responses. eagerly looking forward to ur suggestions.
thanks in advance
 
I knew I would regret that burrito. But this tiny ad has never caused regrets:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic