Schema "mule-servlet.xsd"
Target Namespace:
http://www.mulesoft.org/schema/mule/servlet
Defined Components:
global elements, 3 complexTypes
Default Namespace-Qualified Form:
Local Elements: qualified; Local Attributes: unqualified
Schema Location:
http://www.mulesoft.org/schema/mule/servlet/3.3/mule-servlet.xsd; see XML source
Imports Schemas (4):
mule-http.xsd [src], mule-schemadoc.xsd [src], mule.xsd [src], xml.xsd [src]
Imported by Schemas (2):
_mule-all-included.xsd, mule-ajax.xsd [src]
Annotation
The Servlet transport allows Mule components to listen for events received via a servlet request.
All Element Summary
connector Servlet connector is a channel adapter between Mule and a servlet engine.
Type:
Content:
complex, 6 attributes, attr. wildcard, 6 elements
Subst.Gr:
may substitute for element mule:abstract-connector
Defined:
globally; see XML source
Used:
never
endpoint
Type:
Content:
complex, 11 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-global-endpoint
Defined:
globally; see XML source
Used:
never
http-request-to-byte-array The <http-request-to-byte-array> transformer converts an HttpServletRequest into an array of bytes by extracting the payload of the request.
Type:
Content:
complex, 5 attributes, attr. wildcard, 1 element
Subst.Gr:
Defined:
globally; see XML source
Used:
never
http-request-to-input-stream The <http-request-to-input-stream> transformer converts an HttpServletRequest into an InputStream.
Type:
Content:
complex, 5 attributes, attr. wildcard, 1 element
Subst.Gr:
Defined:
globally; see XML source
Used:
never
http-request-to-parameter-map The <http-request-to-parameter-map> transformer returns a simple Map of the parameters sent with the HTTP Request.
Type:
Content:
complex, 5 attributes, attr. wildcard, 1 element
Subst.Gr:
Defined:
globally; see XML source
Used:
never
inbound-endpoint
Type:
Content:
complex, 11 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-inbound-endpoint
Defined:
globally; see XML source
Used:
never
Complex Type Summary
Content:
complex, 11 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Includes:
definition of 1 attribute
Used:
Content:
complex, 11 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Includes:
definition of 1 attribute
Used:
Content:
complex, 6 attributes, attr. wildcard, 6 elements
Defined:
globally; see XML source
Includes:
definitions of 2 attributes
Used:
XML Source
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.mulesoft.org/schema/mule/servlet" xmlns="http://www.mulesoft.org/schema/mule/servlet" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:mule="http://www.mulesoft.org/schema/mule/core" xmlns:schemadoc="http://www.mulesoft.org/schema/mule/schemadoc" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:annotation>
<xsd:documentation>
The Servlet transport allows Mule components to listen for events received via a servlet request.
</xsd:documentation>
<xsd:appinfo>
<schemadoc:short-name>Servlet</schemadoc:short-name>
<schemadoc:page-title>Servlet Transport</schemadoc:page-title>
<schemadoc:transport-features dispatchEvents="true" receiveEvents="true" requestEvents="true" streaming="true" transactions="false">
<schemadoc:MEPs default="request-response" supported="request-response"/>
</schemadoc:transport-features>
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="connector" substitutionGroup="mule:abstract-connector" type="servletConnectorType">
<xsd:annotation>
<xsd:documentation>
Servlet connector is a channel adapter between Mule and a servlet engine. It allows the MuleReceiverServlet to look up components interested in requests it receives via the servlet container.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="servletConnectorType">
<xsd:complexContent>
<xsd:extension base="mule:connectorType">
<xsd:attribute name="servletUrl">
<xsd:annotation>
<xsd:documentation>
The real URL on which the servlet container is bound. If this is not set, the WSDL may not be generated correctly when using CXF bound to a servlet endpoint.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute default="false" name="useCachedHttpServletRequest" type="mule:substitutableBoolean">
<xsd:annotation>
<xsd:documentation>
Whether to use a cached http servlet request
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="inbound-endpoint" substitutionGroup="mule:abstract-inbound-endpoint" type="inboundEndpointType"/>
<xsd:complexType name="inboundEndpointType">
<xsd:complexContent>
<!--
The only valid exchange-pattern is request-response which is the default. No need to
make the exchange-pattern attribute configurable.
-->
<xsd:attribute name="path" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>
the servlett path to bind the service to.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="endpoint" substitutionGroup="mule:abstract-global-endpoint" type="globalEndpointType"/>
<xsd:complexType name="globalEndpointType">
<xsd:complexContent>
<!--
The only valid exchange-pattern is request-response which is the default. No need to
make the exchange-pattern attribute configurable.
-->
<xsd:attribute name="path" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>
the servlett path to bind the service to.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
The &lt;http-request-to-parameter-map&gt; transformer returns a simple Map of the parameters sent with the HTTP Request. If the same parameter is given more than once, only the first value for it will be in the Map.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
The &lt;http-request-to-input-stream&gt; transformer converts an HttpServletRequest into an InputStream.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
The &lt;http-request-to-byte-array&gt; transformer converts an HttpServletRequest into an array of bytes by extracting the payload of the request.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:schema>

XML schema documentation generated with DocFlex/XML RE 1.8.5 using DocFlex/XML XSDDoc 2.5.0 template set. All content model diagrams generated by Altova XMLSpy via DocFlex/XML XMLSpy Integration.