-1883292594.cache 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. -->
  18. <xsd:schema xmlns="http://cxf.apache.org/jaxws"
  19. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  20. xmlns:beans="http://www.springframework.org/schema/beans"
  21. xmlns:cxf-beans="http://cxf.apache.org/configuration/beans"
  22. xmlns:pt="http://cxf.apache.org/configuration/parameterized-types"
  23. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  24. targetNamespace="http://cxf.apache.org/jaxws"
  25. elementFormDefault="qualified"
  26. attributeFormDefault="unqualified" >
  27. <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
  28. <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/>
  29. <xsd:import namespace="http://cxf.apache.org/configuration/parameterized-types"
  30. schemaLocation="http://cxf.apache.org/schemas/configuration/parameterized-types.xsd"/>
  31. <xsd:element name="endpoint">
  32. <xsd:annotation>
  33. <xsd:documentation>Configures a JAX-WS server. This element is associated with the org.apache.cxf.jaxws.EndpointImpl object.</xsd:documentation>
  34. </xsd:annotation>
  35. <xsd:complexType>
  36. <xsd:complexContent>
  37. <xsd:extension base="beans:identifiedType">
  38. <xsd:all>
  39. <xsd:element name="binding" type="xsd:anyType" minOccurs="0">
  40. <xsd:annotation>
  41. <xsd:documentation>Configures the message binding used by the endpoint. Message bindings are configured using implementations of the
  42. org.apache.cxf.binding.BindingFactory interface. The SOAP binding is configured using the soap:soapBinding bean.</xsd:documentation>
  43. </xsd:annotation>
  44. </xsd:element>
  45. <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0">
  46. <xsd:annotation>
  47. <xsd:documentation>Configures the data binding used by the endpoint. The class implementing the JAXB data binding is org.apache.cxf.jaxb.JAXBDataBinding.</xsd:documentation>
  48. </xsd:annotation>
  49. </xsd:element>
  50. <xsd:element name="executor" type="xsd:anyType" minOccurs="0">
  51. <xsd:annotation>
  52. <xsd:documentation>Configures a Java executor to handle the service.</xsd:documentation>
  53. </xsd:annotation>
  54. </xsd:element>
  55. <xsd:element name="features" type="xsd:anyType" minOccurs="0">
  56. <xsd:annotation>
  57. <xsd:documentation>Specifies a list of beans that configure advanced features like WS-RM.</xsd:documentation>
  58. </xsd:annotation>
  59. </xsd:element>
  60. <xsd:element name="handlers" type="xsd:anyType" minOccurs="0">
  61. <xsd:annotation>
  62. <xsd:documentation>Specifies a list of JAX-WS handlers to add to the endpoint's processing chain.</xsd:documentation>
  63. </xsd:annotation>
  64. </xsd:element>
  65. <xsd:element name="implementor" type="xsd:anyType" minOccurs="0">
  66. <xsd:annotation>
  67. <xsd:documentation>Configures the bean implementing the service. If this child is used you should not use the implementor attribute.</xsd:documentation>
  68. </xsd:annotation>
  69. </xsd:element>
  70. <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0">
  71. <xsd:annotation>
  72. <xsd:documentation>Specifies a list of interceptors to process incoming requests.</xsd:documentation>
  73. </xsd:annotation>
  74. </xsd:element>
  75. <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0">
  76. <xsd:annotation>
  77. <xsd:documentation>Specifies a list of interceptors to process incoming fault messages.</xsd:documentation>
  78. </xsd:annotation>
  79. </xsd:element>
  80. <xsd:element name="invoker" type="xsd:anyType" minOccurs="0">
  81. <xsd:annotation>
  82. <xsd:documentation>Specifies an implementation of the org.apache.cxf.service.Invoker interface to be used by the service. The Invoker
  83. implementation controls how a service is invoked. For example, it controls if each request is handled by a new instance of the
  84. service implementation or if state is preserved across invocations.</xsd:documentation>
  85. </xsd:annotation>
  86. </xsd:element>
  87. <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0">
  88. <xsd:annotation>
  89. <xsd:documentation>Specifies a list of interceptors to process outgoing responses.</xsd:documentation>
  90. </xsd:annotation>
  91. </xsd:element>
  92. <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0">
  93. <xsd:annotation>
  94. <xsd:documentation>Specifies a list of interceptors to process outgoing fault messages.</xsd:documentation>
  95. </xsd:annotation>
  96. </xsd:element>
  97. <xsd:element name="properties" type="beans:mapType" minOccurs="0">
  98. <xsd:annotation>
  99. <xsd:documentation>Specifies a map of properties that are passed to the endpoint.</xsd:documentation>
  100. </xsd:annotation>
  101. </xsd:element>
  102. <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/>
  103. <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/>
  104. </xsd:all>
  105. <xsd:attributeGroup ref="cxf-beans:beanAttributes"/>
  106. <xsd:attribute name="address" type="xsd:string">
  107. <xsd:annotation>
  108. <xsd:documentation>Specifies the HTTP address of the endpoint. This value will override the value specified in the services
  109. contract.</xsd:documentation>
  110. </xsd:annotation>
  111. </xsd:attribute>
  112. <xsd:attribute name="bindingUri" type="xsd:string">
  113. <xsd:annotation>
  114. <xsd:documentation>Specifies the ID of the data binding the service will use. For SOAP bindings the IDs are defined in the JAX-WS
  115. specification. For other data bindings, the ID is the namespace of the WSDL extensions used to configure the
  116. binding.</xsd:documentation>
  117. </xsd:annotation>
  118. </xsd:attribute>
  119. <xsd:attribute name="bus" type="xsd:string">
  120. <xsd:annotation>
  121. <xsd:documentation>Specifies the ID of the Spring bean configuring the bus managing the endpoint.</xsd:documentation>
  122. </xsd:annotation>
  123. </xsd:attribute>
  124. <xsd:attribute name="implementor" type="xsd:string">
  125. <xsd:annotation>
  126. <xsd:documentation>Specifies the class implementing the service. You can specify the implementation class using either the class
  127. name or an ID reference to a Spring bean configuring the implementation class. This class needs to be on the
  128. classpath.</xsd:documentation>
  129. </xsd:annotation>
  130. </xsd:attribute>
  131. <xsd:attribute name="implementorClass" type="xsd:string">
  132. <xsd:annotation>
  133. <xsd:documentation>Specifies the name of the class implementing the service. This attribute is useful when you specify the implementor
  134. with the ref bean which is wrapped by using Spring AOP.</xsd:documentation>
  135. </xsd:annotation>
  136. </xsd:attribute>
  137. <xsd:attribute name="publish" type="pt:ParameterizedBoolean" default="true">
  138. <xsd:annotation>
  139. <xsd:documentation>Specifies if the service should be automatically published.</xsd:documentation>
  140. </xsd:annotation>
  141. </xsd:attribute>
  142. <xsd:attribute name="publishedEndpointUrl" type="xsd:string"/>
  143. <xsd:attribute name="endpointName" type="xsd:QName">
  144. <xsd:annotation>
  145. <xsd:documentation>Specifies the value of the service's WSDL port element's name attribute.</xsd:documentation>
  146. </xsd:annotation>
  147. </xsd:attribute>
  148. <xsd:attribute name="serviceName" type="xsd:QName">
  149. <xsd:annotation>
  150. <xsd:documentation>Specifies the value of the service's WSDL service element's name attribute.</xsd:documentation>
  151. </xsd:annotation>
  152. </xsd:attribute>
  153. <xsd:attribute name="transportId" type="xsd:string">
  154. <xsd:annotation>
  155. <xsd:documentation>Specifies the transportId that endpoint will use, it will override the transport which is defined in the wsdl.</xsd:documentation>
  156. </xsd:annotation>
  157. </xsd:attribute>
  158. <xsd:attribute name="wsdlLocation" type="xsd:string">
  159. <xsd:annotation>
  160. <xsd:documentation>Specifies the location of the endpoint's WSDL contract. The WSDL contract's location is relative to the folder
  161. from which the service is deployed.</xsd:documentation>
  162. </xsd:annotation>
  163. </xsd:attribute>
  164. </xsd:extension>
  165. </xsd:complexContent>
  166. </xsd:complexType>
  167. </xsd:element>
  168. <xsd:element name="server">
  169. <xsd:annotation>
  170. <xsd:documentation>Configures a JAX-WS server. The element is associated with the org.apache.cxf.jaxws.support.JaxWsServerFactoryBean object.</xsd:documentation>
  171. </xsd:annotation>
  172. <xsd:complexType>
  173. <xsd:complexContent>
  174. <xsd:extension base="beans:identifiedType">
  175. <xsd:all>
  176. <xsd:element name="binding" type="xsd:anyType" minOccurs="0">
  177. <xsd:annotation>
  178. <xsd:documentation>Configures the message binding used by the endpoint. Message bindings are configured using implementations of the
  179. org.apache.cxf.binding.BindingFactory interface. The SOAP binding is configured using the soap:soapBinding bean.</xsd:documentation>
  180. </xsd:annotation>
  181. </xsd:element>
  182. <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0">
  183. <xsd:annotation>
  184. <xsd:documentation>Configures the data binding used by the endpoint. The class implementing the JAXB data binding is
  185. org.apache.cxf.jaxb.JAXBDataBinding.</xsd:documentation>
  186. </xsd:annotation>
  187. </xsd:element>
  188. <xsd:element name="executor" type="xsd:anyType" minOccurs="0">
  189. <xsd:annotation>
  190. <xsd:documentation>Configures a Java executor to handle the service.</xsd:documentation>
  191. </xsd:annotation>
  192. </xsd:element>
  193. <xsd:element name="features" type="xsd:anyType" minOccurs="0">
  194. <xsd:annotation>
  195. <xsd:documentation>Specifies a list of beans that configure advanced features like WS-RM.</xsd:documentation>
  196. </xsd:annotation>
  197. </xsd:element>
  198. <xsd:element name="handlers" type="xsd:anyType" minOccurs="0">
  199. <xsd:annotation>
  200. <xsd:documentation>Specifies a list of JAX-WS handlers to add to the endpoint's processing chain.</xsd:documentation>
  201. </xsd:annotation>
  202. </xsd:element>
  203. <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0">
  204. <xsd:annotation>
  205. <xsd:documentation>Specifies a list of interceptors to process incoming requests.</xsd:documentation>
  206. </xsd:annotation>
  207. </xsd:element>
  208. <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0">
  209. <xsd:annotation>
  210. <xsd:documentation>Specifies a list of interceptors to process incoming fault messages.</xsd:documentation>
  211. </xsd:annotation>
  212. </xsd:element>
  213. <xsd:element name="invoker" type="xsd:anyType" minOccurs="0">
  214. <xsd:annotation>
  215. <xsd:documentation>Specifies an implementation of the org.apache.cxf.service.Invoker interface to be used by the service. The Invoker
  216. implementation controls how a service is invoked. For example, it controls if each request is handled by a new instance of the
  217. service implementation or if state is preserved across invocations.</xsd:documentation>
  218. </xsd:annotation>
  219. </xsd:element>
  220. <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0">
  221. <xsd:annotation>
  222. <xsd:documentation>Specifies a list of interceptors to process outgoing responses.</xsd:documentation>
  223. </xsd:annotation>
  224. </xsd:element>
  225. <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0">
  226. <xsd:annotation>
  227. <xsd:documentation>Specifies a list of interceptors to process outgoing fault messages.</xsd:documentation>
  228. </xsd:annotation>
  229. </xsd:element>
  230. <xsd:element name="properties" type="beans:mapType" minOccurs="0">
  231. <xsd:annotation>
  232. <xsd:documentation>Specifies a map of properties that are passed to the endpoint.</xsd:documentation>
  233. </xsd:annotation>
  234. </xsd:element>
  235. <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/>
  236. <xsd:element name="serviceBean" type="xsd:anyType" minOccurs="0">
  237. <xsd:annotation>
  238. <xsd:documentation>Configures the bean implementing the service. If this child is used you should not use the serviceBean attribute.</xsd:documentation>
  239. </xsd:annotation>
  240. </xsd:element>
  241. <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/>
  242. </xsd:all>
  243. <xsd:attributeGroup ref="cxf-beans:beanAttributes"/>
  244. <xsd:attribute name="address" type="xsd:string">
  245. <xsd:annotation>
  246. <xsd:documentation>Specifies the HTTP address of the endpoint. This value will override the value specified in the services
  247. contract.</xsd:documentation>
  248. </xsd:annotation>
  249. </xsd:attribute>
  250. <xsd:attribute name="bindingId" type="xsd:string">
  251. <xsd:annotation>
  252. <xsd:documentation>Specifies the ID of the data binding the service will use. For SOAP bindings the IDs are defined in the JAX-WS
  253. specification. For other data bindings, the ID is the namespace of the WSDL extensions used to configure the
  254. binding.</xsd:documentation>
  255. </xsd:annotation>
  256. </xsd:attribute>
  257. <xsd:attribute name="bus" type="xsd:string">
  258. <xsd:annotation>
  259. <xsd:documentation>Specifies the ID of the Spring bean configuring the bus managing the endpoint.</xsd:documentation>
  260. </xsd:annotation>
  261. </xsd:attribute>
  262. <xsd:attribute name="serviceClass" type="xsd:string">
  263. <xsd:annotation>
  264. <xsd:documentation>Specifies the name of the class implementing the service. This attribute is useful when you specify the implementor
  265. with the ref bean which is wrapped by using Spring AOP.</xsd:documentation>
  266. </xsd:annotation>
  267. </xsd:attribute>
  268. <xsd:attribute name="serviceBean" type="xsd:string">
  269. <xsd:annotation>
  270. <xsd:documentation>Specifies the class implementing the service. You can specify the implementation class using either the class
  271. name or an ID reference to a Spring bean configuring the implementation class. This class needs to be on the
  272. classpath.</xsd:documentation>
  273. </xsd:annotation>
  274. </xsd:attribute>
  275. <xsd:attribute name="start" type="pt:ParameterizedBoolean" default="true">
  276. <xsd:annotation>
  277. <xsd:documentation>Specifies if the service should be automatically published.</xsd:documentation>
  278. </xsd:annotation>
  279. </xsd:attribute>
  280. <xsd:attribute name="transportId" type="xsd:string">
  281. <xsd:annotation>
  282. <xsd:documentation>Specifies the transportId that endpoint will use, it will override the transport which is defined in the wsdl.</xsd:documentation>
  283. </xsd:annotation>
  284. </xsd:attribute>
  285. <xsd:attribute name="wsdlLocation" type="xsd:string">
  286. <xsd:annotation>
  287. <xsd:documentation>Specifies the location of the endpoint's WSDL contract. The WSDL contract's location is relative to the folder
  288. from which the service is deployed.</xsd:documentation>
  289. </xsd:annotation>
  290. </xsd:attribute>
  291. <xsd:attribute name="endpointName" type="xsd:QName">
  292. <xsd:annotation>
  293. <xsd:documentation>Specifies the value of the service's WSDL port element's name attribute.</xsd:documentation>
  294. </xsd:annotation>
  295. </xsd:attribute>
  296. <xsd:attribute name="serviceName" type="xsd:QName">
  297. <xsd:annotation>
  298. <xsd:documentation>Specifies the value of the service's WSDL service element's name attribute.</xsd:documentation>
  299. </xsd:annotation>
  300. </xsd:attribute>
  301. </xsd:extension>
  302. </xsd:complexContent>
  303. </xsd:complexType>
  304. </xsd:element>
  305. <xsd:element name="client">
  306. <xsd:annotation>
  307. <xsd:documentation>Configures a JAX-WS client.</xsd:documentation>
  308. </xsd:annotation>
  309. <xsd:complexType>
  310. <xsd:complexContent>
  311. <xsd:extension base="beans:identifiedType">
  312. <xsd:all>
  313. <xsd:element name="binding" type="xsd:anyType" minOccurs="0">
  314. <xsd:annotation>
  315. <xsd:documentation>Configures the message binding used by the endpoint. Message bindings are configured using implementations of the
  316. org.apache.cxf.binding.BindingFactory interface. The SOAP binding is configured using the soap:soapBinding bean.</xsd:documentation>
  317. </xsd:annotation>
  318. </xsd:element>
  319. <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0">
  320. <xsd:annotation>
  321. <xsd:documentation>Configures the data binding used by the endpoint. The class implementing the JAXB data binding is org.apache.cxf.jaxb.JAXBDataBinding.</xsd:documentation>
  322. </xsd:annotation>
  323. </xsd:element>
  324. <xsd:element name="features" type="xsd:anyType" minOccurs="0">
  325. <xsd:annotation>
  326. <xsd:documentation>Specifies a list of beans that configure advanced features like WS-RM.</xsd:documentation>
  327. </xsd:annotation>
  328. </xsd:element>
  329. <xsd:element name="handlers" type="xsd:anyType" minOccurs="0">
  330. <xsd:annotation>
  331. <xsd:documentation>Specifies a list of JAX-WS handlers to add to the endpoint's processing chain.</xsd:documentation>
  332. </xsd:annotation>
  333. </xsd:element>
  334. <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0">
  335. <xsd:annotation>
  336. <xsd:documentation>Specifies a list of interceptors to process incoming responses.</xsd:documentation>
  337. </xsd:annotation>
  338. </xsd:element>
  339. <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0">
  340. <xsd:annotation>
  341. <xsd:documentation>Specifies a list of interceptors to process incoming fault messages.</xsd:documentation>
  342. </xsd:annotation>
  343. </xsd:element>
  344. <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0">
  345. <xsd:annotation>
  346. <xsd:documentation>Specifies a list of interceptors to process outgoing requests.</xsd:documentation>
  347. </xsd:annotation>
  348. </xsd:element>
  349. <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0">
  350. <xsd:annotation>
  351. <xsd:documentation>Specifies a list of interceptors to process outgoing fault messages.</xsd:documentation>
  352. </xsd:annotation>
  353. </xsd:element>
  354. <xsd:element name="properties" type="beans:mapType" minOccurs="0">
  355. <xsd:annotation>
  356. <xsd:documentation>Specifies a map of properties that are passed to the endpoint.</xsd:documentation>
  357. </xsd:annotation>
  358. </xsd:element>
  359. <xsd:element name="conduitSelector" type="xsd:anyType" minOccurs="0">
  360. <xsd:annotation>
  361. <xsd:documentation>Specifies a org.apache.cxf.endpoint.ConduitSelector implementation. ConduitSelector implementations override the
  362. strategy used to select the Conduit used to process outgoing messages.</xsd:documentation>
  363. </xsd:annotation>
  364. </xsd:element>
  365. </xsd:all>
  366. <xsd:attributeGroup ref="cxf-beans:beanAttributes"/>
  367. <xsd:attribute name="address" type="xsd:string">
  368. <xsd:annotation>
  369. <xsd:documentation>Specifies the HTTP address of the endpoint on which the client makes requests. This value will override the value
  370. specified in the services contract.</xsd:documentation>
  371. </xsd:annotation>
  372. </xsd:attribute>
  373. <xsd:attribute name="bindingId" type="xsd:string">
  374. <xsd:annotation>
  375. <xsd:documentation>Specifies the ID of the data binding the client will use. For SOAP bindings the IDs are defined in the JAX-WS
  376. specification. For other data bindings, the ID is the namespace of the WSDL extensions used to configure the
  377. binding.</xsd:documentation>
  378. </xsd:annotation>
  379. </xsd:attribute>
  380. <xsd:attribute name="bus" type="xsd:string">
  381. <xsd:annotation>
  382. <xsd:documentation>Specifies the ID of the Spring bean configuring the bus managing the endpoint.</xsd:documentation>
  383. </xsd:annotation>
  384. </xsd:attribute>
  385. <xsd:attribute name="endpointName" type="xsd:QName">
  386. <xsd:annotation>
  387. <xsd:documentation>Specifies the value of the WSDL port element's name attribute for the service on which the client is making
  388. requests.</xsd:documentation>
  389. </xsd:annotation>
  390. </xsd:attribute>
  391. <xsd:attribute name="password" type="xsd:string">
  392. <xsd:annotation>
  393. <xsd:documentation>Specifies a password that is used for simple username/password authentication.</xsd:documentation>
  394. </xsd:annotation>
  395. </xsd:attribute>
  396. <xsd:attribute name="serviceClass" type="xsd:string">
  397. <xsd:annotation>
  398. <xsd:documentation>Specifies the name of the class implementing the client.</xsd:documentation>
  399. </xsd:annotation>
  400. </xsd:attribute>
  401. <xsd:attribute name="serviceName" type="xsd:QName">
  402. <xsd:annotation>
  403. <xsd:documentation>Specifies the value of the WSDL service element's name attribute for the service on which the client is making
  404. requests.</xsd:documentation>
  405. </xsd:annotation>
  406. </xsd:attribute>
  407. <xsd:attribute name="username" type="xsd:string">
  408. <xsd:annotation>
  409. <xsd:documentation>Specifies a password that is used for simple username/password authentication.</xsd:documentation>
  410. </xsd:annotation>
  411. </xsd:attribute>
  412. <xsd:attribute name="transportId" type="xsd:string">
  413. <xsd:annotation>
  414. <xsd:documentation>Specifies the transportId that endpoint will use, it will override the transport which is defined in the wsdl.</xsd:documentation>
  415. </xsd:annotation>
  416. </xsd:attribute>
  417. <xsd:attribute name="wsdlLocation" type="xsd:string">
  418. <xsd:annotation>
  419. <xsd:documentation>Specifies the location of the endpoint's WSDL contract. The WSDL contract's location is relative to the folder
  420. from which the client is deployed.</xsd:documentation>
  421. </xsd:annotation>
  422. </xsd:attribute>
  423. </xsd:extension>
  424. </xsd:complexContent>
  425. </xsd:complexType>
  426. </xsd:element>
  427. <xsd:complexType name="schemasType">
  428. <xsd:sequence>
  429. <xsd:element name="schemaLocation" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
  430. </xsd:sequence>
  431. </xsd:complexType>
  432. </xsd:schema>