XMLSCREENREPUC (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


If <var>XMLSCREENREPUC</var> is not specified and XMLSCREEN processing receives XML that contains characters that cannot be translated to EBCDIC, the request is cancelled. To prevent this, <var>XMLSCREENREPUC</var> can be set to a Unicode character that has a valid translation. For example, to replace non-translatable (to EBCDIC) Unicode characters to a question mark, specify <code>XMLSCREENREPUC X'3F'</code> on the <code>JANUS DEFINE</code> command for a port (since Unicode X'003F' is a question mark).   
If <var>XMLSCREENREPUC</var> is not specified and XMLSCREEN processing receives XML that contains characters that cannot be translated to EBCDIC, the request is cancelled. To prevent this, <var>XMLSCREENREPUC</var> can be set to a Unicode character that has a valid translation. For example, to replace non-translatable (to EBCDIC) Unicode characters to a question mark, specify <code>XMLSCREENREPUC X'3F'</code> on the <code>JANUS DEFINE</code> command for a port (since Unicode X'003F' is a question mark).   
==See also==
<ul>
<li>[[XMLSCREEN and NOXMLSCREEN (JANUS_DEFINE parameters)]]
<li>[[List of Janus commands]]
<li>[[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]]
</ul>
[[Category:JANUS DEFINE parameters|XMLSCREENREPUC]]


==See also==
==See also==

Revision as of 23:02, 5 August 2021

XMLSCREENREPUC xxx — Specify XMLSCREEN replacement character

Description

XMLSCREENREPUC is a parameter on the JANUS DEFINE command, which specifies a replacement Unicode character that is to replace any Unicode character that cannot be translated to EBCDIC in the XML input to XMLSCREEN processing.

The XMLSCREENREPUC parameter was introduced by a ZAP in Model 204 V7.8.

If XMLSCREENREPUC is not specified and XMLSCREEN processing receives XML that contains characters that cannot be translated to EBCDIC, the request is cancelled. To prevent this, XMLSCREENREPUC can be set to a Unicode character that has a valid translation. For example, to replace non-translatable (to EBCDIC) Unicode characters to a question mark, specify XMLSCREENREPUC X'3F' on the JANUS DEFINE command for a port (since Unicode X'003F' is a question mark).

See also