Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a WSDL file for a web service which i want to test. Im using the Web Services Explorer in Eclipse to test the webservice. The webservice defines a login operation,containing a loginRequest message. The definitions are as shown below.

Login Operation

  <wsdl:operation name="login" parameterOrder="in0">

     <wsdl:input message="impl:loginRequest" name="loginRequest"/>

  </wsdl:operation>

loginRequest Message

<wsdl:message name="loginRequest">

      <wsdl:part name="in0" type="tns1:CompiereBean"/>

</wsdl:message>

CompiereBean object

<complexType name="CompiereBean">
    <sequence>
     <element name="loginDetails" nillable="true" type="impl:ArrayOf_xsd_anyType"/>
     <element name="productList" nillable="true" type="impl:ArrayOf_xsd_anyType"/>
     <element name="quantityList" nillable="true" type="impl:ArrayOf_xsd_anyType"/>
     <element name="tenantDetails" nillable="true" type="impl:ArrayOf_xsd_anyType"/>
    </sequence>
</complexType>

ArrayOf_xsd_anyType

<complexType name="ArrayOf_xsd_anyType">

<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:anyType[]"/>
</restriction>
</complexContent>

</complexType>

Now, to test the webservice, i right click on the WSDL file->Web Services->Test with Web Services Explorer. I now get a form in the Actions pane,with fields for specifying loginDetails,productList,quantityList and tenantDetails.

So, my question is since loginDetails,productList,quantityList and tenantDetails are all ArrayList objects, how to input their values ?

share|improve this question
What exactly is the definition of impl:ArrayOf_xsd_anyType in your WSDL? We can guess and probably come near it, but it would be much better if we didn't have to guess. – Joachim Sauer Feb 1 '10 at 12:23
Ive updated my question with the definition of impl:ArrayOf_xsd_anyType – Ryan Feb 1 '10 at 12:39
I suggest you to try testing your web services with SoapUI (soapui.org). It is a free tool with a very friendly interface to test web services. From the WSDL it will create a request for testing your service, you only need to replace the "?" with the values... – JuanZe Feb 1 '10 at 12:47
Thanks for the reply JuanZe . I installed SoapUI. Created a new project in SoapUI and added my WSDL. Now, in the request area it shows the following XML (pastie.org/804081), but there are no question marks..what could be going wrong here ? – Ryan Feb 1 '10 at 13:08
@blackpanther I have reverted your proposed edit because first, you didn't correct any grammar as you claimed (you just changed it) and second, you changed a code snippet. That's a no-go and I won't accept that. If you're bored enough to suggest such minor improvements then I suggest that you at least leave the code snippets alone (except for meaningless whitespace). Thank you. – Class Stacker Apr 25 at 10:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.