在 WebSphere Portlet Factory 中创建 Web Service
2010-09-27 08:19:12 来源:WEB开发网选中 预先编写好 的 Schema 文件,然后点击 OK 按钮。本项目中的 Schema 文件放在了 models 目录下面。
注意: 选择的 Schema 文件 query.xsd 定义了 Web Service 的参数及返回值的数据结构,文件内容如 清单 2 所示:
清单 2.
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="http://wbs.com" xmlns:xsd="http://www.w3.org
/2001/XMLSchema" targetNamespace="http://wbs.com"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">
<xsd:element name="query">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="arguments" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="result">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
从此文件中可以看出一共定义有两个对象:query 和 result,query 对象中包含了一个 String 类型的 arguments 对象,result 对象中包含了一个 String 类型的 value 对象。
编缉推荐阅读以下文章
- 在WebSphere Portlet Factory中调用Web Service
- ››WebSphere Application Server 7.0 XML Feature P...
- ››WebSphere 反向投资者: 解决 WebSphere Applicati...
- ››WebSphere sMash 的创新应用,第 2 部分: 借助包装...
- ››Websphere MQ v6集群的负载均衡新功能
- ››WebSphere Process Server V6.0.2 集群,第 2 部分...
- ››WebSphere Process Server V6.0.2 集群,第 1 部分...
- ››WebSphere MQ性能调优浅谈
- ››WebSphere配置资源库管理
- ››WebSphere中的SSL/TLS:用法、配置和性能
- ››websphere ejb远程/本地调用总结
- ››WebSphere Application Server对SIP的支持
- ››WebSphere Process Server V6 体系结构概述
更多精彩
赞助商链接