Autodesk MapGuide Enterprise Developer
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
MapGuide Server Goes Down Often
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi
MapGuide Server goes down often when there is even more than 2 client web browser access, can any load balancing patch or anything can be applied to solve this?
Thanks
Re: MapGuide Server Goes Down Often
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Which version are you using? Are you using any custom application when you run into this problem?
Daniel Du
Developer Technical Services
Autodesk Developer Network
Re: MapGuide Server Goes Down Often
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Daniel,
Do you know of any reason this could be happening? I am having the same issue, however, I do not know if it is becase of 2 users accessing the map. I am using a Mapguide Enterprise 2011 Fusion layout and the server is installed on Windows 2008 R2. We do have some custom ColdFusion applications running with the map, not sure if this is the issue. Any insight would be greatly appreciated, I am constantly having to reboot the server in order to get the map working again.
Thanks!
Emily
Re: MapGuide Server Goes Down Often
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi Emily,
If you are using custom code, I'd like to suggest you to chech your code to make sure you release the connection as early as possible.
featureReader.Close() should be called as early as possbile when you finished the reader. Folllowing code snippet demonstrate this process:
MgFeatureReader reader = featureService.SelectFeatures( );
try
{
//¡.your code here ¡..
}
finally
{
Reader.close();
}
Hope this helps some.
Daniel Du
Developer Technical Services
Autodesk Developer Network

