jboss-as-webservices_1_0.xsd 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ JBoss, Home of Professional Open Source.
  4. ~ Copyright 2011, Red Hat, Inc., and individual contributors
  5. ~ as indicated by the @author tags. See the copyright.txt file in the
  6. ~ distribution for a full listing of individual contributors.
  7. ~
  8. ~ This is free software; you can redistribute it and/or modify it
  9. ~ under the terms of the GNU Lesser General Public License as
  10. ~ published by the Free Software Foundation; either version 2.1 of
  11. ~ the License, or (at your option) any later version.
  12. ~
  13. ~ This software is distributed in the hope that it will be useful,
  14. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ~ Lesser General Public License for more details.
  17. ~
  18. ~ You should have received a copy of the GNU Lesser General Public
  19. ~ License along with this software; if not, write to the Free
  20. ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  22. -->
  23. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  24. targetNamespace="urn:jboss:domain:webservices:1.0" xmlns="urn:jboss:domain:webservices:1.0"
  25. xmlns:jaxwsconfig="urn:jboss:jbossws-jaxws-config:4.0" elementFormDefault="qualified"
  26. attributeFormDefault="unqualified" version="1.0">
  27. <xs:import namespace="urn:jboss:jbossws-jaxws-config:4.0" schemaLocation="jbossws-jaxws-config_4_0.xsd"/>
  28. <!-- The webservices subsystem root element -->
  29. <xs:element name="subsystem" type="webservices-containerType" />
  30. <!-- The webservices container configuration -->
  31. <xs:complexType name="webservices-containerType">
  32. <xs:annotation>
  33. <xs:documentation>
  34. <![CDATA[
  35. The webservices subsystem, used to configure JBossWS.
  36. ]]>
  37. </xs:documentation>
  38. </xs:annotation>
  39. <xs:sequence>
  40. <xs:element name="modify-wsdl-address" minOccurs="0"
  41. maxOccurs="1" type="xs:boolean" />
  42. <xs:element name="wsdl-host" minOccurs="0" maxOccurs="1"
  43. type="xs:string">
  44. <xs:annotation>
  45. <xs:documentation>
  46. <![CDATA[
  47. The WSDL, that is a required deployment artifact for an endpoint, has a <soap:address>
  48. element which points to the location of the endpoint. JBoss supports rewriting of that SOAP address.
  49. If the content of <soap:address> is a valid URL, JBossWS will not rewrite it unless 'modify-soap-address' is true.
  50. If the content of <soap:address> is not a valid URL, JBossWS will rewrite it using the attribute values given below.
  51. If 'webServiceHost' is set to 'jbossws.undefined.host', JBossWS uses requesters host when rewriting the <soap:address>
  52. ]]>
  53. </xs:documentation>
  54. </xs:annotation>
  55. </xs:element>
  56. <xs:element name="wsdl-port" minOccurs="0" maxOccurs="1"
  57. type="xs:int" />
  58. <xs:element name="wsdl-secure-port" minOccurs="0"
  59. maxOccurs="1" type="xs:int">
  60. <xs:annotation>
  61. <xs:documentation>
  62. <![CDATA[
  63. Set these properties to explicitly define the ports that will be used for rewriting the SOAP address.
  64. Otherwise the ports will be identified by querying the list of installed connectors.
  65. ]]>
  66. </xs:documentation>
  67. </xs:annotation>
  68. </xs:element>
  69. <xs:element minOccurs="0" maxOccurs="unbounded"
  70. name="endpoint-config" type="jaxwsconfig:endpointConfigType" />
  71. </xs:sequence>
  72. </xs:complexType>
  73. </xs:schema>