Sajay

Life, The Universe and Everything Distributed.

October, 2006

Posts
  • Sajay

    MGSI Recruiting

    • 0 Comments

    Do you get a kick out of enabling customers?

    Do you want enable organizations around the world to do better business using Technology?

    Are you passionate about Technology?

    Are you passionate about Microsoft?

    If you answered yes to all this then I think you might be looking for a career at MGSI.

    Drop in a note on my contact page.

  • Sajay

    Query Endpoints using WMI Provider

    • 0 Comments

    Basicallyl for administrative purposes we can use the WMI Provider.

     

    Firstly we have to enable the WMI Provider in the corresponding service config file.


    <configuration>
                <system.serviceModel>
                            <diagnostics wmiProviderEnabled="true" />
    …                     
                </system.serviceModel>
    </
    configuration>
     

    The sample below  shows how to query for the endpoints in Power Shell

    PS C:\> get-wmiobject endpoint -n root/ServiceModel | ft name

    name
    ----
    IService@
    http://myMachine/Vdir/Service.svc

    PS C:\>

    Refer Using Windows Management Instrumentation for Diagnostics
Page 1 of 1 (2 items)