For WS-I BP, the element names have to be different for each operation -
CXF only has the element name and namespace to decide which operation to
invoke.
But you could define a named complexType and share it between all the
elements:
<xsd:complexType name="twoStringsType">
<xsd:sequence>
<xsd:element name="one" type="xsd:string" />
<xsd:element name="two" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="Element71" type="tns:twoStringsType" />
<xsd:element name="Element72" type="tns:twoStringsType" />
etc. etc.
Ian
--
Ian Roberts | Department of Computer Science
[EMAIL PROTECTED] | University of Sheffield, UK