How to convert wsdl to java?

前端 未结 3 1181
醉酒成梦
醉酒成梦 2020-12-06 02:42

I\'ve a WSDL file and i need to convert it into java, so for this i use step by step procedure from below link

http://axis.apache.org/axis2/java/core/tools/eclipse/w

3条回答
  •  春和景丽
    2020-12-06 03:39

    i founded this tool to auto generate wsdl to android code,

    http://www.wsdl2code.com/example.aspx

     SampleService srv1 = new SampleService();
     req = new Request();                     
     req.companyId = "1";
     req.userName = "userName";                                     
     req.password = "pas";
     Response response =    srv1.ServiceSample(req);
    

提交回复
热议问题