⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getbookprice.wsdl

📁 javaP2P技术内幕课程111213141516源代码
💻 WSDL
字号:
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="GetBookPrice " targetNamespace="http://localhost:8080/axis/BookPriceService.jws" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:serviceNS="http://localhost:8080/axis/BookPriceService.jws" xmlns:xsd="http://www.w3.org/2001/XMLSchema " xmlns="http://schemas.xmlsoap.org/wsdl/">
	<types>
		<xsd:schema targetNamespace="http://localhost:8080/xml/schemas/bookprice.xsd" xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
			<xsd:element name="BookPriceByISBNRequest ">
				<xsd:complexType>
					<xsd:all>
						<xsd:element name="isbn " type="string"/>
					</xsd:all>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="BookPriceByAuthorRequest">
				<xsd:complexType>
					<xsd:all>
						<xsd:element name="author " type="string"/>
					</xsd:all>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="BookPriceResponse">
				<xsd:complexType>
					<xsd:all>
						<xsd:element name="price " type="double"/>
					</xsd:all>
				</xsd:complexType>
			</xsd:element>
		</xsd:schema>
	</types>
	<message name="GetBookPriceByISBNInput">
		<part name="body " element="bpxsd:ISBNBookPriceRequest"/>
	</message>
	<message name="GetBookPriceByAuthorInput">
		<part name="body " element="bpxsd:AuthorBookPriceRequest"/>
	</message>
	<message name="GetBookPriceOutput">
		<part name="body " element="bpxsd:BookPrice"/>
	</message>
	<portType name="BookPricePortType">
		<operation name="GetBookPriceByISBN">
			<input message="bp:GetBookPriceByISBNInput"/>
			<output message="bp:GetBookPriceOutput"/>
		</operation>
		<operation name="GetBookPriceByAuthor">
			<input message="bp:GetBookPriceByAuthorInput"/>
			<output message="bp:GetBookPriceOutput"/>
		</operation>
	</portType>
	<binding name="BookPriceSoapBinding " type="bp:BookPricePortType">
		<soap:binding style="document " transport="http://schemas.xmlsoap.org/soap/http"/>
		<operation name="GetBookPriceByISBN">
			<soap:operation soapAction="http://example.com/GetBookPriceByISBN"/>
			<input>
				<soap:body use="literal"/>
			</input>
			<output>
				<soap:body use="literal"/>
			</output>
		</operation>
		<operation name="GetBookPriceByAuthor">
			<soap:operation soapAction="http://example.com/GetBookPriceByAuthor"/>
			<input>
				<soap:body use="literal"/>
			</input>
			<output>
				<soap:body use="literal"/>
			</output>
		</operation>
	</binding>
	<service name="BookPriceService">
		<documentation>Get Book Prices</documentation>
		<port name="BookPricePort " binding="bp:BookPriceSoapBinding">
			<soap:address location="http://example.com/bookprice"/>
		</port>
	</service>
</definitions>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -