c#通过HttpRequest调用工作流服务而无需添加服务引用

我正在尝试从ASP .NET项目调用工作流服务,而无需向我的asp.net项目添加服务引用。 我找到了一个关于如何调用Web服务而不将其作为服务添加的示例,并且根据我的工作流服务要求对其进行了更改。 是否有可能使其工作?

    public void Execute()
{
    HttpWebRequest request = CreateWebRequest();
    XmlDocument soapEnvelopeXml = new XmlDocument();
    soapEnvelopeXml.LoadXml(@"<?xml version=""1.0"" encoding=""utf-8""?>
        <soap:Envelope xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"">
        <soap:Body>
            <GetData xmlns=""http://tempuri.org/IService/GetData"">
                <string xmlns=""http://schemas.microsoft.com/2003/10/Serialization/"">test1234</string>
            </GetData>
        </soap:Body>
        </soap:Envelope>");


    using (Stream stream = request.GetRequestStream())
    {
        soapEnvelopeXml.Save(stream);
    }

    using (WebResponse response = request.GetResponse())
    {
        using (StreamReader rd = new StreamReader(response.GetResponseStream()))
        {
            string soapResult = rd.ReadToEnd();
            Console.WriteLine(soapResult);
        }
    }
}

public HttpWebRequest CreateWebRequest()
{
    HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(@"http://localhost:3724/Service1.xamlx");
    webRequest.Headers.Add(@"SOAP:Action");
    webRequest.ContentType = "text/xml;charset="utf-8"";
    webRequest.Accept = "text/xml";
    webRequest.Method = "POST";
    return webRequest;
}

我在HttpWebRequest webRequest =(HttpWebRequest)WebRequest.Create(@“http:// localhost:3724 / Service1.xamlx”)上得到一个错误。 错误:内部服务器错误。 任何想法如何使其工作?


早在我没有使用WCF的时候,我曾经提取自动生成的webservice引用代理(又名reference.cs)的代码,以控制我自己的客户端代理类。 结果看起来像以下调用WS的GetRessource方法的类(为可读性而感到遗憾):

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlInclude(typeof(Ressource))]    
[System.Web.Services.WebServiceBindingAttribute(Name = "WSSoap", Namespace = "http:/tempuri.org/Web/WS/WS.asmx")]
public class RemoteManager : System.Web.Services.Protocols.SoapHttpClientProtocol
{
    public RemoteManager() {
        this.Url = "http://localhost/web/WS/WS.asmx";
        if ((this.IsLocalFileSystemWebService(this.Url) == true))
        {
            this.UseDefaultCredentials = true;
            this.useDefaultCredentialsSetExplicitly = false;
        }
        else
        {
            this.useDefaultCredentialsSetExplicitly = true;
        }
    }

    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http:/tempuri.org/Web/WS/WS.asmx/" +
        "GetRessource", RequestElementName = "GetRessource", RequestNamespace = "http:/tempuri.org/Web/WS/WS.asmx", ResponseElementName = "GetRessourceResponse", ResponseNamespace = "http:/tempuri.org/Web/WS/WS.asmx", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    [return: System.Xml.Serialization.XmlElementAttribute("GetRessourceResult")]
    public Ressource GetRessource(int ressId)
    {
        object[] results = this.Invoke("GetRessource", new object[] {
                    ressId});
        return ((Ressource)(results[0]));
    }

    public new string Url
    {
        get
        {
            return base.Url;
        }
        set
        {
            if ((((this.IsLocalFileSystemWebService(base.Url) == true)
                        && (this.useDefaultCredentialsSetExplicitly == false))
                        && (this.IsLocalFileSystemWebService(value) == false)))
            {
                base.UseDefaultCredentials = false;
            }
            base.Url = value;
        }
    }

    private bool useDefaultCredentialsSetExplicitly;        
    public new bool UseDefaultCredentials
    {
        get
        {
            return base.UseDefaultCredentials;
        }
        set
        {
            base.UseDefaultCredentials = value;
            this.useDefaultCredentialsSetExplicitly = true;
        }
    }               
}
链接地址: http://www.djcxy.com/p/95897.html

上一篇: c# Call Workflow Service by HttpRequest without Add Service Reference

下一篇: Default wcf service application has no endpoint defined