ページの先頭行へ戻る
Interstage Application Server/Interstage Web Server メッセージ集

17.12.26 isws11233

ISWS: ERROR: isws11233: The collision of java class name occurred. class=%s1

[可変情報]
  %s1:生成予定のJavaクラス名

[意味]
  生成予定のJavaクラスの名前が重複しています。

[システムの処理]
  処理を中止します。

[ユーザの対処]
  原因として、以下のように生成されるJavaクラス名が同じになるtype定義などが、WSDL内に複数存在しているケースが考えられます。

----------------------------------------------------
<xsd:complexType name="Name">
  <xsd:sequence>
   <xsd:element name="param1" type="xsd:int"/>
  </xsd:sequence>
 </xsd:complexType>
 <xsd:complexType name="name">
  <xsd:sequence>
   <xsd:element name="param1" type="xsd:int"/>
  </xsd:sequence>
 </xsd:complexType>
----------------------------------------------------