Some basic issues with your schema if you intend to use it with SOAP and WSDL:
- you should define a target namespace
- you should define a type for the REQUEST_ID element.

I don't know what you mean by "set the parameters" for this schema. The ReqType and AssignType types should map to beans. If you import or embed this schema into a WSDL and run wsdl2java, it should generate these beans for you.

Anne

On 12/19/05, tims thampy <[EMAIL PROTECTED]> wrote:

Hi

 

This is the sample of the schema that I am using….

 

< xs:schema xmlns:xs =" http://www.w3.org/2001/XMLSchema " elementFormDefault ="qualified " attributeFormDefault ="unqualified ">

            <xs:element name ="DLMDealerLeadUpdateRequest " type ="ReqType "/>

            <xs:complexType name ="ReqType ">

                        <xs:sequence >

                                    <xs:element name ="AssignInputRequest " type ="AssignType " maxOccurs ="unbounded "/>

                                    <xs:element name ="REQUEST_ID "/>

                        </xs:sequence >

            </xs:complexType >

            <xs:complexType name ="AssignType ">

                        <xs:sequence >

                                    <xs:element name ="DL_JOB_ID " type=" xs:string "/>

                                    <xs:element name ="Assigned_To " type=" xs:string "/>

                        </xs:sequence >

            </xs:complexType >

</ xs:schema>

 

 

How to set the parameters for this schema using axis client?

 

Please help me regarding this…..

 

Thanks & Regards

Tims


Reply via email to