Reflection on Web Proxy Object

  • Thread starter Thread starter ruchitrivedi19
  • Start date Start date
R

ruchitrivedi19

Hi,
I am writting an application in which without running the code I want
to know whether WebServiceA is calling WebSerbiceB ? or any other
WebService or any other reference.
In case of class Library I can get the information using Reflection.
But since WebService gives proxy object I am unable to get such kind
of information.

Thanks in advance!

Regards
Ruchi
 
You can't know anything about web service implementation details without
having its source code - it would be against the concept of web services -
and you should not have any need to know it. Web services are meant to
provide interface, no matter how it's implemented behind it.
 
Back
Top