ページの先頭行へ戻る
Interstage Application Server/Interstage Web Server Java EE運用ガイド

13.43.21 PWC6200番台のメッセージ

PWC6203: Scripting elements ( <%!, <jsp:declaration, <%=, <jsp:expression, <%, <jsp:scriptlet ) are disallowed here.

[意味]

スクリプティング要素はここでは許されません。

[原因]

web.xmlの<scripting-invalid>タグによりスクリプティング要素を無効にしているJSPに、スクリプティング要素が記載されています。

[ユーザの対処]

JSPにスクリプティング要素が記載されていないか確認してください。

PWC6216: Cannot specify both 'fragment' and 'type' attributes. If 'fragment' is present, 'type' is fixed as 'javax.servlet.jsp.tagext.JspFragment'

[意味]

'fragment'属性と'type'属性を両方指定できません。

[原因]

タグファイルの<%@attribute>タグにおいてfragment属性にtrueを指定したうえで、type属性を指定しました。

[ユーザの対処]

タグファイルの<%@attribute>タグのfragment属性とtype属性を確認してください。

WARNING: ISJEE_PWC6221: Bad value {0} in the url-pattern subelement in web.xml

[可変情報]

{0}:誤りのある値

[意味]

web.xml中のurl-pattern副要素中に誤った値{0}があります。

[原因]

web.xmlの<jsp-property-group>タグの<url-pattern>タグの記述に誤りがあります。

[ユーザの対処]

web.xmlの<jsp-property-group>タグの<url-pattern>タグに誤りがないか確認してください。

PWC6227: The attribute {0} specified in the standard or custom action also appears as the value of the name attribute in the enclosed jsp:attribute

[可変情報]

{0}:属性名

[意味]

標準またはカスタムアクション中で指定されている属性{0}はそれに囲まれたjsp:attribute中のname属性の値としても表れます。

[原因]

タグライブラリの属性を、タグの中と<jsp:attribute>の両方で指定しています。

[ユーザの対処]

タグライブラリの記述を確認してください。

PWC6231: Invalid body-content ({0}) in tag directive

[可変情報]

{0}:無効な属性

[意味]

tag指示子中に無効なbody-content{0}があります。

[原因]

タグファイルの<%@tag>タグのbody-content属性の内容に誤りがあります。

[ユーザの対処]

タグファイルの<%@tag>タグのbody-content属性の内容を確認してください。

PWC6239: According to TLD, tag {0} must be empty, but is not

[可変情報]

{0}:タグ名

[意味]

TLDに従ってタグ{0}は空でなければいけません。

[原因]

タグライブラリディスクリプタの<body-content>にemptyが指定されているタグに対してボディが設定されました。

[ユーザの対処]

タグの記述に誤りがないか確認してください。

PWC6240: The value of the {0} attribute of the {1} directive and the value of the {2} attribute of the {3} directive in line {4} are the same.

[可変情報]

{0}:1つめの属性名
{1}:1つめのディレクティブ(タグ)名
{2}:2つめの属性名
{3}:2つめのディレクティブ(タグ)名
{4}:行番号

[意味]

タグファイルに指定した値が重複しています。

[ユーザの対処]

タグファイルを確認し重複を解消してください。

PWC6241: Cannot find an attribute directive with a name attribute with a value "{0}", the value of this name-from-attribute attribute.

[可変情報]

{0}:name-from-attribute属性の値

[意味]

name-from-attribute属性の値である値{0}のname属性を持つattribute指示子が見つかりません。

[原因]

タグファイルの<%@variable>タグのname-from-attribute属性に対応する<%@attribute>タグが存在しません。

[ユーザの対処]

タグファイルの<%@variable>タグの内容を確認してください。

PWC6242: The attribute directive (declared in line {1} and whose name attribute is "{0}", the value of this name-from-attribute attribute) must be of type java.lang.String, is "required" and not a "rtexprvalue".

[可変情報]

{0}:属性名
{1}:行番号

[意味]

タグファイルの<%@variable>タグのname-from-attribute属性に対応する<%@attribute>タグの内容に誤りがあります。

[原因]

以下の原因が考えられます。

  • <%@attribute>タグのrequired属性に「false」が指定されています。

  • <%@attribute>タグのtype属性に「java.lang.String」以外の値が指定されています。

  • <%@attribute>タグのrtexprvalue属性に「true」が指定されています。

[ユーザの対処]

タグファイルの<%@attribute>タグの内容を確認して原因を取り除いてください。

PWC6262: High surrogate bits in UTF-8 sequence must not exceed 0x10 but found 0x{0}.

[可変情報]

{0}:不正な文字コード

[意味]

UTF-8シーケンスのハイサロゲートビットは0x10を超えてはいけません。

[原因]

JSPファイルに不正な文字が含まれています。

[ユーザの対処]

JSPファイルの内容を確認してください。

PWC6263: Byte "{0}" not 7-bit ASCII.

[可変情報]

{0}:不正な文字コード

[意味]

文字{0}は7ビットASCIIではありません。

[原因]

JSPファイルに不正な文字が含まれています。

[ユーザの対処]

JSPファイルの内容を確認してください。

PWC6290: Either name-given or name-from-attribute attribute must be specified in a variable directive

[意味]

name-givenまたはname-from-attribute属性のどちらかをvariable指示子の中で指定されなければいけません。

[原因]

タグファイルの<%@variable>タグにname-givenまたはname-from-attribute属性が指定されていません。

[ユーザの対処]

<%@variable>タグにはname-givenまたはname-from-attribute属性のいずれかを指定してください。

PWC6291: Cannot specify both name-given or name-from-attribute attributes in a variable directive

[意味]

variable指示子中でname-givenとname-from-attribute属性の両方を指定することはできません。

[原因]

タグファイルの<%@variable>タグにname-given、name-from-attribute属性の両方が指定されています。

[ユーザの対処]

<%@variable>タグにはname-givenまたはname-from-attribute属性のいずれかを指定してください。

PWC6292: Both or none of the name-from-attribute and alias attributes must be specified in a variable directive

[意味]

name-from-attributeおよびalias属性の両方をvariable指示子中に指定する、またはどちらも指定しないことができます。

[原因]

タグファイルの<%@variable>タグにおいて、name-from-attribute属性とalias属性のどちらか一方だけが指定されています。

[ユーザの対処]

name-from-attribute属性とalias属性の両方を指定してください。

PWC6293: Null attribute name

[意味]

空の属性名です。

[原因]

属性名にnullが指定されています。

[ユーザの対処]

属性名にnullを指定していないかJSPファイルを確認してください。