用 Apache Geronimo 和 Axis2 实现在线银行,第 1 部分: 服务:布设框架
2010-03-19 00:00:00 来源:WEB开发网对于邮汇,您可以想到,需要的所有必需数据,在 清单 2 中以黑体显示。注意 address2 和 address3,补充的额外地址行非必需。接下来定义贷款申请表复型。
贷款申请表
如果银行不发放贷款,我们要如何生存?这里定义的数据结构包括贷款申请表信息和贷款状态信息。我们首先定义贷款申请表复型,参见 清单 3。
清单 3. 贷款申请表
<xsd:complexType name="LoanApplication">
<xsd:sequence>
<xsd:element minOccurs="1" maxOccurs="1"
name="loanType" type="xsd:string" />
<xsd:element minOccurs="1" maxOccurs="1"
name="amount" type="xsd:float" />
<xsd:element minOccurs="1" maxOccurs="1"
name="termMonths" type="xsd:int" />
<xsd:element minOccurs="1" maxOccurs="1"
name="joint" type="xsd:boolean" />
<xsd:element minOccurs="1" maxOccurs="1"
name="percentFinanced" type="xsd:int" />
</xsd:sequence>
</xsd:complexType>
各字段都包括贷款申请表中的典型数据。接下来将贷款状态添加到您的 WSDL 中,如 清单 4 所示。
清单 4. 贷款申请表状态
<xsd:complexType name="LoanApplicationStatus">
<xsd:sequence>
<xsd:element minOccurs="1" maxOccurs="1"
name="loanNumber" type="xsd:string" />
<xsd:element minOccurs="1" maxOccurs="1"
name="approved" type="xsd:boolean" />
<xsd:element minOccurs="1" maxOccurs="1"
name="denied" type="xsd:boolean" />
</xsd:sequence>
</xsd:complexType>
- ››apache设置域名绑定 以及绑定不起作用的排查
- ››apache rewrite将指定URL转向指定的几个服务器
- ››apache配置文件httpd.comf部分参数说明
- ››Apache+Mysql+PHP+phpMyAdmin+Mac OS X 10.7 Lion...
- ››apache+tomcat负载均衡_项目实例
- ››apache mysql php 源码编译使用
- ››Apache添加mod_aspdotnet.so支持ASP.NET配置指南
- ››Apache中改变php.ini的路径
- ››Apache2.2与Tomcat6整合及虚拟主机配置
- ››Apache+php+mysql在windows下的安装与配置图解
- ››Apache+Subversion完美结合,CentOS下实现版本控制...
- ››Apache HTTPServer2.2.16 发布
更多精彩
赞助商链接