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

txw2.wsdl11.mimeBindings.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 HTTP 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 mime = "http://schemas.xmlsoap.org/wsdl/mime/"

content = element content {
	attribute type {text}?,
	attribute part {xsd:NMTOKEN}?
}

multipartRelated = element multipartRelated {
	element part {
		attribute name {xsd:NMTOKEN},
		otherElement*
	}*
}

mimeXml = element mimeXml {
	attribute part {xsd:NMTOKEN}?
}

otherElement = element * - mime:* {
	mixed {
		anyElement*
	},
	attribute * {text}*
}

anyElement = element * {
	mixed {
		anyElement*
	},
	attribute * {text}*
 }


# dummy
start = content|multipartRelated|mimeXml




© 2015 - 2024 Weber Informatics LLC | Privacy Policy