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

    Autodesk MapGuide Enterprise

    Reply
    Mentor
    Posts: 242
    Registered: ‎10-10-2003
    Accepted Solution

    Autodesk Infrastructure GeoREST Extension 2012 - 64BIT

    778 Views, 1 Replies
    11-22-2011 02:56 PM

    In the Preview stuff (technical term) - the GeoRest is installed.from the C:\Autodesk\Autodesk_Infrastructure_Map_Server_2012_English_Win_64bit\TechnologyPreview

     

    I have it working great on IIS for direct connect (i.e. FDO Features) but when I connect to AIMS 2012 - I get "MgConnectionFailedException".

     

    I know GeoRest is configured ok since it works with direct connect data (i.e. path to SDF or ConnectString to SQL Server).

     

    I am testing with the config.xml that comes with the GeoRest and points to the sample dataset (installed).

    <Resource uripart="propertymap">
    <Source type="MapGuide">
    <FeatureSource>Library://Samples/Sheboygan/Data/Parcels.FeatureSource</FeatureSource>
    <FeatureClass>SHP_Schema:smileytongue:arcels</FeatureClass>
    </Source>

     

    I know I have Library://Samples/Sheboygan/Data/Parcels.FeatureSource available.

     

    Any tips?

     

    gordon

     

    Please use plain text.
    Mentor
    Posts: 242
    Registered: ‎10-10-2003

    Re: Autodesk Infrastructure GeoREST Extension 2012 - 64BIT

    12-11-2011 05:48 PM in reply to: gluckett

    Discovered the issue.  The ports changed with AIMS 2012.

     

    Old connection

     

    <Resourceuripart="property">
         
    <Sourcetype="MapGuide">
         
    <FeatureSource>Library://Samples/Sheboygan/Data/Parcels.FeatureSource</FeatureSource>
         
    <FeatureClass>SHP_Schema:Parcels</FeatureClass>
         
    <ServerIp>192.168.0.33</ServerIp>
         
    <ServerPort>2812</ServerPort>
         
    </Source>
       
    </Resource>
    NOW WITH AIMS 2012 the server port is "2822"
    <Resourceuripart="property">
         
    <Sourcetype="MapGuide">
         
    <FeatureSource>Library://Samples/Sheboygan/Data/Parcels.FeatureSource</FeatureSource>
         
    <FeatureClass>SHP_Schema:Parcels</FeatureClass>
         
    <ServerIp>192.168.0.33</ServerIp>
         
    <ServerPort>2822</ServerPort>
         
    </Source>
       
    </Resource>
    Please use plain text.