• 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

Typo mistake in SCWCD Study Kit Book?

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
Is there a typing mistake on Chapter 16 of SCWCD Study Kit (by Deshmukh, Malavia) on page 300. Its about TLD files.
It says:
"First, a tag library descriptor file, like all XML files, starts with the line <?xml version="1.0" encoding="ISO-8859-1">, which specifies the version of XML and the character set that the file is using. "

Shouldn't there be an extra ? at the end before >
like this:
<?xml version="1.0" encoding="ISO-8859-1" ?>
I get xml parsing error when setting up my tld file.
thx,
geoff.
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think it is a typo. But yet for the deploy
ment descriptor(web.xml) file it does have the ?> at
the end.
I am not a strong xml person so I don't know why that
is. Anyone???
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, it's typo mistake.
XML declaration should begin with <?
end with ?>
and put on the first line of the XML file.
 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
The error has been mentioned on the books website.Here is the link.
http://www.manning.com/getpage.html?project=deshmukh&filename=errata.html
 
Geoffrey Lo
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Awsome! Thanks for the update
reply
    Bookmark Topic Watch Topic
  • New Topic