Как использовать отражение в C #, чтобы перечислить методы .asmx - PullRequest
1 голос
/ 09 июля 2010

учитывая URL-адрес, который ссылается на asmx, как мне показать все имена их методов?if assembly = "http: //.../something/something.asmx", и я пытался отобразить имена методов этого сервиса, что мне делать сейчас, когда я зашел так далеко?я не могу найти решение среди сотен примеров, которые я смотрел на

   public TestReflection(string assembly)
    {
        Assembly testAssembly = Assembly.LoadFrom(assembly);
        Type sType = testAssembly.GetType();

        MethodInfo[] methodInfos = typeof(Object).GetMethods();
        foreach (MethodInfo methodInfo in methodInfos)
        {
            Console.WriteLine(methodInfo.Name);
        }
    }

Ответы [ 6 ]

1 голос
/ 16 июля 2010

так что я понял, как получить то, что я хотел, что-то вроде этого

[SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)]
internal static void LoadWebService(string webServiceAsmxUrl)
{
    ParseUrl(webServiceAsmxUrl);
    System.Net.WebClient client = new System.Net.WebClient();
    // Connect To the web service
    System.IO.Stream stream = client.OpenRead(webServiceAsmxUrl + "?wsdl");
    // Now read the WSDL file describing a service.
    ServiceDescription description = ServiceDescription.Read(stream);
    ///// LOAD THE DOM /////////
    // Initialize a service description importer.
    ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
    importer.ProtocolName = "Soap12"; // Use SOAP 1.2.
    importer.AddServiceDescription(description, null, null);
    // Generate a proxy client.
    importer.Style = ServiceDescriptionImportStyle.Client;
    // Generate properties to represent primitive values.
    importer.CodeGenerationOptions = System.Xml.Serialization.CodeGenerationOptions.GenerateProperties;
    // Initialize a Code-DOM tree into which we will import the service.
    CodeNamespace nmspace = new CodeNamespace();
    CodeCompileUnit unit1 = new CodeCompileUnit();
    unit1.Namespaces.Add(nmspace);
    // Import the service into the Code-DOM tree. This creates proxy code that uses the service.
    ServiceDescriptionImportWarnings warning = importer.Import(nmspace, unit1);
    if (warning == 0) // If zero then we are good to go
    {
        // Generate the proxy code
        CodeDomProvider provider1 = CodeDomProvider.CreateProvider("CSharp");
        // Compile the assembly proxy with the appropriate references
        string[] assemblyReferences = new string[5] { "System.dll", "System.Web.Services.dll", "System.Web.dll", "System.Xml.dll", "System.Data.dll" };
        CompilerParameters parms = new CompilerParameters(assemblyReferences);
        CompilerResults results = provider1.CompileAssemblyFromDom(parms, unit1);
        // Check For Errors
        if (results.Errors.Count > 0)
        {
            foreach (CompilerError oops in results.Errors)
            {
                System.Diagnostics.Debug.WriteLine("========Compiler error============");
                System.Diagnostics.Debug.WriteLine(oops.ErrorText);
            }
            Console.WriteLine("Compile Error Occured calling webservice. Check Debug ouput window.");
        }
        // Finally, add the web service method to our list of methods to test
        //--------------------------------------------------------------------------------------------
        object service = results.CompiledAssembly.CreateInstance(serviceName);
        Type types = service.GetType();
        List<MethodInfo> listMethods = types.GetMethods().ToList();
}
}
1 голос
/ 09 июля 2010

Вам нужно искать метод, украшенный атрибутом [WebMethod] в классах, которые наследуются от System.Web.Services.WebService.

Код будет выглядеть примерно так (не проверено):

public TestReflection(string assembly)
{
    Assembly testAssembly = Assembly.LoadFrom(assembly); // or .LoadFile() here
    foreach (Type type in testAssembly.GetTypes())
    {
        if (type.IsSubclassOf(typeof(System.Web.Services.WebService)))
        {
            foreach (MethodInfo methodInfo in type.GetMethods())
            {
                if (Attribute.GetCustomAttribute(methodInfo, typeof(System.Web.Services.WebMethodAttribute)) != null)
                {
                    Console.WriteLine(methodInfo.Name);
                }
            }
        }
    }
}
1 голос
/ 09 июля 2010

Знаете, если не принимать во внимание, вы можете запросить WSDL веб-службы, чтобы получить список методов. Это может упростить вашу проблему. Если вы настроили использование отражения, вам нужно найти тип в сборке и получить методы, используя другие методы, описанные в других ответах здесь.

1 голос
/ 09 июля 2010

Попробуйте это:

public TestReflection(string assembly)
{
    Assembly testAssembly = Assembly.LoadFrom(assembly);
    Type sType = testAssembly.GetType("NamespaceOfYourClass.NameOfYourClassHere", true, true);

    MethodInfo[] methodInfos = sType.GetMethods();
    foreach (MethodInfo methodInfo in methodInfos)
    {
        Console.WriteLine(methodInfo.Name);
    }
}

Идея состоит в том, что в исходном коде вы пытаетесь получить методы с помощью typeof(Object), который будет извлекать методы типа Object,это не то, что вам нужно.

Вам нужно знать, в каком классе находятся методы, которые вы пытаетесь получить. Если вы этого не знаете, замените testAssembly.GetType(... на testAssembly.GetTypes() и выполните итерацию по всемтипы и получение методов для каждого из них.

1 голос
/ 09 июля 2010
typeof(Object).GetMethods()

вы запрашиваете все методы типа object

, вам нужно вызвать GetMethods () для типа, для которого вы хотите получить методы.

0 голосов
/ 09 июля 2010

Вставьте http://.../something/something.asmx в ваш браузер и он выдаст вам список всех методов и его параметров?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...