• 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

Anybody using XML for real?

 
Trailboss
Posts: 23778
IntelliJ IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I know we're bombarded in the press about it, but is anyone really using it?
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've seen it in use to manage some web sites. Astray.com comes to mind. He explains how he generates the site on the site. Otherwise, like any other primarily middleware and server-side technology it's hard to spot.
 
paul wheaton
Trailboss
Posts: 23778
IntelliJ IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It seems to me that the promise of XML is portability of data. Has anyone done any data porting that worked smoothly?
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
iBelong uses extensively XML and Java for the portal developments
to the affinity groups in USA. http://www.ibelong.com
around 30 portals have been developed till today. http://buckmasters.ibelong.com http://legion.ibelong.com http://americanflyers.ibelong.com http://wm.ibelong.com http://workingfamilies.ibelong.com
.....
.....
.....
------------------
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We're using XML in our messaging system - sending XML messages between some legacy systems and our internal system. Works quite well, and is very flexible for the future.
 
Rich Wardwell
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just an added comment that hit me - XML is used extensively in JMS (Java Messaging System). This seems like a pretty hot API - I've been researching it lately and look forward to using it in the future. It leverages XML's genericness and ubiquity.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Paul Wheaton:
I know we're bombarded in the press about it, but is anyone really using it?
Hi wheaton,
Xml is being used mainly in the b2b project like hell people are really looking forward for the tools that write and parse xml i think there are lots of them.We use DOM of microsoft which is good for small size of xml files.
Hope your question is answered if not let me know
Have Fun
sri


 
Desperado
Posts: 3226
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Office Depot is also beginning to use it heavily. I already had to get my feet wet in it (XML)
It's used mainly to share data between applications. Of course those applications can be B2B or all Intranet. Or a mix.
 
Ranch Hand
Posts: 230
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The very feature rich text editor Jext uses it. It uses XML in atleast one place I know of and thats a JTree which has different sections on it used to insert stuff into your text, you can use XML to customize what selections you make to insert new text into your document. Its a great programmers editor.
http://www.chez.com/powerteam/jext/
Frank
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
paul we use xml to send trade messages around the world.the xml is sent on an mq-series que.
 
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
My most recent XML project has been related to LANWrights courseware that we use to teach on-line classes. Over the years this has gone through several redesigns and accumulated a lot of weird format initialization files.
I am having great success putting these initialization parameters into a single XML document. Advantages are:
1. Single document - everything for a given course can be found in one file. It is also easy to write in comments to document fields.
2. Dynamic lookup - instead of setting a parameter on startup and being unable to change it, I keep the DOM in memory and look the parameter up as needed! That makes it dynamically modifiable either by online change to the DOM or by forcing a read of a new XML file.
Other XML projects -
The next generation of my testing applet will read an XML script
I have a news page that I hope to integrate into the site at: http://www.lanw.com/books/javaxml/netnews.jsp
A client of mine is using XML to produce annotation for legal documents.
Bill
 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Paul,
Our multi-tiered application was completely developed utilizing XML technology. XML templates are stored on the server(we use Netscape Enterprise Server) and after call was generated we use XSL (plus some embedded Javascript for different programming purposes)files to generate HTML on the fly. Works perfectly(even though we needed some additional Java Controllers calls to see if it's being generated correctly. It's a little bit of overhead.)
--Alex
 
Ranch Hand
Posts: 180
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use XML for various uses in most of my projects. Also, Tomcat uses XML for its configuration files, as does NetBeans. Ant is very XML dependant.
It is wide spread and very useful.
------------------
Chris Stehno (Sun Certified Programmer for the Java 2 Platform)
 
reply
    Bookmark Topic Watch Topic
  • New Topic