WEB开发网
开发学院操作系统Linux/Unix 在 WebSphere Portlet Factory 中创建 Web Servic... 阅读

在 WebSphere Portlet Factory 中创建 Web Service

 2010-09-27 08:19:12 来源:WEB开发网   
核心提示: 选中 预先编写好 的 Schema 文件,然后点击 OK 按钮,在 WebSphere Portlet Factory 中创建 Web Service(5),本项目中的 Schema 文件放在了 models 目录下面,注意: 选择的 Schema 文件 query.xsd 定义了 Web Se

选中 预先编写好 的 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

上一页  1 2 3 4 5 6 7 8  下一页

Tags:WebSphere Portlet Factory

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接