All Downloads are FREE. Search and download functionalities are using the official Maven repository.

txw2.wsdl11.soapBindings.rnc Maven / Gradle / Ivy

Go to download

Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.

There is a newer version: 2.10.9.2
Show newest version
# RELAX NG Schema for WSDL 1.1 SOAP Binding
#
#                   Written by Kohsuke Kawaguchi
#
# This schema is in public domain. Feel free to use it in anyway you can.
# If you find a bug, please let me know.
namespace local = ""
namespace txw = "http://java.sun.com/txw"
default namespace soap = "http://schemas.xmlsoap.org/wsdl/soap/"

binding = element binding {
	attribute transport {xsd:anyURI}?,
	attribute style {styleChoice}?
}

styleChoice = "rpc"|"document"

operation = element operation {
	attribute soapAction {xsd:anyURI}?,
	attribute style {styleChoice}?
}

body = element body { bodyType }

bodyType =
	attribute encodingStyle {xsd:anyURI}?,
	attribute parts {xsd:NMTOKENS}?,
	attribute use {useChoice}?,
	attribute namespace {xsd:anyURI}?

useChoice = "literal"|"encoded"

fault = element fault { bodyType }

header = element header {
	attribute message {xsd:QName},
	bodyType,
	element headerFault {
		attribute message {xsd:QName},
		bodyType
	}
}

address = element address {
	attribute location {xsd:anyURI}
}

# dummy
start = address|header|fault|body|operation|binding




© 2015 - 2024 Weber Informatics LLC | Privacy Policy