• 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

Display the contents from an xml document in a web page

 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Everybody,

I have an simple requirement of displaying the contents of an xml document one node at a time in a webpage. Kindly suggest the best way to do it. I am not able to zero in on the method to be used like applet / jsp/ any other means.

Your opinions will help me in getting to start the coding.


Note:- In the xml one of the node contains the image in binary format. i need to display even that. and more over at the end of the project i need to display the full image with zoning to the image co-ordinates in the XML nodes.

 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Create a simple html document and print the xml content in that, replace < and > with &lt; and &gt;
 
binu narayanan
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Printing the xml to html will not solve the issue. within the xml i have base64 encoded binary format image and the value associated with it to the webpage.

I had done the code with applet, but when running the applet in a web browser i had faced some issues.

Thats is why i have doubts over the technology i have chosed.

Could like to get your opinion on this

Binu
 
reply
    Bookmark Topic Watch Topic
  • New Topic