2009-04-28 73 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字段。