Online documentation - Websydian v6.0 |
Users Guide | Patterns Reference | WebsydianExpress | Search |
This page lists the error messages returned by Websydian and the actions that need to be taken to solve the error. All of the messages are written to a standard HTML document and sent back to the web browser, except for the error messages Unable to create document template and Dispatcher URL could not be found in the default INI file.
This message pops up in a dialog box when a Document Template Generator is unable to create a file for the document template. The Document Template Generator function attempts to create the Document Template in a folder with the name HTML located under the source directory specified in the Generate and build options.
Refer to the section Name and Location of Document Template in the Document Template Generator Implementation help page.
A default entry has been added to the INI file.
This entry should be modified.
This message pops up in a dialog box when the Document Template Generator is unable to locate an INI-file key entry with the URL of the Dispatcher function of the Websydian application.
The INI file in question is the default INI-file used when a AllFusion Plex function is executed inside the AllFusion Plex environment. Refer also to the subsection Specify Path to Dispatcher in Plex INI-File in the Implementing page of the Document Template Generator function.
A Page Generator function is unable to open the Document Template.
For the PC web server variant:
Make sure you have supplied the correct path to the template documents in the INI file of your Dispatcher function. E.g:
[HTML]
PATH=C:\Web\Template_docs\
For the AS400 web server variant:
Make sure you have supplied the correct path to the Document Templates in the WSYDPATH data area.
The Dispatcher function tried to call an Event Handler function, but did not succeed. Make sure that the Event Handler function is compiled and located in the same directory as the Dispatcher function.
A Page Generator function containing a grid stores all HTML source lines between the two grid markers in an array of 128 elements. This error message is generated when the number of lines exceeds the capacity of the array. The error message can be eliminated in two ways:
This error message only appears if Websydian is installed on an iSeries server and interacts with an iSeries web server, i. e. with the AS400 web server variant of Websydian.
The HTML Document Templates are loaded at application start-up in a cache for each Document Template. The cache has a static size limit which defaults to 256. When this limit is exceeded, the error will be produced.
In order to enlarge the size of the cache, enter the following triple for the Page Generator function that reported the error:
PageGenerator | variable VAR ... as SYS ... Occurs NBR |
DocumentCache Local CacheSize |
The CacheSize can roughly be determined by the size of HTML document template in bytes divided by 180.
Example:
The size of a HTML document template is 52058 characters. The CacheSize is calculated to 52058 / 180 = 289. The triple is entered as:
MyPageGenerator | variable VAR ... as SYS ... Occurs NBR |
DocumentCache Local 289 |
In general, large HTML Document Templates should be avoided since they will require a lot of processing for each request and this will result in web users having long response times.
The Dispatcher function was not able to find a match between the supplied event handler request and an Event Handler function. The reason for this error can be:
The Websydian Dispatcher program tries to detect the form method used. If the method is not POST or GET, this message will be written back to the web server in a HTML document.
This error occurs if a web user has changed one or more hidden fields that are protected by the digital signing mechanism. Values of hidden fields can only be modified by editing the HTML source directly.
This error message will also occur if one or more of the protected hidden fields has a FLD control SYS triple of type List, Combo, Check, or Radio and the WSYD Map literal values to names option is set to *Yes.
To remedy the latter case, either turn off mapping of literal values, remove the literal values from the fields in question or exclude the fields from digital signing by adding them to the ExcludeFromSign variable.
The error will also appear if a field is defined for the Hidden variable and not for the corresponding WsyDetails or WsyGrid variable.
HTML source element exceeds number characters and might be rendered incorrectly by browsers
This warning will be sent to the system operator console of an iSeries web server. It only appears if Websydian is installed on an iSeries server and interacts with an iSeries web server, i. e. with the AS400 web server variant of Websydian.
The iSeries web server has an internal constraint that HTML source lines must not exceed 254 characters. For this reason, Websydian inserts line breaks if HTML source lines exceed this maximum.
In some cases the line breaking results in a HTML source that cannot be rendered correctly by some browsers, e.g. Microsoft Internet Explorer: This happens if parameter values enclosed in quotes exceed the maximum. This will cause the warning to be produced.
Example: Given the HTML source lines:
<input name="Description"
value="Long description .... 300 chars wide">
Websydian will correctly reformat these lines to:
<input name="Description"
value="Long description ....
300 chars wide">
Microsoft Internet Explorer will incorrectly only render the value up to the first line shift.
If the content lines of PRE sections exceeds the maximum, Websydian will insert line breaks at the rightmost possible space and proceed.
Example of PRE-section:
<PRE>
This line should be rendered as-is ... 300 chars wide
</PRE>
Websydian will line break the HTML source in two different situations:
In order to minimize line breaking during the page generation, the line breaking during HTML Document Template load actually is done at the 220-character limit in order to leave sufficient room for substitution of most values.
To remedy this situation the HTML source file must be modified in order to reduce the length of the HTML source elements in question. No single value should exceed 220 characters, both static values and dynamically values substituted into the generated HTML pages.
This error is only relevant for the PC web server variant.
Before parsing the input parameter string, the Event Handler attempts to allocate memory to store the string. If the memory allocation fails, the above error message is displayed on an Error Page.
This error message should be very rare. It indicates that the web server machine is low on system resources or that the length of the input parameter string is unreasonably long.
To avoid the error, free up some system resources.
In the Event Handler function, it is possible to specify a maximum length (default 10 kb) of the input parameter string. If the input string exceeds this maximum length, further processing is aborted by the Event Handler function and the above error is sent to the user by an error page.
If the user entered valid data, the maximum input parameter length accepted by the Event Handler function should be increased.
Otherwise, this error only occurs if a malicious user tries to crash the web application by sending a large amount of input data.
In the MultipleInput.Processgrid there is a check if the number of input lines exceeds a customer specified limit. The default limit is 64, but can be changed by adding code the to edit point "Start set max number of rows"
e.g. Set Local<NumberOfRows> = <MyNumberOfRows.MyDefaultMax>