Hi,
I'm trying to do my own web service using Globus Programmer Tutorial, but I
have a problem.
I defined a method :
public TestResponse test(String a, String b, int c).
I declared in the wsdl :
<xsd:element name="test">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="a" type="xsd:string"/>
<xsd:element name="b" type="xsd:string"/>
<xsd:element name="c" type="xsd:int"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
but when I compile the client he said me that test cannot be used with
(java.lang.String,java.lang.String,int)
does the multiple parameters put in only one or my wsdl definition is wrong
?
Thanks.
Regards,
Maxime.