确认SOAP请求有一种SOAPHandler(validating SOAP-Request wit

2019-10-21 10:04发布

我试图验证对WSDL中定义的架构一个SOAP请求。 我使用的是一种SOAPHandler链一种SOAPHandler。 它的工作原理唯一的问题是,当我确认的要求,我得到这个错误信息:

cvc-complex-type.2.4.a: Invalid content was found starting with element 'v1:latitude'. One of '{"http://schemas.domain.com/wsdl/fuelprice/v1/model":latitude}' is expected.

该WSDL看起来是这样的:

<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
      xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
      mlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
      mlns:http="http://schemas.xmlsoap.org/wsdl/http/"
      xmlns:xs="http://www.w3.org/2001/XMLSchema"
      xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:tns="http://schemas.domain.com/wsdl/fuelprice/v1"
      xmlns:model="http://schemas.domain.com/wsdl/fuelprice/v1/model"
      xmlns:exception="http://schemas.domain.com/wsdl/fuelprice/v1/exception"
      targetNamespace="http://schemas.domain.com/wsdl/fuelprice/v1">
<wsdl:types>
    <xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.domain.com/wsdl/fuelprice/v1" elementFormDefault="qualified">
        <xsi:import namespace="http://schemas.domain.com/wsdl/fuelprice/v1/model" schemaLocation="common.xsd"/>
        <xsi:import namespace="http://schemas.domain.com/wsdl/fuelprice/v1/exception" schemaLocation="exception.xsd"/>
        <xsi:import namespace="http://schemas.xmlsoap.org/soap/envelope/" schemaLocation="http://schemas.xmlsoap.org/soap/envelope/"/>
        <xsi:element name="GetAreaFuelStationsRequest">
            <xsi:complexType>
                <xsi:sequence>
                    <xsi:element name="area" type="model:Area"/>
                </xsi:sequence>
                <xsi:attribute name="provider" type="xsi:string" use="optional"/>
                <xsi:attribute name="prices" type="xsi:boolean" use="required"/>
            </xsi:complexType>
        </xsi:element>

该XSD:

<?xml version="1.0" encoding="UTF-8"?>
<xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema" xmlns:model="http://schemas.domain.com/wsdl/fuelprice/v1/model" targetNamespace="http://schemas.domain.com/wsdl/fuelprice/v1/model" elementFormDefault="qualified">
<xsi:complexType name="FuelStation">
    <xsi:complexType name="Area">
        <xsi:sequence>
            <xsi:element name="center" type="model:GeoLocation"/>
            <xsi:element name="radius" type="xsi:float"/>
        </xsi:sequence>
    </xsi:complexType>
    <xsi:complexType name="GeoLocation">
        <xsi:sequence>
            <xsi:element name="latitude" type="xsi:double"/>
            <xsi:element name="longitude" type="xsi:double"/>
        </xsi:sequence>
        <xsi:attribute name="ellipsoid" type="xsi:string" use="required"/>
    </xsi:complexType>

源代码片断:

    try {
        context.getMessage().getSOAPPart().getEnvelope();
        schemas = getSchemas(new URL(wsdlURI.toString().concat(wsdl)));
        schema = factory.newSchema(schemas);
        validator = schema.newValidator();
        validator.validate(new DOMSource(xml));
    }

一个要求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://schemas.domain.com/wsdl/fuelprice/v1" xmlns:mod="http://schemas.domain.com/wsdl/fuelprice/v1/model">
   <soapenv:Header/>
   <soapenv:Body>
      <v1:GetAreaFuelStationsRequest provider="ep1" prices="true">
         <v1:area>
            <mod:center ellipsoid="false">
                 <v1:latitude>49.8385</v1:latitude>
                 <v1:longitude>8.5014</v1:longitude>
            </mod:center>
            <mod:radius>10</mod:radius>
         </v1:area>
      </v1:GetAreaFuelStationsRequest>
   </soapenv:Body>
</soapenv:Envelope>

任何人都能看出这里有什么问题? 我已经设定

elementFormDefault="qualified"

但没有奏效。

Answer 1:

该错误消息有一个关键的线索:

CVC-复type.2.4.a:无效含量被发现开始元素“V1:纬度”。 其中一个“{‘ http://schemas.domain.com/wsdl/fuelprice/v1/model ’:纬度}”的预期。

请注意, targetNamespace的XSD的,

targetNamespace="http://schemas.domain.com/wsdl/fuelprice/v1/model"

通过命名空间前缀的声明有异议的,

xmlns:v1="http://schemas.domain.com/wsdl/fuelprice/v1"

使用latitude在请求:

 <v1:latitude>49.8385</v1:latitude>

使它们匹配,以消除你的错误。



Answer 2:

我所做的得到它的工作:

  1. 我导入WSDL中的SOAP /信封架构
  2. 我请求体元件,并从它创建的文档作为文档根
  3. 我加入到主体元件的皂/信封名称空间


文章来源: validating SOAP-Request with a SOAPHandler