In my ASP.NET application, I use the ServiceReferenceCollection to carry a set of WebServices, and in the code-behind, I'm asked to figure out all the public WebMethod(s) and corresponding arguments of the WebServices by using .Net Reflection. However, the ServiceReference class provides only Path information that I can use for reflection, but I don't know how to GetType() from Path.

link|improve this question

Why do you want to use ServiceReferenceCollection? What are you trying to accomplish? – John Saunders Jun 15 '11 at 19:28
We need some features in ScriptManager, and other functions should be avoided as possible. We're referencing the ScriptManager, and develop our own one. – William Choi Jun 16 '11 at 2:28
I mean why are you using it to find out the webmethods and parameters of the services? Don't limit yourself to that just because you need it for ScriptManager. – John Saunders Jun 16 '11 at 14:35
@John, We choose this approach since we'd like to use standard classes as much as possible. But you're right, don't limit ourself. Thanks! – William Choi Jun 17 '11 at 3:38
this particular standard class wasn't designed for that purpose. – John Saunders Jun 17 '11 at 3:40
feedback

1 Answer

up vote 1 down vote accepted

Path is a path to asmx file.

You can just open this file as a text file.

 <%@ WebService
    Language="C#" CodeBehind="MyService.asmx.cs"
    Class="Namespace1.Namepsace2.ClassName" %>

Read it as text and parse out class name for the file.
Once you have the class name you can use reflection to iterate through class methods.

Assumed that:

  • asmx files are accessible
  • web service assembly and types are loaded into app domain
link|improve this answer
@Alex: will the .asmx file necessarily be readable if it's in a different project? How would he find the web service class? – John Saunders Jun 15 '11 at 19:28
@John Saunders - if you are asking if I know for sure that this solution will work for OP, then my answer is no, I don't know. I assumed that all web services in the same project. – Alex Aza Jun 15 '11 at 19:44
@Alex: your assumption is the reason for my -1. – John Saunders Jun 15 '11 at 19:45
1  
@John Saunders - look, I rarely see questions that are completely self-sufficient and clear. I make assumptions all the time. If I have and idea, I would rather share it. Do you suggest that it is better not to answer at all? – Alex Aza Jun 15 '11 at 19:49
1  
@John Saunders - the -1 itself does not hurt me. Although, your reasoning does. With such a reasoning I could generate hundreds of -1 every day for all kinds of posts. – Alex Aza Jun 15 '11 at 19:51
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.