• 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

xml parser error in my tld file

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
I am pasting the error it is giving me .Would appreciate any suggestions that anyone might have as to where i may have gone wrong.
thanks
plants.tld file
<?xml version="1.0" encoding="UTF-8" ?>

<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<description>A taglib for plants functions.</description>
<tlib-version>1.0</tlib-version>
<short-name>PlantsFunctionTaglib</short-name>
<uri>/PlantsFunctionTagLibrary</uri>

<function>
<description>Load all the customers</description>
<name>loadCust</name>
<function-class>plants.Customers</function-class>
<function-signature>void loadCust()</function-signature>
</function>


<function>
<description>Clear all customers from the list</description>
<name>unloadCust</name>
<function-class>plants.Customers</function-class>
<function-signature>void unloadCust()</function-signature>
</function>

<function>
<description>Check for a customer with their customer id
</description>
<name>checkCust</name>
<function-class>plants.Customers</function-class>
<function-signature>java.lang.boolean checkCust(java.lang.int)</function-signature>
</function>
 
reply
    Bookmark Topic Watch Topic
  • New Topic