12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2011, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- targetNamespace="urn:jboss:domain:webservices:1.0" xmlns="urn:jboss:domain:webservices:1.0"
- xmlns:jaxwsconfig="urn:jboss:jbossws-jaxws-config:4.0" elementFormDefault="qualified"
- attributeFormDefault="unqualified" version="1.0">
- <xs:import namespace="urn:jboss:jbossws-jaxws-config:4.0" schemaLocation="jbossws-jaxws-config_4_0.xsd"/>
- <!-- The webservices subsystem root element -->
- <xs:element name="subsystem" type="webservices-containerType" />
- <!-- The webservices container configuration -->
- <xs:complexType name="webservices-containerType">
- <xs:annotation>
- <xs:documentation>
- <![CDATA[
- The webservices subsystem, used to configure JBossWS.
- ]]>
- </xs:documentation>
- </xs:annotation>
- <xs:sequence>
- <xs:element name="modify-wsdl-address" minOccurs="0"
- maxOccurs="1" type="xs:boolean" />
- <xs:element name="wsdl-host" minOccurs="0" maxOccurs="1"
- type="xs:string">
- <xs:annotation>
- <xs:documentation>
- <![CDATA[
- The WSDL, that is a required deployment artifact for an endpoint, has a <soap:address>
- element which points to the location of the endpoint. JBoss supports rewriting of that SOAP address.
- If the content of <soap:address> is a valid URL, JBossWS will not rewrite it unless 'modify-soap-address' is true.
- If the content of <soap:address> is not a valid URL, JBossWS will rewrite it using the attribute values given below.
- If 'webServiceHost' is set to 'jbossws.undefined.host', JBossWS uses requesters host when rewriting the <soap:address>
- ]]>
- </xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="wsdl-port" minOccurs="0" maxOccurs="1"
- type="xs:int" />
- <xs:element name="wsdl-secure-port" minOccurs="0"
- maxOccurs="1" type="xs:int">
- <xs:annotation>
- <xs:documentation>
- <![CDATA[
- Set these properties to explicitly define the ports that will be used for rewriting the SOAP address.
- Otherwise the ports will be identified by querying the list of installed connectors.
- ]]>
- </xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element minOccurs="0" maxOccurs="unbounded"
- name="endpoint-config" type="jaxwsconfig:endpointConfigType" />
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
|