ofbiz4对于webservice的支持实在是不咋地,在官方的文档中,SOAP只是支持基础类型的数据的传入传出,这些基础的数据类型我们可以参照org.ofbiz.service.ModelParam的java2wsdlType方法。大家可以看到这个方法的类只是支持简单的基础数据类型。如下:
protected String java2wsdlType() throws WSDLException { if (ObjectType.instanceOf(java.lang.Character.class, this.type)) { return "string"; } else if (ObjectType.instanceOf(java.lang.String.class, this.type)) { return "string"; } else if (ObjectType.instanceOf(java.lang.Byte.class, this.type)) { return "byte"; } else if (ObjectType.instanceOf(java.lang.Boolean.class, this.type)) { return "boolean"; } else if (ObjectType.instanceOf(java.lang.Integer.class, this.type)) { return "int"; } else if (ObjectType.instanceOf(java.lang.Double.class, this.type)) { return "double"; } else if (ObjectType.instanceOf(java.lang.Float.class, this.type)) { return "float"; } else if (ObjectType.instanceOf(java.lang.Short.class, this.type)) { return "short"; } else if (ObjectType.instanceOf(java.math.BigDecimal.class, this.type)) { return "decimal"; } else if (ObjectType.instanceOf(java.math.BigInteger.class, this.type)) { return "integer"; } else if (ObjectType.instanceOf(java.util.Calendar.class, this.type)) { return "dateTime"; } else if (ObjectType.instanceOf(java.util.Date.class, this.type)) { return "dateTime"; } else if (ObjectType.instanceOf(java.lang.Long.class, this.type)) { return "unsignedInt"; } else if (ObjectType.instanceOf(java.sql.Timestamp.class, this.type)) { return "string"; } // TODO add array support (maybe even convert List objects); add GenericValue/Map support throw new WSDLException(WSDLException.OTHER_ERROR, "Service cannot be described with WSDL (" + this.name + " / " + this.type + ")"); }
这个方法就是帮助我们生成wsdl文件,或者说wsdl = dctx.getWSDL(serviceName, locationUri)调用了上边的方法,用eclipse很容易就找到了ofbiz/framework/service/src/org/ofbiz/service/ModelParam.java里面的:
如果你定义的输出的数据类型超出这些数据类型,那么当你请求wsdl链接的时候就等着报错吧。
不过如果你有兴趣针对支持的基础数据类型做修正,那么你可以修改这个地方的代码。
由上边的基础知识引发的常见问题如:当我们的数据类型是java.sql.Date,而我们ofbiz支持的基础数据类型又不支持这个基础类型,那么这个时候我们可能不得不更改这个文件来支持我们的这个数据类型了。
更改方法很简单就是加上如下的代码,并重新编辑整个项目:
} else if (ObjectType.instanceOf(java.sql.Date.class, this.type)) { return "dateTime"; } else if (ObjectType.instanceOf(java.sql.Time.class, this.type)) { return "string"; }
由此可见我们ofbiz的soap支持的webservice的参数类型真是不完善。更加不会支持那些序列化的复杂数据类型了。