C# 中的 SAP Web 服务问题

问题描述

更新: 我有来自 SAP Web 服务的 WSDL 文件,它在 Visual Studio 代码中作为连接服务导入,如下所示:

def rucklogs(request):

        if request.method == 'POST':
                form = RuckLogsModelForm(request.POST)
                if form.is_valid():
                        ruck_miles = form.cleaned_data.get("ruck_miles")
                        coupon = form.cleaned_data.get("coupon")
                        pt = form.cleaned_data.get("pt")
                        ruck_WO_only = form.cleaned_data.get("ruck_WO_only")
                        if (coupon):
                                form.cleaned_data['coupon_multiplyer'] = ruck_miles
                                print("Coupon was selected")
                        if (pt):
                                form.cleaned_data['pt_multiplyer'] = ruck_miles
                                print("PT was selected.")
                        if (ruck_WO_only):
                                form.cleaned_data['ruck_workout_multiplyer'] = 3
                        u = form.save()
                        users = ruck_logs.objects.all()
                        return render(request,'datalogger/display.html',{'users': users})
        else:
                form_class = RuckLogsModelForm
        return render(request,'datalogger/rucklogs.html',{
                'form': form_class,})

重要更新:

当我将 wsdl 添加为连接服务时,出现此错误:

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace SAPWebService
{
          [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.ServiceModel.ServiceContractAttribute(Namespace="urn:sap-com:document:sap:rfc:functions",ConfigurationName="ServiceReference1.ZMM_SIF_KARAKTERISTIKE_MAT")]
    public interface ZMM_SIF_KARAKTERISTIKE_MAT
    {
        
        [System.ServiceModel.OperationContractAttribute(Action="urn:sap-com:document:sap:rfc:functions:ZMM_SIF_KARAKTERISTIKE_MAT:ZMM_SIF_KARAKTE" +
            "RISTIKE_MATRequest",ReplyAction="urn:sap-com:document:sap:rfc:functions:ZMM_SIF_KARAKTERISTIKE_MAT:ZMM_SIF_KARAKTE" +
            "RISTIKE_MATResponse")]
        [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
        System.Threading.Tasks.Task<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse1> ZMM_SIF_KARAKTERISTIKE_MATAsync(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest request);
    }
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true,Namespace="urn:sap-com:document:sap:rfc:functions")]
    public partial class ZMM_SIF_KARAKTERISTIKE_MAT1
    {
    }
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:sap-com:document:sap:rfc:functions")]
    public partial class ZMM_KARAKTERISTIKE_MAT_LINE
    {
        
        private string kLASAField;
        
        private string kARAKTERISTIKAField;
        
        private string vREDNOSTField;
        
        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified,Order=0)]
        public string KLASA
        {
            get
            {
                return this.kLASAField;
            }
            set
            {
                this.kLASAField = value;
            }
        }
        
        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified,Order=1)]
        public string KARAKTERISTIKA
        {
            get
            {
                return this.kARAKTERISTIKAField;
            }
            set
            {
                this.kARAKTERISTIKAField = value;
            }
        }
        
        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified,Order=2)]
        public string VREDNOST
        {
            get
            {
                return this.vREDNOSTField;
            }
            set
            {
                this.vREDNOSTField = value;
            }
        }
    }
    
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil",Namespace="urn:sap-com:document:sap:rfc:functions")]
    public partial class ZMM_SIF_KARAKTERISTIKE_MATResponse
    {
        
        private ZMM_KARAKTERISTIKE_MAT_LINE[] kARAKTERISTIKAField;
        
        /// <remarks/>
        [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified,Order=0)]
        [System.Xml.Serialization.XmlArrayItemAttribute("item",Form=System.Xml.Schema.XmlSchemaForm.Unqualified,IsNullable=false)]
        public ZMM_KARAKTERISTIKE_MAT_LINE[] KARAKTERISTIKA
        {
            get
            {
                return this.kARAKTERISTIKAField;
            }
            set
            {
                this.kARAKTERISTIKAField = value;
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
    public partial class ZMM_SIF_KARAKTERISTIKE_MATRequest
    {
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="urn:sap-com:document:sap:rfc:functions",Order=0)]
        public SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT;
        
        public ZMM_SIF_KARAKTERISTIKE_MATRequest()
        {
        }
        
        public ZMM_SIF_KARAKTERISTIKE_MATRequest(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT)
        {
            this.ZMM_SIF_KARAKTERISTIKE_MAT = ZMM_SIF_KARAKTERISTIKE_MAT;
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    [System.ServiceModel.MessageContractAttribute(IsWrapped=false)]
    public partial class ZMM_SIF_KARAKTERISTIKE_MATResponse1
    {
        
        [System.ServiceModel.MessageBodyMemberAttribute(Namespace="urn:sap-com:document:sap:rfc:functions",Order=0)]
        public SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse ZMM_SIF_KARAKTERISTIKE_MATResponse;
        
        public ZMM_SIF_KARAKTERISTIKE_MATResponse1()
        {
        }
        
        public ZMM_SIF_KARAKTERISTIKE_MATResponse1(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse ZMM_SIF_KARAKTERISTIKE_MATResponse)
        {
            this.ZMM_SIF_KARAKTERISTIKE_MATResponse = ZMM_SIF_KARAKTERISTIKE_MATResponse;
        }
    }
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    public interface ZMM_SIF_KARAKTERISTIKE_MATChannel : SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT,System.ServiceModel.IClientChannel
    {
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    public partial class ZMM_SIF_KARAKTERISTIKE_MATClient : System.ServiceModel.ClientBase<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT>,SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT
    {
        
        public ZMM_SIF_KARAKTERISTIKE_MATClient(System.ServiceModel.Channels.Binding binding,System.ServiceModel.EndpointAddress remoteAddress) : 
                base(binding,remoteAddress)
        {
        }
        
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        System.Threading.Tasks.Task<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse1> SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT.ZMM_SIF_KARAKTERISTIKE_MATAsync(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest request)
        {
            return base.Channel.ZMM_SIF_KARAKTERISTIKE_MATAsync(request);
        }
        
        public System.Threading.Tasks.Task<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse1> ZMM_SIF_KARAKTERISTIKE_MATAsync(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT)
        {
            SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest inValue = new SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest();
            inValue.ZMM_SIF_KARAKTERISTIKE_MAT = ZMM_SIF_KARAKTERISTIKE_MAT;
            return ((SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT)(this)).ZMM_SIF_KARAKTERISTIKE_MATAsync(inValue);
        }
        
        public virtual System.Threading.Tasks.Task OpenAsync()
        {
            return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null,null),new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndOpen));
        }
        
        public virtual System.Threading.Tasks.Task CloseAsync()
        {
            return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginClose(null,new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndClose));
        }
    }
}

