2009-04-28 86 views
0

背景: 我正在使用ASP.NET 2.0创建Web服务。此Web服务为现有Web表单提供了另一个接口,其中包含从数据库动态填充的选择框。将WSDL枚举映射为ASP.NET webservice中的字符串

我的第一份Web服务草案接受了每一个这样的字符串,然后确保它是有效的,如果不是这样的话就抛出一个错误。然而,Web服务的使用者询问,因为可能的值不可能经常改变,所以我们在WSDL中提供了枚举值。

我不愿意用我的Web服务代码创建一个枚举,所以我改变了生成的WSDL文件,并指示我的Web服务使用它而不是检查我的类来生成它。

WSDL:

<?xml version="1.0" encoding="utf-8"?> 
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://example.org/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://example.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> 
    <wsdl:types> 
    <s:schema elementFormDefault="qualified" targetNamespace="http://example.org/"> 
     <s:element name="MyMethod"> 
     <s:complexType> 
      <s:sequence> 
      <s:element minOccurs="0" maxOccurs="1" name="myClass" type="tns:MyClass" /> 
      </s:sequence> 
     </s:complexType> 
     </s:element> 
     <s:complexType name="MyClass"> 
     <s:sequence> 
      <s:element minOccurs="0" maxOccurs="1" name="MyString" type="tns:MyStringPossibleValues" /> 
     </s:sequence> 
     </s:complexType> 
     <s:element name="MyMethodResponse"> 
     <s:complexType /> 
     </s:element> 
     <s:simpleType name="MyStringPossibleValues"> 
     <s:restriction base="s:string"> 
      <s:enumeration value="alpha" /> 
      <s:enumeration value="bravo" /> 
     </s:restriction> 
     </s:simpleType> 
    </s:schema> 
    </wsdl:types> 
    <wsdl:message name="MyMethodSoapIn"> 
    <wsdl:part name="parameters" element="tns:MyMethod" /> 
    </wsdl:message> 
    <wsdl:message name="MyMethodSoapOut"> 
    <wsdl:part name="parameters" element="tns:MyMethodResponse" /> 
    </wsdl:message> 
    <wsdl:portType name="ExternalAccessSoap"> 
    <wsdl:operation name="MyMethod"> 
     <wsdl:input message="tns:MyMethodSoapIn" /> 
     <wsdl:output message="tns:MyMethodSoapOut" /> 
    </wsdl:operation> 
    </wsdl:portType> 
    <wsdl:portType name="ExternalAccessHttpGet" /> 
    <wsdl:portType name="ExternalAccessHttpPost" /> 
    <wsdl:binding name="ExternalAccessSoap" type="tns:ExternalAccessSoap"> 
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> 
    <wsdl:operation name="MyMethod"> 
     <soap:operation soapAction="http://example.org/MyMethod" style="document" /> 
     <wsdl:input> 
     <soap:body use="literal" /> 
     </wsdl:input> 
     <wsdl:output> 
     <soap:body use="literal" /> 
     </wsdl:output> 
    </wsdl:operation> 
    </wsdl:binding> 
    <wsdl:binding name="ExternalAccessSoap12" type="tns:ExternalAccessSoap"> 
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> 
    <wsdl:operation name="MyMethod"> 
     <soap12:operation soapAction="http://example.org/MyMethod" style="document" /> 
     <wsdl:input> 
     <soap12:body use="literal" /> 
     </wsdl:input> 
     <wsdl:output> 
     <soap12:body use="literal" /> 
     </wsdl:output> 
    </wsdl:operation> 
    </wsdl:binding> 
</wsdl:definitions> 

web服务:

namespace Example.Service 
{ 
    [WebService(Namespace = "http://example.org/")] 
    [WebServiceBinding(
     ConformsTo = WsiProfiles.BasicProfile1_1, 
     Location="ExternalAccess.wsdl", 
     Name="ExternalAccessSoap", 
     Namespace = "http://example.org/")] 
    [ToolboxItem(false)] 
    public class ExternalAccess : System.Web.Services.WebService 
    { 
     public class MyClass 
     { 
      public string MyString; 
     } 

     [WebMethod] 
     [SoapDocumentMethod(
      Action = "http://example.org/MyMethod", 
      RequestNamespace = "http://example.org/", 
      Binding="ExternalAccessSoap")] 
     public void MyMethod(MyClass myClass) 
     { 
     } 
    } 
} 

问题: 作为WSDL指定MyString中的列举以及代码中指定的字符串类型,ASP。 NET不管理正确地映射字段。

是否有一个属性可以用来指示反序列化器使用枚举的值填充字符串字段?

问候,

马特

回答

1

已经完成创建SOAP扩展为我做这个的过程中我发现,MyString实际上并没有被发送到我的web服务了。

这是因为此服务的测试应用程序也是在.NET中构建的,并且在构建请求对象时,生成的代理类的MyStringSpecified属性被忽略。这样就阻止了作为SOAP请求一部分发送的枚举值。

当此属性设置为true时,枚举值已成功分配给webservice中的MyString字段。