el « Validation « JSP-Servlet Q&A





1. Custom tld function validation in eclipse    stackoverflow.com

I am working in eclipse (Ganymede 3.4.1) and have created a ctl TLD :

<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.0" 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">
 <tlib-version>2.0</tlib-version>
 <short-name>Name</short-name>
 <function>
  <name>readExtendedField</name>
  <function-class>uk.newsint.advertising.wsconnection.ConnectionManager</function-class>
  <function-signature>
  ...

2. Compile-like validation for EL    stackoverflow.com

I need to make sure the properties I use in JSP page exist. I use 3-rd party jar that I get data from and I want to make sure if some ...

3. Using EL functions    stackoverflow.com

I am trying a simple validation program with JSP and EL (not that I need the functionality itself, but just to learn the ropes of JSP). I set the prefix as ...