I have a SOAP Service that is implemented using Apache Axis 2. It has a type Message which has the following definition
<xs:complexType name="Message">
<xs:sequence>
<xs:element minOccurs="0" name="id" type="xs:int"/>
<xs:element minOccurs="0" name="caption" nillable="true" type="xs:string"/>
<xs:element minOccurs="0" name="text" nillable="true" type="xs:string"/>
<xs:element minOccurs="0" name="source" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
I have to replace the source element with a reference to a complex type Source. What is the best way to do this while avoiding to break existing clients?