微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

将ofbiz的Service导出为webservice及其调用的实例

Service定义:
<service name="test.add" engine="java" auth=" true" export=" true
      location="org.aries.erp.practice.TestServices" 
      invoke="add">
     <attribute name="a" type="Integer" mode="IN" optional="false" ></attribute>
     <attribute name="b" type="Integer" mode="IN" optional="false"></attribute>
     <attribute name="result" type="Integer" mode="OUT" optional="false"></attribute>
    </service>

Service代码

       public static Map<String,Object> add(dispatchContext dctx,Map<String,Object> context){

Map<String,Object> resultMap = ServiceUtil.returnSuccess();
Integer a = (Integer) context.get("a");
Integer b = (Integer) context.get("b");
resultMap.put("result",a + b);
return resultMap;
}


调用其服务的代码

        XmlRpcclientConfigImpl config = new XmlRpcclientConfigImpl();
        config.setServerURL(new URL(" http://127.0.0.1:8080/webtools/control/xmlrpc"));
        config.setEnabledForExceptions(true);
        config.setEnabledForExtensions(true);

        XmlRpcclient client = new XmlRpcclient();
        client.setConfig(config);

        Map paramMap = new HashMap();
        paramMap.put("a",3);                     //参数
        paramMap.put("b",5);                     //参数
        paramMap.put("login.username","admin");          //用户名
        paramMap.put("login.password","ofbiz");            //密码

        Object[] params = new Object[]{paramMap};

        Map result = (Map) client.execute(" test.add",params);

        System.out.println(result.toString());

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