分享
 
 
 

Sun ONE Application Server 开发者指南(27)

王朝java/jsp·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

基于服务端接口的端定义。

属性:

"name" ——服务端接口的名称(Java接口);

"servantName" (可选)—— 服务端实现类的名称;

"soapAction" (可选)—— 用于接口中所有操作的SOAPAction字符串;

"soapActionBase" (可选) —— 基于SOAPAction字符串的URI;给定操作的SOAPAction可以通过向这里提供的值中添加操作名称来获取;这个属性是“soapAction”专有的。

元素:

"handlerChains" ——指定该端点的处理程序链。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"handlerChains" type=3D"tns:handlerChainsType" minOccurs=3D"0"/>

</xsd:sequence>

<xsd:attribute name=3D"name" type=3D"xsd:string" use=3D"required"/>

<xsd:attribute name=3D"servantName" type=3D"xsd:string"/>

<xsd:attribute name=3D"soapAction" type=3D"xsd:string"/>

<xsd:attribute name=3D"soapActionBase" type=3D"xsd:string"/>

</xsd:complexType>

<xsd:complexType name=3D"wsdlType">

<xsd:annotation>

<xsd:documentation>

服务描述基于现有的WSDL 文档。

属性:

"location" ——WSDL 文档的URL;

"packageName" —— 缺省使用的Java包的名称。

元素:

"typeMappingRegistry"? ——用于该服务的类型映射注册表;

"handlerChains"? —— 用于该服务端点的缺省处理程序链;

"namespaceMappingRegistry"? —— 到Java包的映射信息的XML命名空间。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"typeMappingRegistry" type=3D"tns:typeMappingRegistryType" minOccurs=3D"0"/>

<xsd:element name=3D"handlerChains" type=3D"tns:handlerChainsType" minOccurs=3D"0"/>

<xsd:element name=3D"namespaceMappingRegistry" type=3D"tns:namespaceMappingRegistryType" minOccurs=3D"0"/>

</xsd:sequence>

<xsd:attribute name=3D"location" type=3D"xsd:anyURI" use=3D"required"/>

<xsd:attribute name=3D"packageName" type=3D"xsd:string" use=3D"required"/>

</xsd:complexType>

<xsd:complexType name=3D"modelfileType">

<xsd:annotation>

<xsd:documentation>

基于现有模型文件的服务描述。

属性:

"location" —— 模型文件的URL (通常以.xml.gz结尾);

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

</xsd:sequence>

<xsd:attribute name=3D"location" type=3D"xsd:anyURI" use=3D"required"/>

</xsd:complexType>

<xsd:complexType name=3D"handlerChainsType">

<xsd:annotation>

<xsd:documentation>

处理程序链。

属性:

"runAt" ——指定该链是运行在客户端还是服务器上。

"roles" ——该链的SOAP角色。

元素:

"handler"* ——形成该链的处理程序序列。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"chain" type=3D"tns:chainType" minOccurs=3D"0" maxOccurs=3D"unbounded"/>

</xsd:sequence>

</xsd:complexType>

<xsd:complexType name=3D"chainType">

<xsd:annotation>

<xsd:documentation>

SOAP角色的列表,也即 URI 的列表。

</xsd:documentation>

</xsd:annotation>

<xsd:list itemType=3D"xsd:anyURI"/>

</xsd:simpleType>

<xsd:complexType name=3D"handlerType">

<xsd:annotation>

<xsd:documentation>

处理程序描述。

属性:

"className" —— 处理程序类的名称;

"headers" —— 该处理程序所使用的头部的名称。

元素:

"property"* ——该处理程序的初始化特性(property)。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"property" type=3D"tns:propertyType" minOccurs=3D"0" maxOccurs=3D"unbounded"/>

</xsd:sequence>

<xsd:attribute name=3D"className" type=3D"xsd:string" use=3D"required"/>

<xsd:attribute name=3D"headers" type=3D"tns:headerListType"/>

</xsd:complexType>

<xsd:simpleType name=3D"headerListType">

<xsd:annotation>

<xsd:documentation>

头部名称的列表,即 QNames的列表.

</xsd:documentation>

</xsd:annotation>

<xsd:list itemType=3D"xsd:QName"/>

</xsd:simpleType>

<xsd:complexType name=3D"propertyType">

<xsd:annotation>

<xsd:documentation>

处理程序的初始化特性(property)。

属性:

"name" ——特性的名称;

"value" ——特性的值。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

</xsd:sequence>

<xsd:attribute name=3D"name" type=3D"xsd:string" use=3D"required"/>

<xsd:attribute name=3D"value" type=3D"xsd:string" use=3D"required"/>

</xsd:complexType>

<xsd:simpleType name =3D"runAtType">

<xsd:annotation>

<xsd:documentation>

处理程序链可以运行的地方,可以是“客户端“或者“服务器”。

</xsd:documentation>

</xsd:annotation>

<xsd:restriction base=3D"xsd:string">

<xsd:enumeration value=3D"client"/>

<xsd:enumeration value=3D"server"/>

</xsd:restriction>

</xsd:simpleType>

<xsd:complexType name=3D"typeMappingRegistryType">

<xsd:annotation>

<xsd:documentation>

类型映射注册表。

元素:

"import"? —— XML Schema文档的列表,描述了用户定义的类型。

"typeMapping"* ——类型映射序列,每编码一个。

"additionalTypes"? ——即使不出现在服务接口上,也应该进行处理的附加Java类型的列表。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"import" type=3D"tns:importType" minOccurs=3D"0"/>

<xsd:element name=3D"typeMapping" type=3D"tns:typeMappingType" minOccurs=3D"0" maxOccurs=3D"unbounded"/>

<xsd:element name=3D"additionalTypes" type=3D"tns:additionalTypesType" minOccurs=3D"0"/>

</xsd:sequence>

</xsd:complexType>

<xsd:complexType name=3D"importType">

<xsd:annotation>

<xsd:documentation>

需要导入的模式文档的列表,通常描述被可插入式串行化器使用的模式类型。

元素:

"schema"*——需要导入的模式文档的列表。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

<xsd:element name=3D"schema" type=3D"tns:schemaType" minOccurs=3D"0" maxOccurs=3D"unbounded"/>

</xsd:sequence>

</xsd:complexType>

<xsd:complexType name=3D"schemaType">

<xsd:annotation>

<xsd:documentation>

一个将被导入的模式文档。

属性:

"namespace" —— 文档描述的命名空间;

"location" —— 指向模式文档的 URL。

</xsd:documentation>

</xsd:annotation>

<xsd:sequence>

</xsd:sequence>

<xsd:attribute name=3D"namespace" type=3D"xsd:anyURI" use=3D"required"/>

<xsd:attribute name=3D"location" type=3D"xsd:anyURI" use=3D"required"/>

</xsd:complexType>

<xsd:complexType name=3D"typeMappingType">

<xsd:annotation>

<xsd:documentation>

特殊编码的类型映射。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有