主頁(yè) > 知識(shí)庫(kù) > .NET的動(dòng)態(tài)編譯與WS服務(wù)調(diào)用詳解

.NET的動(dòng)態(tài)編譯與WS服務(wù)調(diào)用詳解

熱門(mén)標(biāo)簽:外呼系統(tǒng)費(fèi)用一年 手機(jī)地圖標(biāo)注如何刪除 外呼系統(tǒng)代理品牌 十堰正規(guī)電銷(xiāo)機(jī)器人系統(tǒng) 巫師3為什么地圖標(biāo)注的財(cái)寶沒(méi)有 寧波自動(dòng)外呼系統(tǒng)代理 辦理400電話(huà)證件 怎么給超市做地圖標(biāo)注入駐店 世紀(jì)佳緣地圖標(biāo)注怎么去掉

    動(dòng)態(tài)編譯與WS服務(wù),有關(guān)系么?今天就亂彈一番,如何使用動(dòng)態(tài)編譯動(dòng)態(tài)生成WS服務(wù)調(diào)用的代理類(lèi),然后通過(guò)這個(gè)代理類(lèi)調(diào)用WS服務(wù)。
    首先,動(dòng)態(tài)編譯這玩意在.NET里面是非常簡(jiǎn)單的,實(shí)際上只涉及到兩個(gè)類(lèi)型:CodeDomProvider以及CompilerParameters他們都位于System.CodeDom.Compiler命名空間。
    以下代碼可將源碼動(dòng)態(tài)編譯為一個(gè)程序集:
動(dòng)態(tài)編譯

復(fù)制代碼 代碼如下:

CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
CompilerParameters codeParameters = new CompilerParameters();
codeParameters.GenerateExecutable = false; //編譯為dll,如果為true則編譯為exe
codeParameters.GenerateInMemory = true; //編譯后的程序集保存到內(nèi)存中
StringBuilder code = new StringBuilder();
//此處構(gòu)造源代碼
CompilerResults results = provider.CompileAssemblyFromSource(codeParameters, code.ToString());
Assembly assembly = null; //動(dòng)態(tài)編譯生成的程序集
if (!results.Errors.HasErrors)
{
    assembly = results.CompiledAssembly;
}

    獲得assembly后,隨后我們即可以通過(guò)反射獲取程序集里面的類(lèi)型,然后實(shí)例化,調(diào)用類(lèi)型方法…
    不過(guò)在此之前,我們得構(gòu)造WS服務(wù)的代理類(lèi),它是什么樣子的呢?我們使用WCF框架,創(chuàng)建服務(wù)代理類(lèi)也是十分簡(jiǎn)單的,常見(jiàn)的代理類(lèi)結(jié)構(gòu)如下:
服務(wù)調(diào)用代理類(lèi)
復(fù)制代碼 代碼如下:

[ServiceContract(Namespace="https://www.jb51.net/")]
public interface TestService
{
    [OperationContract(Action = "https://www.jb51.net/HelloWorld", ReplyAction = "https://www.jb51.net/HelloWorldResponse")]
    string HelloWorld();
}
public class TestServiceClient : ClientBaseTestService>, TestService
{
    public TestServiceClient(Binding binding, EndpointAddress address) :
        base(binding, address)
    {
    }
    public string HelloWorld()
    {
        return base.Channel.HelloWorld();
    }
}

    所以,我們要?jiǎng)討B(tài)構(gòu)造出代理類(lèi)源碼,應(yīng)該知道服務(wù)的命名空間、服務(wù)方法的Action地址、ReplyAction地址,當(dāng)然還有服務(wù)方法的名稱(chēng),返回類(lèi)型,參數(shù)列表。這里,我們省略掉服務(wù)方法的參數(shù)列表,構(gòu)造代理類(lèi),實(shí)際上就是一個(gè)字符串組裝的問(wèn)題,先創(chuàng)建一個(gè)類(lèi)型,用于保存構(gòu)造代理類(lèi)所要用到的參數(shù):

服務(wù)代理類(lèi)構(gòu)造參數(shù)

復(fù)制代碼 代碼如下:

