tags:

views:

5

answers:

0

Hi I have webservice which takes 2 input string and dispalys them. I have created webservice in eclipse with axis 1.3 (using a simple java class) I am testing this web service with weblogic 8.1 on weblogic webservice standard testing home page. But when i test this web service : test page comes up with 3 columns Parameter Java Type Value string String
string0 String

In value column 2 text fields come up. I want to show up name1: and name2 in place of string and string0

this is the java class which is used to create wsdl public class WSTest {

public WSTest() {}

public String getNAME(String name1,String name2) { return "Hello " + name1 + name2; }

}

and this is the wsdl created from eclipse