• 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

Client-XML-server

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

Which is latest and more efficient way to sending data from client to the server visaversa?.

In my current application i used DOM.I know its very slow.I want to know what is the latest way of handling this issue.I mean what technology is that???.(When we google we get many ideas.Im basically confused now!!!

Thanks in advance

Prashanth
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
XML documents are typically transmitted as character streams - thats the whole idea, a character representation that is independent of the internal representation (such as DOM) in any particular language.

Character streamed XML documents are bulky so if bandwidth is a problem, you can transmit compressed streams (my article on Fastinfoset and compressed XML)

Bill
 
Prashanth Bhanu
Ranch Hand
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
William Brogden,Thanks do much


thanks and regards

prashanth
 
reply
    Bookmark Topic Watch Topic
  • New Topic