public class WebServiceParamaters
{
    public string address;
    public string Address
    {
        get { return address; }
        set
        {
            address = value;
        }
    }
    private string serviceNamespace;
    public string ServiceNamespace
    {
        get { return serviceNamespace; }
        set
        {
            serviceNamespace = value;
        }
    }
   private string methodAction;
    public string MethodAction
    {
        get { return methodAction; }
        set
        {
            methodAction = value;
        }
    }
    private string methodReplyAction;
    public string MethodReplyAction
    {
        get { return methodReplyAction; }
        set
        {
            methodReplyAction = value;
        }
    }
    private string methodName;
    public string MethodName
    {
        get { return methodName; }
        set
        {
            methodName = value;
        }
    }
    private string returnType;
    public string ReturnType
    {
        get { return returnType; }
        set
        {
            returnType = value;
        }
    }
}

 好,現(xiàn)在我們只需要構(gòu)造出代理類(lèi)源碼,然后動(dòng)態(tài)編譯出代理類(lèi)的程序集,最后通過(guò)反射調(diào)用服務(wù)方法:
WebServiceProxyCreator
復(fù)制代碼 代碼如下:

public class WebServiceProxyCreator
{
    public Object WebServiceCaller(WebServiceParamaters parameters)
    {
        CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
        CompilerParameters codeParameters = new CompilerParameters();
        codeParameters.GenerateExecutable = false;
        codeParameters.GenerateInMemory = true;
        StringBuilder code = new StringBuilder();
        CreateProxyCode(code, parameters);
codeParameters.ReferencedAssemblies.Add("System.dll");
codeParameters.ReferencedAssemblies.Add("System.ServiceModel.dll");
        CompilerResults results = provider.CompileAssemblyFromSource(codeParameters, code.ToString());
        Assembly assembly = null;
        if (!results.Errors.HasErrors)
        {
            assembly = results.CompiledAssembly;
        }
        Type clientType = assembly.GetType("RuntimeServiceClient");
       ConstructorInfo ci = clientType.GetConstructor(new Type[] { typeof(Binding), typeof(EndpointAddress) });
        BasicHttpBinding binding = new BasicHttpBinding(); //只演示傳統(tǒng)的WebService調(diào)用
        EndpointAddress address = new EndpointAddress(parameters.address);
        Object client = ci.Invoke(new object[] { binding, address });
        MethodInfo mi = clientType.GetMethod(parameters.MethodName);
        Object result = mi.Invoke(client, null);
        mi = clientType.GetMethod("Close"); //關(guān)閉代理
        mi.Invoke(client, null);
        return result;
   }
    public static void CreateProxyCode(StringBuilder code, WebServiceParamaters parameters)
    {
        code.AppendLine("using System;");
        code.AppendLine("using System.ServiceModel;");
        code.AppendLine("using System.ServiceModel.Channels;");
        code.Append(@"[ServiceContract(");
        if (!String.IsNullOrEmpty(parameters.ServiceNamespace))
        {
            code.Append("Namespace=\"").Append(parameters.ServiceNamespace).Append("\"");
        }
        code.AppendLine(")]");
        code.AppendLine("public interface IRuntimeService");
        code.AppendLine("{");
        code.Append("[OperationContract(");
        if (!String.IsNullOrEmpty(parameters.MethodAction))
        {
            code.Append("Action=\"").Append(parameters.MethodAction).Append("\"");
            if (!String.IsNullOrEmpty(parameters.MethodReplyAction))
            {
                code.Append(", ");
            }
        }
        if (!String.IsNullOrEmpty(parameters.MethodReplyAction))
        {
            code.Append("ReplyAction=\"").Append(parameters.MethodReplyAction).Append("\"");
        }
        code.AppendLine(")]");
        code.Append(parameters.ReturnType).Append(" ");
        code.Append(parameters.MethodName).AppendLine("();");
        code.AppendLine("}");
        code.AppendLine();
        code.AppendLine("public class RuntimeServiceClient : ClientBaseIRuntimeService>, IRuntimeService");
        code.AppendLine("{");
        code.AppendLine("public RuntimeServiceClient(Binding binding, EndpointAddress address) :base(binding, address)");
        code.AppendLine("{");
        code.AppendLine("}");
        code.Append("public ").Append(parameters.ReturnType).Append(" ");
        code.Append(parameters.MethodName).AppendLine("()");
        code.AppendLine("{");
        code.Append("return base.Channel.").Append(parameters.MethodName).AppendLine("();");
        code.AppendLine("}");
        code.AppendLine("}");
    }
}

  注意,紅色部分,由于代理類(lèi)使用了WCF框架,所以編譯時(shí)我們需要添加System.ServiceModel的引用,當(dāng)然System.dll肯定是必須的,這里要注意,System.ServiceModel.dll應(yīng)該保存到應(yīng)用程序目錄,否則動(dòng)態(tài)編譯時(shí)會(huì)引發(fā)異常,很簡(jiǎn)單,在工程引用中添加System.ServiceModel的引用,然后在屬性中將拷貝到本地屬性設(shè)置為true。
   到此,我們就可以直接通過(guò)傳入的服務(wù)地址、服務(wù)方法名稱(chēng)以及相關(guān)的命名空間,即可調(diào)用服務(wù)(盡管我們只能調(diào)用無(wú)參服務(wù),并且盡管我們也只能調(diào)用使用BasicHttpBinding綁定的服務(wù),這些限制的原因是…我懶,好吧,相信只要經(jīng)過(guò)一點(diǎn)改動(dòng)即可去掉這些限制)。
   可惜,我們的程序還很傻:每次調(diào)用服務(wù)都需要去生成代碼、編譯、創(chuàng)建代理實(shí)例最后再調(diào)用,嗯…那就緩存吧:
  在WebServiceParameters類(lèi)中重寫(xiě)GetHashCode方法:
