亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? j2ee_web_services_1_1.xsd

?? windows下的JAVA虛擬機
?? XSD
字號:
<?xml version="1.0" encoding="UTF-8"?><!--  Copyright 2004 The Apache Software Foundation  Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License.--><xsd:schema xmlns="http://www.w3.org/2001/XMLSchema"	    targetNamespace="http://java.sun.com/xml/ns/j2ee"	    xmlns:j2ee="http://java.sun.com/xml/ns/j2ee"	    xmlns:xsd="http://www.w3.org/2001/XMLSchema"	    elementFormDefault="qualified"	    attributeFormDefault="unqualified"	    version="1.1">  <xsd:annotation>    <xsd:documentation>      @(#)j2ee_web_services_1_1.xsds	1.11 02/11/03    </xsd:documentation>  </xsd:annotation>  <xsd:annotation>    <xsd:documentation>      Copyright 2002 Sun Microsystems, Inc., 901 San Antonio      Road, Palo Alto, California 94303, U.S.A. All rights      reserved.      Sun Microsystems, Inc. has intellectual property rights      relating to technology described in this document. In      particular, and without limitation, these intellectual      property rights may include one or more of the U.S. patents      listed at http://www.sun.com/patents and one or more      additional patents or pending patent applications in the      U.S. and other countries.      This document and the technology which it describes are      distributed under licenses restricting their use, copying,      distribution, and decompilation. No part of this document      may be reproduced in any form by any means without prior      written authorization of Sun and its licensors, if any.      Third-party software, including font technology, is      copyrighted and licensed from Sun suppliers.      Sun, Sun Microsystems, the Sun logo, Solaris, Java, J2EE,      JavaServer Pages, Enterprise JavaBeans and the Java Coffee      Cup logo are trademarks or registered trademarks of Sun      Microsystems, Inc. in the U.S. and other countries.      Federal Acquisitions: Commercial Software - Government Users      Subject to Standard License Terms and Conditions.    </xsd:documentation>  </xsd:annotation>  <xsd:annotation>    <xsd:documentation>      (C) Copyright International Business Machines Corporation 2002    </xsd:documentation>  </xsd:annotation>  <xsd:annotation>    <xsd:documentation>      <![CDATA[	The webservices element is the root element for the web services	deployment descriptor.  It specifies the set of web service	descriptions that are to be deployed into the J2EE Application	Server and the dependencies they have on container resources and	services.  The deployment descriptor must be named	"META-INF/webservices.xml" in the web services' jar file.	Used in: webservices.xml	All webservices deployment descriptors must indicate the	webservices schema by using the J2EE namespace:	http://java.sun.com/xml/ns/j2ee	and by indicating the version of the schema by using the version	element as shown below:	    <webservices xmlns="http://java.sun.com/xml/ns/j2ee"	      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"	      xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee		http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd"	      version="1.1">	      ...	    </webservices>	The instance documents may indicate the published version of the	schema using the xsi:schemaLocation attribute for the J2EE	namespace with the following location:	http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd	]]>    </xsd:documentation>  </xsd:annotation>  <xsd:annotation>    <xsd:documentation>      The following conventions apply to all J2EE      deployment descriptor elements unless indicated otherwise.      - In elements that specify a pathname to a file within the	same JAR file, relative filenames (i.e., those not	starting with "/") are considered relative to the root of	the JAR file's namespace.  Absolute filenames (i.e., those	starting with "/") also specify names in the root of the	JAR file's namespace.  In general, relative names are	preferred.  The exception is .war files where absolute	names are preferred for consistency with the Servlet API.    </xsd:documentation>  </xsd:annotation>  <xsd:include schemaLocation="j2ee_1_4.xsd"/><!-- **************************************************** -->  <xsd:element name="webservices" type="j2ee:webservicesType">    <xsd:annotation>      <xsd:documentation>	The webservices element is the root element for the web services	deployment descriptor.  It specifies the set of web service	descriptions that are to be deployed into the J2EE Application Server	and the dependencies they have on container resources and services.	Used in: webservices.xml      </xsd:documentation>    </xsd:annotation>    <xsd:key name="webservice-description-name-key">      <xsd:annotation>	<xsd:documentation>	  The webservice-description-name identifies the collection of	  port-components associated with a WSDL file and JAX-RPC mapping. The	  name must be unique within the deployment descriptor.	</xsd:documentation>      </xsd:annotation>      <xsd:selector xpath="j2ee:webservice-description"/>      <xsd:field xpath="j2ee:webservice-description-name"/>    </xsd:key>  </xsd:element><!-- **************************************************** -->  <xsd:complexType name="port-componentType">    <xsd:annotation>      <xsd:documentation>	The port-component element associates a WSDL port with a web service	interface and implementation.  It defines the name of the port as a	component, optional description, optional display name, optional iconic	representations, WSDL port QName, Service Endpoint Interface, Service	Implementation Bean.      </xsd:documentation>    </xsd:annotation>    <xsd:sequence>      <xsd:element name="description"		   type="j2ee:descriptionType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="display-name"		   type="j2ee:display-nameType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="icon"		   type="j2ee:iconType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="port-component-name"		   type="j2ee:string">	<xsd:annotation>	  <xsd:documentation>	    <![CDATA[	      The port-component-name element specifies a port component's	      name.  This name is assigned by the module producer to name	      the service implementation bean in the module's deployment	      descriptor. The name must be unique among the port component	      names defined in the same module.	      Used in: port-component	      Example:		      <port-component-name>EmployeeService		      </port-component-name>	      ]]>	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="wsdl-port"		   type="j2ee:xsdQNameType">	<xsd:annotation>	  <xsd:documentation>	    Defines the name space and local name part of the WSDL port QName.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="service-endpoint-interface"		   type="j2ee:fully-qualified-classType">	<xsd:annotation>	  <xsd:documentation>	    <![CDATA[	      The service-endpoint-interface element contains the	      fully-qualified name of the port component's Service Endpoint	      Interface.	      Used in: port-component	      Example:		      <remote>com.wombat.empl.EmployeeService</remote>	      ]]>	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="service-impl-bean"		   type="j2ee:service-impl-beanType"/>      <xsd:element name="handler"		   type="j2ee:port-component_handlerType"		   minOccurs="0" maxOccurs="unbounded"/>    </xsd:sequence>    <xsd:attribute name="id" type="xsd:ID"/>  </xsd:complexType><!-- **************************************************** -->  <xsd:complexType name="port-component_handlerType">    <xsd:annotation>      <xsd:documentation>	Declares the handler for a port-component. Handlers can access the	init-param name/value pairs using the HandlerInfo interface.	Used in: port-component      </xsd:documentation>    </xsd:annotation>    <xsd:sequence>      <xsd:group ref="j2ee:descriptionGroup"/>      <xsd:element name="handler-name"		   type="j2ee:string">	<xsd:annotation>	  <xsd:documentation>	    Defines the name of the handler. The name must be unique within the	    module.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="handler-class"		   type="j2ee:fully-qualified-classType">	<xsd:annotation>	  <xsd:documentation>	    Defines a fully qualified class name for the handler implementation.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="init-param"		   type="j2ee:param-valueType"		   minOccurs="0" maxOccurs="unbounded"/>      <xsd:element name="soap-header"		   type="j2ee:xsdQNameType"		   minOccurs="0" maxOccurs="unbounded">	<xsd:annotation>	  <xsd:documentation>	    Defines the QName of a SOAP header that will be processed by the	    handler.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="soap-role"		   type="j2ee:string"		   minOccurs="0" maxOccurs="unbounded">	<xsd:annotation>	  <xsd:documentation>	    The soap-role element contains a SOAP actor definition that the	    Handler will play as a role.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>    </xsd:sequence>    <xsd:attribute name="id" type="xsd:ID"/>  </xsd:complexType><!-- **************************************************** -->  <xsd:complexType name="service-impl-beanType">    <xsd:annotation>      <xsd:documentation>	The service-impl-bean element defines the web service implementation.	A service implementation can be an EJB bean class or JAX-RPC web	component.  Existing EJB implementations are exposed as a web service	using an ejb-link.	Used in: port-component      </xsd:documentation>    </xsd:annotation>    <xsd:choice>      <xsd:element name="ejb-link"		   type="j2ee:ejb-linkType"/>      <xsd:element name="servlet-link"		   type="j2ee:servlet-linkType"/>    </xsd:choice>    <xsd:attribute name="id" type="xsd:ID"/>  </xsd:complexType><!-- **************************************************** -->  <xsd:complexType name="servlet-linkType">    <xsd:annotation>      <xsd:documentation>	<![CDATA[	  The servlet-link element is used in the service-impl-bean element	  to specify that a Service Implementation Bean is defined as a	  JAX-RPC Service Endpoint.	  The value of the servlet-link element must be the servlet-name of	  a JAX-RPC Service Endpoint in the same WAR file.	  Used in: service-impl-bean	  Example:		  <servlet-link>StockQuoteService</servlet-link>	  ]]>      </xsd:documentation>    </xsd:annotation>    <xsd:simpleContent>      <xsd:restriction base="j2ee:string"/>    </xsd:simpleContent>  </xsd:complexType><!-- **************************************************** -->  <xsd:complexType name="webservice-descriptionType">    <xsd:annotation>      <xsd:documentation>	The webservice-description element defines a WSDL document file	and the set of Port components associated with the WSDL ports	defined in the WSDL document.  There may be multiple	webservice-descriptions defined within a module.	All WSDL file ports must have a corresponding port-component element	defined.	Used in: webservices      </xsd:documentation>    </xsd:annotation>    <xsd:sequence>      <xsd:element name="description"		   type="j2ee:descriptionType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="display-name"		   type="j2ee:display-nameType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="icon"		   type="j2ee:iconType"		   minOccurs="0" maxOccurs="1"/>      <xsd:element name="webservice-description-name"		   type="j2ee:string">	<xsd:annotation>	  <xsd:documentation>	    The webservice-description-name identifies the collection of	    port-components associated with a WSDL file and JAX-RPC	    mapping. The name must be unique within the deployment descriptor.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="wsdl-file"		   type="j2ee:pathType">	<xsd:annotation>	  <xsd:documentation>	    The wsdl-file element contains the name of a WSDL file in the	    module.  The file name is a relative path within the module.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="jaxrpc-mapping-file"		   type="j2ee:pathType">	<xsd:annotation>	  <xsd:documentation>	    The jaxrpc-mapping-file element contains the name of a file that	    describes the JAX-RPC mapping between the Java interaces used by	    the application and the WSDL description in the wsdl-file.  The	    file name is a relative path within the module.	  </xsd:documentation>	</xsd:annotation>      </xsd:element>      <xsd:element name="port-component"		   type="j2ee:port-componentType"		   minOccurs="1" maxOccurs="unbounded">	<xsd:key name="port-component_handler-name-key">	  <xsd:annotation>	    <xsd:documentation>	      Defines the name of the handler. The name must be unique	      within the module.	    </xsd:documentation>	  </xsd:annotation>	  <xsd:selector xpath="j2ee:handler"/>	  <xsd:field xpath="j2ee:handler-name"/>	</xsd:key>      </xsd:element>    </xsd:sequence>    <xsd:attribute name="id" type="xsd:ID"/>  </xsd:complexType><!-- **************************************************** -->  <xsd:complexType name="webservicesType">    <xsd:sequence>      <xsd:group ref="j2ee:descriptionGroup"/>      <xsd:element name="webservice-description"		   type="j2ee:webservice-descriptionType"		   minOccurs="1" maxOccurs="unbounded">	<xsd:key name="port-component-name-key">	  <xsd:annotation>	    <xsd:documentation>	      <![CDATA[		The port-component-name element specifies a port		component's name.  This name is assigned by the module		producer to name the service implementation bean in the		module's deployment descriptor. The name must be unique		among the port component names defined in the same module.		Used in: port-component		Example:			<port-component-name>EmployeeService			</port-component-name>		]]>	    </xsd:documentation>	  </xsd:annotation>	  <xsd:selector xpath="j2ee:port-component"/>	  <xsd:field xpath="j2ee:port-component-name"/>	</xsd:key>      </xsd:element>    </xsd:sequence>    <xsd:attribute name="version"		   type="j2ee:dewey-versionType"		   fixed="1.1"		   use="required">      <xsd:annotation>	<xsd:documentation>	  The required value for the version is 1.1.	</xsd:documentation>      </xsd:annotation>    </xsd:attribute>    <xsd:attribute name="id" type="xsd:ID"/>  </xsd:complexType></xsd:schema>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久99精品久久久久久动态图 | 成人理论电影网| 91在线视频播放| 欧美一级国产精品| 亚洲视频香蕉人妖| 国产成人午夜精品5599| 制服丝袜成人动漫| 一区二区三区精品久久久| 国产精品一线二线三线精华| 欧美老人xxxx18| 亚洲精品日韩一| 懂色av噜噜一区二区三区av| 欧美第一区第二区| 日韩激情视频网站| 欧美艳星brazzers| 亚洲精品中文在线观看| 福利91精品一区二区三区| 亚洲精品一区二区三区99| 日本亚洲免费观看| 56国语精品自产拍在线观看| 亚洲国产一区二区三区青草影视 | 播五月开心婷婷综合| 亚洲精品在线三区| 久久疯狂做爰流白浆xx| 日韩网站在线看片你懂的| 三级影片在线观看欧美日韩一区二区 | 欧美片在线播放| 亚洲欧美电影一区二区| www..com久久爱| 中文字幕亚洲在| av一区二区不卡| 伊人性伊人情综合网| 色久综合一二码| 亚洲成人激情自拍| 欧美四级电影在线观看| 亚洲国产精品综合小说图片区| 日本高清成人免费播放| 99国产一区二区三精品乱码| 欧美午夜免费电影| 成人国产精品免费观看动漫| 日本免费新一区视频| 国模冰冰炮一区二区| 成人激情小说网站| 欧美亚洲综合久久| 精品国产乱码久久久久久久久| 国产精品久久久久影院老司 | 色综合久久中文综合久久牛| 欧美乱妇一区二区三区不卡视频| 国产日韩欧美不卡在线| 午夜一区二区三区在线观看| 懂色av一区二区三区免费看| 日韩欧美国产综合| 亚洲成av人综合在线观看| 成人黄页毛片网站| 2020国产精品自拍| 青草av.久久免费一区| 色呦呦一区二区三区| 欧美极品aⅴ影院| 美国十次综合导航| 欧美日韩中文字幕精品| 怡红院av一区二区三区| k8久久久一区二区三区| 国产午夜精品一区二区三区视频| 裸体歌舞表演一区二区| 欧美肥大bbwbbw高潮| 亚洲精品国产精品乱码不99| 北岛玲一区二区三区四区| 欧美—级在线免费片| 国产成人亚洲精品狼色在线| 日韩欧美美女一区二区三区| 蜜臀久久99精品久久久画质超高清 | 欧美一区二区三区思思人| 亚洲欧美日韩在线不卡| av不卡免费在线观看| 国产精品素人一区二区| 国产激情一区二区三区四区| 亚洲精品一区二区三区蜜桃下载 | 午夜久久福利影院| 欧美亚洲动漫精品| 亚洲一区二区三区精品在线| 日本久久精品电影| 一区二区日韩电影| 欧美丝袜自拍制服另类| 亚洲成av人综合在线观看| 欧美日本在线一区| 麻豆中文一区二区| www成人在线观看| 成人av电影免费在线播放| 宅男噜噜噜66一区二区66| 香蕉久久一区二区不卡无毒影院| 欧美另类久久久品| 精品制服美女丁香| 国产亚洲1区2区3区| a4yy欧美一区二区三区| 一区二区三区精品在线| 日韩午夜激情电影| 国产不卡视频在线播放| 亚洲美女在线一区| 欧美一区二区三区在线观看| 国产精品69毛片高清亚洲| 日韩一区在线播放| 3d动漫精品啪啪一区二区竹菊| 国产在线播放一区| 亚洲欧美另类小说视频| 欧美一区二区国产| caoporen国产精品视频| 石原莉奈在线亚洲二区| 国产亚洲成aⅴ人片在线观看| 色婷婷久久99综合精品jk白丝| 日韩成人一级片| 国产精品丝袜一区| 欧美一区二区三区日韩视频| 成人的网站免费观看| 天堂va蜜桃一区二区三区漫画版| 国产性天天综合网| 欧美精品aⅴ在线视频| 福利电影一区二区| 日韩精品欧美成人高清一区二区| 国产亚洲精品7777| 91精品啪在线观看国产60岁| 成人黄色大片在线观看| 青青草国产成人av片免费| 国产精品传媒在线| 26uuu国产一区二区三区| 欧美吻胸吃奶大尺度电影| 国产精品亚洲视频| 日本欧美一区二区| 亚洲一区二区三区免费视频| 国产精品进线69影院| 久久亚洲精品国产精品紫薇| 欧美精品色综合| 91成人在线精品| 成人av动漫在线| 狠狠色丁香久久婷婷综合_中 | 91浏览器在线视频| 国产高清在线观看免费不卡| 日本免费新一区视频| 午夜免费久久看| 一区二区三区在线视频观看| 国产精品久久久久久亚洲毛片| 精品美女在线播放| 欧美一二区视频| 欧美日本免费一区二区三区| 色综合激情久久| 91小视频在线免费看| 成人黄色小视频在线观看| 国产成人精品免费在线| 国模大尺度一区二区三区| 美女一区二区视频| 欧美性videosxxxxx| 精品在线免费观看| 秋霞电影网一区二区| 天堂久久久久va久久久久| 午夜亚洲福利老司机| 婷婷夜色潮精品综合在线| 日韩国产在线一| 欧美aaa在线| 激情小说欧美图片| 国产一区二区精品久久99| 国产一区福利在线| 国产.欧美.日韩| 97se亚洲国产综合自在线观| 97久久超碰精品国产| 色天使色偷偷av一区二区| 欧洲av一区二区嗯嗯嗯啊| 欧美日韩一区成人| 欧美一区永久视频免费观看| 欧美xxxxx裸体时装秀| 久久先锋影音av鲁色资源| 日本一区二区三区四区| 亚洲男同1069视频| 水蜜桃久久夜色精品一区的特点| 日韩国产欧美在线播放| 国产真实乱偷精品视频免| 成人免费电影视频| 欧美亚洲国产一区二区三区va| 欧美日韩国产影片| 久久一区二区三区四区| 国产精品久久久久7777按摩| 亚洲va韩国va欧美va| 久久成人麻豆午夜电影| av网站一区二区三区| 欧美日韩国产精品自在自线| 欧美精品一区二区三区视频| 综合久久给合久久狠狠狠97色| 香蕉成人伊视频在线观看| 国产精品一区二区在线播放| 91国内精品野花午夜精品| 日韩免费性生活视频播放| 中文字幕中文字幕在线一区| 日韩精品电影一区亚洲| 国产xxx精品视频大全| 欧美区一区二区三区| 国产日韩精品一区二区三区| 亚洲成在线观看| 成人午夜激情片| 日韩免费电影一区| 一区二区三区蜜桃| 国产.欧美.日韩| 欧美电影免费观看高清完整版在线观看 |