• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

whats all this XML about????

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi every body ,
i am scjp ( thanks to javaranch ) , got tempted by the offer so would like to know what is this XML about ( can any body guide me on this ), do provide me the links to XML sites .
bye
satish varanasi
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
xml is extended markup language which can be used to create web pages it is derived out of sgml.
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can any body tell me if i can run xml on my browser directly?
what is the link between the xml and EJB
some say that it is server side .
what does it mean actually can any body pls guide
 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you already know Java and want to start up with XML (from the beginning), I recommend "Java and XML" from O'Reilly, authored by Brett McLaughlin (ISBN 0-596-00016-2). It really starts from the beginning and is written for Java programmers. The book's web site is:
http://www.oreilly.com/catalog/javaxml/

You can "run" XML in your browser directly if yo are using IE5. It has built-in rendering of XML documents, and can automatically apply style sheets. This is really only valuable if you are building intranet applications where you know your users are using IE5. A more common (and better) scenario is to have some server process take your XML document and transform it into HTML for your clients.

If you don't have the ability to transform the documents on the server on the fly, you can simply batch-process come XML documents and generate static HTML pages from them. For example, you could have the content for your web site in XML documents, and easily change your site's look and feel by altering your XSL style sheet, then process your XML files against the new style sheet. You then just publish the new files. I have done this before and I think it works great.
The only link I know of between XML and EJB is that the deployment descriptor for your EJB is an XML document. Most reputable EJB servers have some sort of "wizard" to generate this for you, but will still allow you to edit.
Hope this helps,
Bill
 
reply
    Bookmark Topic Watch Topic
  • New Topic