復(fù)制代碼 代碼如下:

 public override int GetHashCode()
  {
      return String.Concat(serviceNamespace, methodAction, methodReplyAction, methodName, returnType).GetHashCode();
  }


然后在WebServiceProxyCreator中加入緩存機(jī)制:
復(fù)制代碼 代碼如下:

  public class WebServiceProxyCreator
   {
       private static Dictionaryint, Type> proxyTypeCatch = new Dictionaryint, Type>();

       public Object WebServiceCaller(WebServiceParamaters parameters)
       {
           int key = parameters.GetHashCode();
           Type clientType = null;
           if (proxyTypeCatch.ContainsKey(key))
          {
              clientType = proxyTypeCatch[key];
              Debug.WriteLine("使用緩存");
          }
          else
          {

              CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
              CompilerParameters codeParameters = new CompilerParameters();
              codeParameters.GenerateExecutable = false;
              codeParameters.GenerateInMemory = true;

              StringBuilder code = new StringBuilder();
              CreateProxyCode(code, parameters);

              codeParameters.ReferencedAssemblies.Add("System.dll");
              codeParameters.ReferencedAssemblies.Add("System.ServiceModel.dll");

              CompilerResults results = provider.CompileAssemblyFromSource(codeParameters, code.ToString());
              Assembly assembly = null;
              if (!results.Errors.HasErrors)
              {
                  assembly = results.CompiledAssembly;
              }

              clientType = assembly.GetType("RuntimeServiceClient");

              proxyTypeCatch.Add(key, clientType);
          }
          ConstructorInfo ci = clientType.GetConstructor(new Type[] { typeof(Binding), typeof(EndpointAddress) });
          BasicHttpBinding binding = new BasicHttpBinding(); //只演示傳統(tǒng)的WebService調(diào)用
          EndpointAddress address = new EndpointAddress(parameters.address);
          Object client = ci.Invoke(new object[] { binding, address });

          MethodInfo mi = clientType.GetMethod(parameters.MethodName);
          Object result = mi.Invoke(client, null);
          mi = clientType.GetMethod("Close"); //關(guān)閉代理
          mi.Invoke(client, null);
          return result;
      }

 }

您可能感興趣的文章:
  • 詳細(xì)介紹.NET中的動(dòng)態(tài)編譯技術(shù)
  • 使用 C# 動(dòng)態(tài)編譯代碼和執(zhí)行的代碼
  • C# 動(dòng)態(tài)編譯、動(dòng)態(tài)執(zhí)行、動(dòng)態(tài)調(diào)試
  • .NET 動(dòng)態(tài)編譯
  • c#動(dòng)態(tài)編譯執(zhí)行對(duì)象方法示例 運(yùn)用映射機(jī)制創(chuàng)建對(duì)象

標(biāo)簽:天門(mén) 嘉興 通遼 山西 牡丹江 景德鎮(zhèn) 泰州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.NET的動(dòng)態(tài)編譯與WS服務(wù)調(diào)用詳解》,本文關(guān)鍵詞  .NET,的,動(dòng)態(tài),編譯,與,服務(wù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.NET的動(dòng)態(tài)編譯與WS服務(wù)調(diào)用詳解》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于.NET的動(dòng)態(tài)編譯與WS服務(wù)調(diào)用詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章