| Item | What does it mean? |
| Input for valid case: |
HTML for valid case.
|
| Input for invalid case: |
HTML for invalid case.
It will include the messages (and the additional HTML tags) as if all the inputs are invalid.
|
| Output XML: |
XML to be generated.
It should be placed under:
- (docBase)/WEB-INF/classes
directory (or its sub-directory), because the generated XML will be loaded by our Java API.
|
| Character Encoding for input: |
Charset in which the specified pair of HTML is written.
|
| Character Encoding for output: |
Charset in which the output XML will be written.
|
| Content-Type: |
The content-type of the response from your Servlet, followed by charset extension. For example, it will be:
- text/html; charset=ISO-8859-1
|
| Validation resource: |
The property file which lists the classes.
These classes are used to validate the request parameter from the CGI FORM.
This property file is shipped with the distribution of our Java API.
It should be placed under:
- (docBase)/WEB-INF/classes
directory, because it is required also for our Java API.
In case of ViewGenerator API, it will be:
- (docBase)/WEB-INF/classes/ValueVerifier.properties
|
| Escape resource: |
The property file which lists the classes.
These classes are used to escape the String to be inserted.
This property file is shipped with the distribution of our Java API.
It should be placed under:
- (docBase)/WEB-INF/classes
directory, because it is required also for our Java API.
In case of ViewGenerator API, it will be:
- (docBase)/WEB-INF/classes/StringEscaper.properties
|
| Break resource: |
The property file which lists the classes.
These classes are used to insert the tags for the line break.
This property file is shipped with the distribution of our Java API.
It should be placed under:
- (docBase)/WEB-INF/classes
directory, because it is required also for our Java API.
In case of ViewGenerator API, it will be:
- (docBase)/WEB-INF/classes/LineBreaker.properties
|