我尝试在如下方法中从 C# 使用它:

Cannot import wsdl:port
Detail: There was an error importing a wsdl:binding that the wsdl:port is dependent on.
XPath to wsdl:binding: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:binding[@name='250_soap12']
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:service[@name='ZMM_SIF_KARAKTERISTIKE_MAT']/wsdl:port[@name='250_soap12']
Cannot import wsdl:binding
Detail: Name cannot begin with the '2' character,hexadecimal value 0x32.
Parameter name: name
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:binding[@name='250_soap12']
Cannot import wsdl:port
Detail: There was an error importing a wsdl:binding that the wsdl:port is dependent on.
XPath to wsdl:binding: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:binding[@name='250']
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:service[@name='ZMM_SIF_KARAKTERISTIKE_MAT']/wsdl:port[@name='250']
Cannot import wsdl:binding
Detail: Name cannot begin with the '2' character,hexadecimal value 0x32.
Parameter name: name
XPath to Error Source: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:binding[@name='250']
The optional WSDL extension element 'Policy' from namespace 'http://schemas.xmlsoap.org/ws/2004/09/policy' was not handled.
XPath: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:portType[@name='ZMM_SIF_KARAKTERISTIKE_MAT']/wsdl:operation[@name='ZMM_SIF_KARAKTERISTIKE_MAT']
The optional WSDL extension element 'Policy' from namespace 'http://schemas.xmlsoap.org/ws/2004/09/policy' was not handled.
XPath: //wsdl:definitions[@targetNamespace='urn:sap-com:document:sap:rfc:functions']/wsdl:portType[@name='ZMM_SIF_KARAKTERISTIKE_MAT']





    

