如何使用HTML发送SOAP请求并接收响应?

时间:2015-02-18 11:47:02

标签: javascript html web-services soap wsdl

我想向 SOAP “服务器”发送一个号码(我不知道我是否可以将其称为服务器,如果我错了就纠正我)并使用 HTML ,我看到很多问题的答案都包含发送XML请求的示例,如下所示,但我不知道如何接收和查看 HTML 的响应,对不起,我是 SOAP 的新手。

P.S。:当然,通过HTML我的意思是HTML中的JavaScript:P


服务器:Here

提前致谢!

<html>

<head>
    <title>SOAP JavaScript Client Test</title>
    <script type="text/javascript">
        function soap() {
            var xmlhttp = new XMLHttpRequest();
            xmlhttp.open('POST', 'http://192.168.0.251:9080/wsa/wsa1', true);

            // build SOAP request
            var sr =
                '<?xml version="1.0" encoding="utf-8"?>' +
                '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:services-progress-com:notavailable">' +
                '<soapenv:Header/>' +
                '<soapenv:Body>' +
                '<urn:lnestagio>' +
                '<urn:vvalor>5</urn:vvalor>' +
                '</urn:lnestagio>' +
                '</soapenv:Body>' +
                '</soapenv:Envelope>';

            xmlhttp.onreadystatechange = function() {
                    if (xmlhttp.readyState == 4) {
                        if (xmlhttp.status == 200) {

                            alert('done use firebug to see response');
                        }
                    }
                }
                // Send the POST request
            xmlhttp.setRequestHeader('Content-Type', 'text/xml');
            xmlhttp.send(sr);
            // send request
            // ...
        }
    </script>
</head>

<body>
    <form name="Demo" action="" method="post">
        <div>
            <input type="button" value="Soap" onclick="soap();" />
        </div>
    </form>
</body>
<html>

来自我服务器的SOAP XML

    <wsdl:definitions xmlns:tns="urn:services-progress-com:ys:server" xmlns:S2="urn:services-progress-com:sys:server:Estagio" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:prodata="urn:schemas-progress-com:xml-prodata:0001" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:S1="urn:soap-fault:details" xmlns="http://schemas.xmlsoap.org/wsdl/" name="Estagio" targetNamespace="urn:services-progress-com:sys:server">
<wsdl:documentation>
Author=sys, EncodingType=DOC_LITERAL, WSA_Product=10.2B07 - N/A
</wsdl:documentation>
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified" targetNamespace="urn:soap-fault:details">
<element name="FaultDetail">
<complexType>
<sequence>
<element name="errorMessage" type="xsd:string"/>
<element name="requestID" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="urn:services-progress-com:sys:server:Estagio">
<element name="lnestagio">
<complexType>
<sequence>
    <element name="vvalor" nillable="true" type="xsd:decimal"/> <!-- Here I think he gets the number I sent -->
</sequence>
</complexType>
</element>
<element name="lnestagioResponse">
<complexType>
<sequence>
<element name="result" nillable="true" type="xsd:string"/>
<element name="vcalc" nillable="true" type="xsd:decimal"/> <!-- And it returns the number multiplied by 2 -->
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="FaultDetailMessage">
<wsdl:part name="FaultDetail" element="S1:FaultDetail"/>
</wsdl:message>
<wsdl:message name="Estagio_lnestagio">
<wsdl:part name="parameters" element="S2:lnestagio"/>
</wsdl:message>
<wsdl:message name="Estagio_lnestagioResponse">
<wsdl:part name="parameters" element="S2:lnestagioResponse"/>
</wsdl:message>
<wsdl:portType name="EstagioObj">
<wsdl:operation name="lnestagio">
<wsdl:input message="tns:Estagio_lnestagio"/>
<wsdl:output message="tns:Estagio_lnestagioResponse"/>
<wsdl:fault name="EstagioFault" message="tns:FaultDetailMessage"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="EstagioObj" type="tns:EstagioObj">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="lnestagio">
<soap:operation soapAction="" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
<wsdl:fault name="EstagioFault">
<soap:fault name="EstagioFault" use="literal"/>
</wsdl:fault>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="EstagioService">
<wsdl:port name="EstagioObj" binding="tns:EstagioObj">
<wsdl:documentation/>
<soap:address location="http://localhost:9080/wsa/wsa1"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

1 个答案:

答案 0 :(得分:4)

好吧,SOAP服务器旨在接收SOAP请求并发送SOAP响应。

由于SOAP基本上是XML,而不是期望来自服务器的HTML响应,因此寻找解析SOAP响应的XML并将其以HTML格式显示的方法更为合适。

但是当我输入这个答案时,我想你可能误解了SOAP服务器的目标。在我看来,您希望直接向客户端浏览器显示原始SOAP响应。但SOAP服务器无意以这种方式工作。

通常,SOAP服务器由另一台服务器使用,通过向其发出SOAP请求然后解析SOAP响应。并且该“其他服务器”可以是例如HTTP服务器。

我们举一个例子。我想知道明天我的城市的天气预报。我去dummyweatherforecast.com并在搜索栏中输入我的城市名称。但dummyweatherforecast.com本身并不存储所有天气预报。它可能会将SOAP服务器(专门用于提供天气预报)与包含我的城市名称的SOAP请求联系起来。 SOAP服务器返回带有不同天气信息(晴天/阴天,温度等)的SOAP响应,然后dummyweatherforecast.com处理此SOAP响应(即,作为提醒,XML),以一个漂亮的句子将其显示给客户端比如“明天天气晴朗,最高气温86°F。带上你的泳衣!”装饰着美丽的太阳图像。

如您所见,客户端甚至不知道dummyweatherforecast.com和SOAP服务器之间存在SOAP通信。这就是SOAP的使用方式:服务器本身,很少直接由客户端使用。这就是我们所说的“网络服务”,即使这个术语指的是用于使计算机相互通信的更一般的技术集。

我希望这会使你的思绪更加明亮。

PS:顺便说一句,您为服务器提供的链接指向一个公开的IP(192.168地址用于专用网络)。