• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk MapGuide Developer

    Reply
    Contributor
    Posts: 20
    Registered: ‎05-15-2007

    MapGuide Server Information Properties

    508 Views, 1 Replies
    12-12-2009 11:30 PM
    Hello All,
    I am having a problem with the MapGuide.
    Does anyone know how I can get
    MapGuide Server Information Properties programatically
    from desktop application(C# or vb.net).
    Thanks in advance!
    Michael
    Please use plain text.
    Valued Contributor
    Posts: 51
    Registered: ‎01-03-2007

    Re: MapGuide Server Information Properties

    12-14-2009 07:17 AM in reply to: tint
    Look in /mapviewernet/serveradminhelper.aspx for an example (exerpt below):

    MgServerAdmin serverAdmin = new MgServerAdmin();
    serverAdmin.Open("localhost", cred);

    string operation = Request.QueryString["OPERATION"];

    //Get all information properties
    MgPropertyCollection infoProp = serverAdmin.GetInformationProperties();

    As for connecting from a desktop app, you will need to copy the webconfig.ini from the www directory and modify the host to point to your server (for when you call MapGuideApi.MgInitializeWebTier ).

    I have done this on my machine for local debugging and doesn't seem to cause any issues.
    Please use plain text.