注意:我使用了 public class SAPDemoApi : ISAPDemoApi { public readonly string serviceUrl = "http://GIRKV06S04.gir.local:8000/sap/bc/srt/rfc/sap/zmm_sif_karakteristike_mat/250/zmm_sif_karakteristike_mat/250"; public readonly EndpointAddress endpointAddress; public readonly BasicHttpBinding basicHttpBinding; public SAPDemoApi() { endpointAddress = new EndpointAddress(serviceUrl); basicHttpBinding = new BasicHttpBinding(endpointAddress.Uri.Scheme.ToLower() == "http" ? BasicHttpSecurityMode.None : BasicHttpSecurityMode.Transport); //Please set the time accordingly,this is only for demo basicHttpBinding.OpenTimeout = TimeSpan.MaxValue; basicHttpBinding.CloseTimeout = TimeSpan.MaxValue; basicHttpBinding.ReceiveTimeout = TimeSpan.MaxValue; basicHttpBinding.SendTimeout = TimeSpan.MaxValue; } public async Task<ZMM_SIF_KARAKTERISTIKE_MATResponse> GetData() { var client = await GetInstanceAsync(); var response = await client.ZMM_SIF_KARAKTERISTIKE_MATAsync(new ZMM_SIF_KARAKTERISTIKE_MATClient(basicHttpBinding,endpointAddress)); return response.ZMM_SIF_KARAKTERISTIKE_MATResponse; } public async Task<ZMM_SIF_KARAKTERISTIKE_MATClient> GetInstanceAsync() { return await Task.Run(() => new ZMM_SIF_KARAKTERISTIKE_MATClient(basicHttpBinding,endpointAddress)); } } ,因为我在向 Web 服务发送请求时从 SoapUI 获取了它(之前我已将 WSDL 文件导入 SoapUI)。

当我尝试调用它 http://GIRKV06S04.gir.local:8000/sap/bc/srt/rfc/sap/zmm_sif_karakteristike_mat/250/zmm_sif_karakteristike_mat/250 时出现错误: var output = await sapDemoApi.GetData();

更新

    System.InvalidOperationException: There was an error reflecting 'ZMM_SIF_KARAKTERISTIKE_MAT'. ---> System.NotSupportedException: Cannot serialize interface SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT. at System.Xml.Serialization.TypeDesc.CheckSupported() at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type,MemberInfo source,Boolean directReference,Boolean throwOnError)

解决方法

我在您的类中添加了 Envelope 和 Body 以使代码正常工作。我使用 Xml Serialize 来测试代码并注释掉不需要反序列化对象的内容。你需要修改你的代码来做类似于我所做的

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
namespace ConsoleApplication177
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            string xml = File.ReadAllText(FILENAME);
            StringReader sReader = new StringReader(xml);
            XmlReader xReader = XmlReader.Create(sReader);
            XmlSerializer serializer = new XmlSerializer(typeof(Envelope));
            Envelope envelope = (Envelope)serializer.Deserialize(xReader);

        }
    }
    [XmlRoot(ElementName = "Envelope",Namespace = "http://schemas.xmlsoap.org/soap/envelope/")]
    public class Envelope
    {
        [XmlElement(Namespace = "http://schemas.xmlsoap.org/soap/envelope/")]
        public Body Body { get; set; }
    }

    public class Body
    {
        [XmlElement(ElementName = "ZMM_SIF_KARAKTERISTIKE_MATResponse",Namespace = "urn:sap-com:document:sap:rfc:functions")]
        public ZMM_SIF_KARAKTERISTIKE_MATResponse ZMM_SIF_KARAKTERISTIKE_MATResponse { get; set; }
    }

    ///// <remarks/>
    //[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    //[System.Diagnostics.DebuggerStepThroughAttribute()]
    //[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true,Namespace = "urn:sap-com:document:sap:rfc:functions")]
    //public partial class ZMM_SIF_KARAKTERISTIKE_MAT1
    //{
    //}

    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace = "urn:sap-com:document:sap:rfc:functions")]
    public partial class ZMM_KARAKTERISTIKE_MAT_LINE
    {

        private string kLASAField;

        private string kARAKTERISTIKAField;

        private string vREDNOSTField;

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified,Order = 0)]
        public string KLASA
        {
            get
            {
                return this.kLASAField;
            }
            set
            {
                this.kLASAField = value;
            }
        }

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified,Order = 1)]
        public string KARAKTERISTIKA
        {
            get
            {
                return this.kARAKTERISTIKAField;
            }
            set
            {
                this.kARAKTERISTIKAField = value;
            }
        }

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified,Order = 2)]
        public string VREDNOST
        {
            get
            {
                return this.vREDNOSTField;
            }
            set
            {
                this.vREDNOSTField = value;
            }
        }
    }

    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true,Namespace = "urn:sap-com:document:sap:rfc:functions")]
    public class ZMM_SIF_KARAKTERISTIKE_MATResponse
    {

        private ZMM_KARAKTERISTIKE_MAT_LINE[] kARAKTERISTIKAField;

        /// <remarks/>
        [System.Xml.Serialization.XmlArrayAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified,Order = 0)]
        [System.Xml.Serialization.XmlArrayItemAttribute("item",Form = System.Xml.Schema.XmlSchemaForm.Unqualified,IsNullable = false)]
        public ZMM_KARAKTERISTIKE_MAT_LINE[] KARAKTERISTIKA
        {
            get
            {
                return this.kARAKTERISTIKAField;
            }
            set
            {
                this.kARAKTERISTIKAField = value;
            }
        }
    }

    //[System.Diagnostics.DebuggerStepThroughAttribute()]
    //[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    //[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    //[System.ServiceModel.MessageContractAttribute(IsWrapped = false)]
    //public partial class ZMM_SIF_KARAKTERISTIKE_MATRequest
    //{

    //    [System.ServiceModel.MessageBodyMemberAttribute(Namespace = "urn:sap-com:document:sap:rfc:functions",Order = 0)]
    //    public SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT;

    //    public ZMM_SIF_KARAKTERISTIKE_MATRequest()
    //    {
    //    }

    //    public ZMM_SIF_KARAKTERISTIKE_MATRequest(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT)
    //    {
    //        this.ZMM_SIF_KARAKTERISTIKE_MAT = ZMM_SIF_KARAKTERISTIKE_MAT;
    //    }
    //}

    //[System.Diagnostics.DebuggerStepThroughAttribute()]
    //[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    //[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    //[System.ServiceModel.MessageContractAttribute(IsWrapped = false)]
    //public partial class ZMM_SIF_KARAKTERISTIKE_MATResponse1
    //{

    //    [System.ServiceModel.MessageBodyMemberAttribute(Namespace = "urn:sap-com:document:sap:rfc:functions",Order = 0)]
    //    public SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse ZMM_SIF_KARAKTERISTIKE_MATResponse;

    //    public ZMM_SIF_KARAKTERISTIKE_MATResponse1()
    //    {
    //    }

    //    public ZMM_SIF_KARAKTERISTIKE_MATResponse1(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse ZMM_SIF_KARAKTERISTIKE_MATResponse)
    //    {
    //        this.ZMM_SIF_KARAKTERISTIKE_MATResponse = ZMM_SIF_KARAKTERISTIKE_MATResponse;
    //    }
    //}

    //[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    //public interface ZMM_SIF_KARAKTERISTIKE_MATChannel : SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT,System.ServiceModel.IClientChannel
    //{
    //}

    //[System.Diagnostics.DebuggerStepThroughAttribute()]
    //[System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil","2.0.2")]
    //public partial class ZMM_SIF_KARAKTERISTIKE_MATClient : System.ServiceModel.ClientBase<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT>,SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT
    //{

    //    public ZMM_SIF_KARAKTERISTIKE_MATClient(System.ServiceModel.Channels.Binding binding,System.ServiceModel.EndpointAddress remoteAddress) :
    //        base(binding,remoteAddress)
    //    {
    //    }

    //    [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    //    System.Threading.Tasks.Task<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse1> SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT.ZMM_SIF_KARAKTERISTIKE_MATAsync(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest request)
    //    {
    //        return base.Channel.ZMM_SIF_KARAKTERISTIKE_MATAsync(request);
    //    }

    //    public System.Threading.Tasks.Task<SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATResponse1> ZMM_SIF_KARAKTERISTIKE_MATAsync(SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT ZMM_SIF_KARAKTERISTIKE_MAT)
    //    {
    //        SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest inValue = new SAPWebService.ZMM_SIF_KARAKTERISTIKE_MATRequest();
    //        inValue.ZMM_SIF_KARAKTERISTIKE_MAT = ZMM_SIF_KARAKTERISTIKE_MAT;
    //        return ((SAPWebService.ZMM_SIF_KARAKTERISTIKE_MAT)(this)).ZMM_SIF_KARAKTERISTIKE_MATAsync(inValue);
    //    }

    //    public virtual System.Threading.Tasks.Task OpenAsync()
    //    {
    //        return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null,null),new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndOpen));
    //    }

    //    public virtual System.Threading.Tasks.Task CloseAsync()
    //    {
    //        return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginClose(null,new System.Action<System.IAsyncResult>(((System.ServiceModel.ICommunicationObject)(this)).EndClose));
    //    }
    //}
   
}

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...