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;
}
config.setServerURL(new URL("
http://127.0.0.1:8080/webtools/control/xmlrpc"));
config.setEnabledForExceptions(true);
config.setEnabledForExtensions(true);
Map paramMap = new HashMap();
paramMap.put("a",3); //参数
paramMap.put("b",5); //参数
paramMap.put("login.password","ofbiz"); //密码
System.out.println(result.toString());
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。