由上一篇博客可知上面的wsdl与bpmn20.xml的对应关系如下:
<1>targetNamespace:默认命名空间,若是某个属性前面没有前缀,那这个属性就默认在targetNamespace
<2>tns:bpmn20.xml文件所在的包名,需要与targetNamespace保持一致
<3>counter:自定义命名空间,这里默认为http://webservice.activiti.org/
<4>import
importType:默认为http://schemas.xmlsoap.org/wsdl/
location:发布地址?wsdl
namespace:默认为http://webservice.activiti.org/
<5>
<message id="prettyPrintCount<strong>RequestMessage</strong>" itemRef="tns:prettyPrintCount<strong>RequestItem</strong>" /> <message id="prettyPrintCount<strong>ResponseMessage</strong>" itemRef="tns:prettyPrintCount<strong>ResponseItem</strong>" /> message: id = 方法名RequestMessage itemRef=方法名RequestItem<6>
<itemDefinition id="prettyPrintCount<strong>RequestItem</strong>" structureRef="counter:prettyPrintCount" /><!-- QName of input element --> <itemDefinition id="prettyPrintCount<strong>ResponseItem</strong>" structureRef="counter:prettyPrintCount<strong>Response</strong>" /><!-- QName of output element -->其他对应关系可以直接从上一篇的配置文件中看出来 原文链接:/xml/297302.html