Hi everyone,
I'm new in axis, axis2, and I'm triing to update a big source code form axis
1 to axis2.

Today, my problem is that from axis1.4, with a element declared as :

    <complexType name="SearchParametersType">
        <annotation>
            <documentation>
            </documentation>
        </annotation>
        <sequence>
            <element name="Fragment" type="tns:SearchFragmentType"
                maxOccurs="1" minOccurs="1">
            </element>
        </sequence>
    </complexType>

I think, with axis 1.3, from which the classes were generated, I had
something like that  :

public class SearchParametersType  implements java.io.Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -6082555577399260149L;


    private
com.vslitc.service.schema._2006.VSLCommonTypes.SearchFragmentType fragment;

    private java.lang.Boolean isDistinct;

    public SearchParametersType() {
    }
................

the set and IsDistinct,
and some lines in the other declarations are about IsDistinct.

In fact, I'm not sure that the files generated with axis1 were modified or
not,
I just think that all the methods generated with axis1 should be generated
with axis2 no ?
Just tell me if I'm wrong, or if axis2 don't use the min and maxOccurs
options.
thank by advance !!

Reply via email to