RE: mapguide-internals Digest, Vol 34, Issue 15

11 messages Options
Embed this post
Permalink
Leaf Li

RE: mapguide-internals Digest, Vol 34, Issue 15

Reply Threaded More More options
Print post
Permalink
Hi UV,

Thanks for your feedbacks. I add my comments in lines.

>I think the pinned connections RFC86 should be integrated with
>introducing the transaction context RFC78.

[Leaf] It is a little related but different. Operations in the same
Transaction will use the same FDO connection. This behavior is
similar to pinned connection.

But pinned connection has nothing to do with transaction.
For example, we just want to have the same connection for
the two feature reader. It has nothing to do with transaction.
Commit and rollback operation doesn't make sense here.

    MgSqlDataReader reader1 = featureService.ExecuteSqlQuery(featureSourceId, commandText, mgParameters, null);
    while (reader1.ReadNext())
    {
        MgSqlDataReader reader2 = featureService.ExecuteSqlQuery(featureSourceId, commandText, mgParameters, null);
        while (reader2.ReadNext())
        {
            ......
        }
        reader2.Close();
        reader2.Dispose();
    }
    reader1.Close();
    reader1.Dispose();

Moreover, one transaction may do something on the DRBMS server
when opening a transaction. This has consequences such as updates
are only visible in this transaction, and data gets locked.
All of those behaviors aren't what we want.

   

>Goal: Expose a threadsafe transaction context to the API.
>
>Approach:
>At the begin of the transaction the connection manager should
>automatically acquire a dedicated "pinned" FDO Connection for this
>transaction.
>- we can now consider providing an additional property to the
>transaction API to block parallel reader connections or not.
>At the end after the commit of the transaction the FDO connection will
>be released.
>
>This behaviour permits the user code the sequencing of multiple db
>writes always reusing the same FDO connection until commit.
>
>Now we need to decide how to deal with a parallel reader on a parallel
>FDO connection from the pool.
>The use of a parallel FDO connection should be off by default during the
>transaction.
>We could permit parallel reader threads which then possibly return
>different state than the comitted state after the transaction.
>I can also imagine scenario where the reader would block until the
>transaction is complete creating a possible dead lock.
>This needs some fun testing to verify so this needs clear warnings in
>the API doc.
>
>Generally the dedicated FDO connection issue is too closely connected to
>the transaction context
>and should not be exposed separately in the API.
>
>If this behaviour is accepted then we can discuss implementation details.

Thanks,
Leaf Li
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Leaf Li

RE: mapguide-internals Digest, Vol 34, Issue 15

Reply Threaded More More options
Print post
Permalink
Hi Haris,

Thanks for your feedbacks. I add my comments in lines.

>Sorry if I am late, I have concerns regarding this RFC. What would happen if
>there are more pinnes in one session or more connections wanted to be run in
>same session ? Also, If I remember correctly there is link between reader
>being closed and connection released ? If that is case what would happen in
>case of multiple readers?

[Leaf] Two pinned connections aren't allowed to created in one session. Once
users call PinConnection(), this method do nothing when calling it again till
calling UnpinConnection or pinned connection is time-out.

>In my opinion better solution would be to be able to "get" connection from
>server and then use that connection. In such way user would be able to have
>any number of connections and use them in any way.
>Also that looks to me like cleaner and more understandable solution.

[Leaf] Yes. It can be a solution. To a certain extent, it is cleaner. To a
Certain extent, it may result in some confusing. We have to overload most of
feature service methods to add a new parameter 'MgFdoConnection'. Users can
use pinned connection and unpinned connection in the same time. If users
forget to use the pinned connection in a situation where a pinned connection
should be used, it is difficult for users to debug what's wrong with the
application.

Thanks,
Leaf Li
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Haris Kurtagic

RE: RE: mapguide-internals Digest, Vol 34, Issue 15

Reply Threaded More More options
Print post
Permalink

Leaf, UV,

To be able to use only one "pinned" connection in session is unnecessary
restriction to application.

I think UV comment was correct that this RFC is connected to RFC78 (thanks
UV to pointing it out).
Instead of adding parameter to set transaction in execute sql functions it
should be better to use connection as parameter.
On that connection transaction is started or not, which depends of'course on
application.

In such case you can any number of transaction, readers, "pinned"
connections whatever.
Application is in control how and for what wants to use them. In that case
there is no confusion what is pinned what is in transaction etc...

Haris



-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Leaf Li
Sent: Monday, October 19, 2009 9:28
To: [hidden email]
Subject: [mapguide-internals] RE: mapguide-internals Digest, Vol 34, Issue
15

Hi Haris,

Thanks for your feedbacks. I add my comments in lines.

>Sorry if I am late, I have concerns regarding this RFC. What would happen
if
>there are more pinnes in one session or more connections wanted to be run
in
>same session ? Also, If I remember correctly there is link between reader
>being closed and connection released ? If that is case what would happen in
>case of multiple readers?

[Leaf] Two pinned connections aren't allowed to created in one session. Once
users call PinConnection(), this method do nothing when calling it again
till
calling UnpinConnection or pinned connection is time-out.

>In my opinion better solution would be to be able to "get" connection from
>server and then use that connection. In such way user would be able to have
>any number of connections and use them in any way.
>Also that looks to me like cleaner and more understandable solution.

[Leaf] Yes. It can be a solution. To a certain extent, it is cleaner. To a
Certain extent, it may result in some confusing. We have to overload most of
feature service methods to add a new parameter 'MgFdoConnection'. Users can
use pinned connection and unpinned connection in the same time. If users
forget to use the pinned connection in a situation where a pinned connection
should be used, it is difficult for users to debug what's wrong with the
application.

Thanks,
Leaf Li
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Martin Morrison

Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I did was to a Windows 2003 server to a non-standard directory (G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs and Jpegs to work so I don't think coordinates are an issue.  Just for grins though, the map and the images are both in the same state plane zone...  AutoCAD Map shows the files placed perfectly.  I did a second install on a Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same result.  Both install were using the bundled config with Apache as the webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time stamps.  Please ignore the fact that it says Drive X, it is actually the C Drive of the machine I'm testing with.  Anybody see what the issue is?  Are there dependencies that have been left out of the install?  Prerequisites I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing concerns, but we do need to make it fairly painless for the server guys to setup.  Jason's writeup would be fine as long as it works.  I have a feeling there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
*****************************************************************************************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
UV-2

Re: RE: mapguide-internals Digest, Vol 34, Issue 15

Reply Threaded More More options
Print post
Permalink
In reply to this post by Haris Kurtagic
Hello,

My general advice is to avoid extending the API if there is any possible
logic which
do the job without exposing such internal states to the API.
So the question is if there is any business logic to decide this?

I think one important thing missing in RFC86 is a complete list of use
cases this is wanted for.
(Maybe we should focus more on the use cases to be part of any RFC to
help further evaluation of it. )

The use case/example in RFC86 looks to me like a transaction which
should reuse the same FDO connection
for the same user session. That was the start of my comment. I believe
using a dedicated FDO connection makes
a lot of sense for the Transactions.

So what are the other use cases?

We can easily agree that the FDO connection pool needs to be a little
smarter than it is.
Exposing those things to the API feels wrong.
So can someone help to complete the use cases so we can write the logic
to manage the FDO connection pool?





In this case we have to consider single user and multi user scenarios.

Haris Kurtagic wrote:

> Leaf, UV,
>
> To be able to use only one "pinned" connection in session is unnecessary
> restriction to application.
>
> I think UV comment was correct that this RFC is connected to RFC78 (thanks
> UV to pointing it out).
> Instead of adding parameter to set transaction in execute sql functions it
> should be better to use connection as parameter.
> On that connection transaction is started or not, which depends of'course on
> application.
>
> In such case you can any number of transaction, readers, "pinned"
> connections whatever.
> Application is in control how and for what wants to use them. In that case
> there is no confusion what is pinned what is in transaction etc...
>
> Haris
>
>
>
> -----Original Message-----
> From: [hidden email]
> [mailto:[hidden email]] On Behalf Of Leaf Li
> Sent: Monday, October 19, 2009 9:28
> To: [hidden email]
> Subject: [mapguide-internals] RE: mapguide-internals Digest, Vol 34, Issue
> 15
>
> Hi Haris,
>
> Thanks for your feedbacks. I add my comments in lines.
>
>  
>> Sorry if I am late, I have concerns regarding this RFC. What would happen
>>    
> if
>  
>> there are more pinnes in one session or more connections wanted to be run
>>    
> in
>  
>> same session ? Also, If I remember correctly there is link between reader
>> being closed and connection released ? If that is case what would happen in
>> case of multiple readers?
>>    
>
> [Leaf] Two pinned connections aren't allowed to created in one session. Once
> users call PinConnection(), this method do nothing when calling it again
> till
> calling UnpinConnection or pinned connection is time-out.
>
>  
>> In my opinion better solution would be to be able to "get" connection from
>> server and then use that connection. In such way user would be able to have
>> any number of connections and use them in any way.
>> Also that looks to me like cleaner and more understandable solution.
>>    
>
> [Leaf] Yes. It can be a solution. To a certain extent, it is cleaner. To a
> Certain extent, it may result in some confusing. We have to overload most of
> feature service methods to add a new parameter 'MgFdoConnection'. Users can
> use pinned connection and unpinned connection in the same time. If users
> forget to use the pinned connection in a situation where a pinned connection
> should be used, it is difficult for users to debug what's wrong with the
> application.
>
> Thanks,
> Leaf Li
> _______________________________________________
> mapguide-internals mailing list
> [hidden email]
> http://lists.osgeo.org/mailman/listinfo/mapguide-internals
>
> _______________________________________________
> mapguide-internals mailing list
> [hidden email]
> http://lists.osgeo.org/mailman/listinfo/mapguide-internals
>
>  

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Badreddine Karoui

RE: RE: mapguide-internals Digest, Vol 34, Issue 15

Reply Threaded More More options
Print post
Permalink
In reply to this post by Haris Kurtagic
Harris,

  You should be able to pin more than one connection per session. The new API takes a feature source id and an application can create any number of those ids and pin their associated connections. My understanding is that the server will keep track of the association between (session,fsdid,connection). Even though the a fsid may refer to the same connection parameters as an existing fsid, if PinConnection is called using the new fsid, then a new connection will be pinned. Of course, you can have a third fsid to the same data and decide not to pin the associated connection. In that case you just grab a connection from the pool as you do today. I assume that pinned or not, the connection will stay around if a reader is still using it.

Badreddine

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Haris Kurtagic
Sent: Monday, October 19, 2009 10:30 AM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] RE: mapguide-internals Digest, Vol 34, Issue 15


Leaf, UV,

To be able to use only one "pinned" connection in session is unnecessary
restriction to application.

I think UV comment was correct that this RFC is connected to RFC78 (thanks
UV to pointing it out).
Instead of adding parameter to set transaction in execute sql functions it
should be better to use connection as parameter.
On that connection transaction is started or not, which depends of'course on
application.

In such case you can any number of transaction, readers, "pinned"
connections whatever.
Application is in control how and for what wants to use them. In that case
there is no confusion what is pinned what is in transaction etc...

Haris



-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Leaf Li
Sent: Monday, October 19, 2009 9:28
To: [hidden email]
Subject: [mapguide-internals] RE: mapguide-internals Digest, Vol 34, Issue
15

Hi Haris,

Thanks for your feedbacks. I add my comments in lines.

>Sorry if I am late, I have concerns regarding this RFC. What would happen
if
>there are more pinnes in one session or more connections wanted to be run
in
>same session ? Also, If I remember correctly there is link between reader
>being closed and connection released ? If that is case what would happen in
>case of multiple readers?

[Leaf] Two pinned connections aren't allowed to created in one session. Once
users call PinConnection(), this method do nothing when calling it again
till
calling UnpinConnection or pinned connection is time-out.

>In my opinion better solution would be to be able to "get" connection from
>server and then use that connection. In such way user would be able to have
>any number of connections and use them in any way.
>Also that looks to me like cleaner and more understandable solution.

[Leaf] Yes. It can be a solution. To a certain extent, it is cleaner. To a
Certain extent, it may result in some confusing. We have to overload most of
feature service methods to add a new parameter 'MgFdoConnection'. Users can
use pinned connection and unpinned connection in the same time. If users
forget to use the pinned connection in a situation where a pinned connection
should be used, it is difficult for users to debug what's wrong with the
application.

Thanks,
Leaf Li
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
JonnieGIS@PAT

RE: Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
In reply to this post by Martin Morrison
Hi Martin,
I was able to get SID files working on a client site.  Unfortunately, I
don't have access to it anymore so I can't tell you the exact directory that
the dlls needed to be under but as I recall, I ended up having to move them
to a different directory.

Opening MG in debug mode was very helpful in finding out whether or not MG
was finding the DLLs.

I found, as I have many times, that the config/index files were not being
built correctly.  They end up with 100000,-100000 in the values.  I am not
sure what causes this.  Ultimately, we have created an FME script that will
generate the proper values.  In this case though, I was able to use the
config files from 1.2 and just modify the value of the directory and version
of FDO.

Hope something here helps,
Jonathon

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 10:03 AM
To: MapGuide Internals Mail List
Subject: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I
did was to a Windows 2003 server to a non-standard directory
(G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs
and Jpegs to work so I don't think coordinates are an issue.  Just for grins
though, the map and the images are both in the same state plane zone...
AutoCAD Map shows the files placed perfectly.  I did a second install on a
Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same
result.  Both install were using the bundled config with Apache as the
webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time
stamps.  Please ignore the fact that it says Drive X, it is actually the C
Drive of the machine I'm testing with.  Anybody see what the issue is?  Are
there dependencies that have been left out of the install?  Prerequisites
I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing
concerns, but we do need to make it fairly painless for the server guys to
setup.  Jason's writeup would be fine as long as it works.  I have a feeling
there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE
LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
****************************************************************************
*************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Martin Morrison

RE: Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
It's not the index.  I should be able to place a single MrSid in a directory and point to it and have it display.  I can't do that.  It may be that the directory the dll's need to be in has changed between 2.02 and 2.1.  If it has, it needs to be noted.  I have MrSids working under 2.02, I have to believe something has changed.  The fact that you said you copied them...we simply need to figure out where.

Martin

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 4:17 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Hi Martin,
I was able to get SID files working on a client site.  Unfortunately, I
don't have access to it anymore so I can't tell you the exact directory that
the dlls needed to be under but as I recall, I ended up having to move them
to a different directory.

Opening MG in debug mode was very helpful in finding out whether or not MG
was finding the DLLs.

I found, as I have many times, that the config/index files were not being
built correctly.  They end up with 100000,-100000 in the values.  I am not
sure what causes this.  Ultimately, we have created an FME script that will
generate the proper values.  In this case though, I was able to use the
config files from 1.2 and just modify the value of the directory and version
of FDO.

Hope something here helps,
Jonathon

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 10:03 AM
To: MapGuide Internals Mail List
Subject: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I
did was to a Windows 2003 server to a non-standard directory
(G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs
and Jpegs to work so I don't think coordinates are an issue.  Just for grins
though, the map and the images are both in the same state plane zone...
AutoCAD Map shows the files placed perfectly.  I did a second install on a
Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same
result.  Both install were using the bundled config with Apache as the
webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time
stamps.  Please ignore the fact that it says Drive X, it is actually the C
Drive of the machine I'm testing with.  Anybody see what the issue is?  Are
there dependencies that have been left out of the install?  Prerequisites
I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing
concerns, but we do need to make it fairly painless for the server guys to
setup.  Jason's writeup would be fine as long as it works.  I have a feeling
there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE
LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
****************************************************************************
*************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
JonnieGIS@PAT

RE: Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
It is foggy, but perhaps try copying the lti_* files to the X:\Program
Files\OSGeo\MapGuide\Server\fdo directory.


If you run mg from the command line, it will tell you if it finds the dll
when you try to publish it.



-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 1:59 PM
To: MapGuide Internals Mail List
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

It's not the index.  I should be able to place a single MrSid in a directory
and point to it and have it display.  I can't do that.  It may be that the
directory the dll's need to be in has changed between 2.02 and 2.1.  If it
has, it needs to be noted.  I have MrSids working under 2.02, I have to
believe something has changed.  The fact that you said you copied them...we
simply need to figure out where.

Martin

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 4:17 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Hi Martin,
I was able to get SID files working on a client site.  Unfortunately, I
don't have access to it anymore so I can't tell you the exact directory that
the dlls needed to be under but as I recall, I ended up having to move them
to a different directory.

Opening MG in debug mode was very helpful in finding out whether or not MG
was finding the DLLs.

I found, as I have many times, that the config/index files were not being
built correctly.  They end up with 100000,-100000 in the values.  I am not
sure what causes this.  Ultimately, we have created an FME script that will
generate the proper values.  In this case though, I was able to use the
config files from 1.2 and just modify the value of the directory and version
of FDO.

Hope something here helps,
Jonathon

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 10:03 AM
To: MapGuide Internals Mail List
Subject: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I
did was to a Windows 2003 server to a non-standard directory
(G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs
and Jpegs to work so I don't think coordinates are an issue.  Just for grins
though, the map and the images are both in the same state plane zone...
AutoCAD Map shows the files placed perfectly.  I did a second install on a
Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same
result.  Both install were using the bundled config with Apache as the
webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time
stamps.  Please ignore the fact that it says Drive X, it is actually the C
Drive of the machine I'm testing with.  Anybody see what the issue is?  Are
there dependencies that have been left out of the install?  Prerequisites
I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing
concerns, but we do need to make it fairly painless for the server guys to
setup.  Jason's writeup would be fine as long as it works.  I have a feeling
there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE
LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
****************************************************************************
*************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Martin Morrison

RE: Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
Running the server from the cmd line gives me errors about not finding the ECW dlls.  I'm not using ECW, I'm using MrSID.  Has the requirements changed so you are now required to load the ECW dlls to get MrSID working?  If so, that is a problem.  According to their documentation, ECW requires royalties.

Martin

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 5:13 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

It is foggy, but perhaps try copying the lti_* files to the X:\Program
Files\OSGeo\MapGuide\Server\fdo directory.


If you run mg from the command line, it will tell you if it finds the dll
when you try to publish it.



-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 1:59 PM
To: MapGuide Internals Mail List
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

It's not the index.  I should be able to place a single MrSid in a directory
and point to it and have it display.  I can't do that.  It may be that the
directory the dll's need to be in has changed between 2.02 and 2.1.  If it
has, it needs to be noted.  I have MrSids working under 2.02, I have to
believe something has changed.  The fact that you said you copied them...we
simply need to figure out where.

Martin

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 4:17 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Hi Martin,
I was able to get SID files working on a client site.  Unfortunately, I
don't have access to it anymore so I can't tell you the exact directory that
the dlls needed to be under but as I recall, I ended up having to move them
to a different directory.

Opening MG in debug mode was very helpful in finding out whether or not MG
was finding the DLLs.

I found, as I have many times, that the config/index files were not being
built correctly.  They end up with 100000,-100000 in the values.  I am not
sure what causes this.  Ultimately, we have created an FME script that will
generate the proper values.  In this case though, I was able to use the
config files from 1.2 and just modify the value of the directory and version
of FDO.

Hope something here helps,
Jonathon

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 10:03 AM
To: MapGuide Internals Mail List
Subject: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I
did was to a Windows 2003 server to a non-standard directory
(G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs
and Jpegs to work so I don't think coordinates are an issue.  Just for grins
though, the map and the images are both in the same state plane zone...
AutoCAD Map shows the files placed perfectly.  I did a second install on a
Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same
result.  Both install were using the bundled config with Apache as the
webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time
stamps.  Please ignore the fact that it says Drive X, it is actually the C
Drive of the machine I'm testing with.  Anybody see what the issue is?  Are
there dependencies that have been left out of the install?  Prerequisites
I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing
concerns, but we do need to make it fairly painless for the server guys to
setup.  Jason's writeup would be fine as long as it works.  I have a feeling
there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE
LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
****************************************************************************
*************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals
Martin Morrison

RE: Issues with MapGuide 2.1 and MrSid...

Reply Threaded More More options
Print post
Permalink
Installing the ECW dlls on a test server fixes the error about not finding them but it does NOT fix my MrSID display issue.

If I remove the MrSID layer from my map so it only contains one layer pulled from SQL Server (simple test map) and remove the ECW dlls, it works as expected, no errors.  If I add the MrSID layer back in, it prompts me about the ECW dlls.  So whenever a SID file is called it looks for ECW dlls.  WHY????

Martin


-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Martin Morrison
Sent: Tuesday, October 20, 2009 10:53 AM
To: MapGuide Internals Mail List
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Running the server from the cmd line gives me errors about not finding the ECW dlls.  I'm not using ECW, I'm using MrSID.  Has the requirements changed so you are now required to load the ECW dlls to get MrSID working?  If so, that is a problem.  According to their documentation, ECW requires royalties.

Martin

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 5:13 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

It is foggy, but perhaps try copying the lti_* files to the X:\Program
Files\OSGeo\MapGuide\Server\fdo directory.


If you run mg from the command line, it will tell you if it finds the dll
when you try to publish it.



-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 1:59 PM
To: MapGuide Internals Mail List
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

It's not the index.  I should be able to place a single MrSid in a directory
and point to it and have it display.  I can't do that.  It may be that the
directory the dll's need to be in has changed between 2.02 and 2.1.  If it
has, it needs to be noted.  I have MrSids working under 2.02, I have to
believe something has changed.  The fact that you said you copied them...we
simply need to figure out where.

Martin

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Jonathon
Sent: Monday, October 19, 2009 4:17 PM
To: 'MapGuide Internals Mail List'
Subject: RE: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Hi Martin,
I was able to get SID files working on a client site.  Unfortunately, I
don't have access to it anymore so I can't tell you the exact directory that
the dlls needed to be under but as I recall, I ended up having to move them
to a different directory.

Opening MG in debug mode was very helpful in finding out whether or not MG
was finding the DLLs.

I found, as I have many times, that the config/index files were not being
built correctly.  They end up with 100000,-100000 in the values.  I am not
sure what causes this.  Ultimately, we have created an FME script that will
generate the proper values.  In this case though, I was able to use the
config files from 1.2 and just modify the value of the directory and version
of FDO.

Hope something here helps,
Jonathon

-----Original Message-----
From: [hidden email]
[mailto:[hidden email]] On Behalf Of Martin
Morrison
Sent: October 19, 2009 10:03 AM
To: MapGuide Internals Mail List
Subject: [mapguide-internals] Issues with MapGuide 2.1 and MrSid...

Having trouble with MapGuide 2.1 RC1 and MrSid files.  The first install I
did was to a Windows 2003 server to a non-standard directory
(G:\Gis_Sites\blah\blah\).  Could not get MrSids to work.  I could get Tiffs
and Jpegs to work so I don't think coordinates are an issue.  Just for grins
though, the map and the images are both in the same state plane zone...
AutoCAD Map shows the files placed perfectly.  I did a second install on a
Vista (32_bit) laptop, accepting all of the defaults for paths etc.  Same
result.  Both install were using the bundled config with Apache as the
webserver.  I read Jason's posting about MrSid and ECWs.  

(http://www.mail-archive.com/mapguide-users@.../msg10886.html)

Below is a dir listing of where the files are placed and the date/time
stamps.  Please ignore the fact that it says Drive X, it is actually the C
Drive of the machine I'm testing with.  Anybody see what the issue is?  Are
there dependencies that have been left out of the install?  Prerequisites
I'm missing?  Wrong version?

I don't mind having to load some files (MrSid dll's) due to licensing
concerns, but we do need to make it fairly painless for the server guys to
setup.  Jason's writeup would be fine as long as it works.  I have a feeling
there is something else missing, or I'm just blind...

Thanks,
Martin

*********************************FILE
LISTING********************************************
Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin

10/19/2009  10:43 AM    <DIR>          .
10/19/2009  10:43 AM    <DIR>          ..
10/04/2009  11:05 PM         1,076,224 ACE.dll
10/04/2009  11:41 PM           176,128 dbxml.exe
10/04/2009  11:41 PM            12,288 dbxml_dump.exe
10/04/2009  11:41 PM            11,776 dbxml_load.exe
10/04/2009  11:17 PM             8,704 db_archive.exe
10/04/2009  11:17 PM             9,728 db_checkpoint.exe
10/04/2009  11:17 PM            11,776 db_dump.exe
10/04/2009  11:17 PM            14,848 db_hotbackup.exe
10/04/2009  11:17 PM            22,016 db_load.exe
10/04/2009  11:17 PM             9,728 db_recover.exe
10/04/2009  11:17 PM             9,216 db_upgrade.exe
10/04/2009  11:18 PM             9,728 db_verify.exe
10/04/2009  11:27 PM           974,848 gd.dll
10/19/2009  10:41 AM    <DIR>          gdalplugins
10/04/2009  11:17 PM         1,011,712 GEOS.dll
10/04/2009  11:06 PM           869,888 libdb45.dll
10/04/2009  11:27 PM         1,496,576 libdbxml23.dll
11/28/2008  03:52 PM         1,650,688 lti_dsdk_cdll.dll
11/28/2008  03:52 PM         1,859,584 lti_dsdk_dll.dll
10/04/2009  11:30 PM           603,136 MgFoundation.dll
10/04/2009  11:44 PM         1,748,480 MgGeometry.dll
10/04/2009  11:42 PM           119,296 MgGwsCommon.dll
10/04/2009  11:49 PM           408,576 MgGwsQueryEngine.dll
10/04/2009  11:29 PM            32,768 MgGwsResource.dll
10/04/2009  11:50 PM           839,680 MgMapGuideCommon.dll
10/04/2009  11:29 PM           272,896 MgMdfModel.dll
10/04/2009  11:30 PM           434,176 MgMdfParser.dll
10/04/2009  11:49 PM           521,728 MgPlatformBase.dll
10/04/2009  11:50 PM         1,824,256 MgRenderers.dll
10/04/2009  11:53 PM           248,320 mgserver.exe
10/04/2009  11:52 PM           291,840 MgServerAdminService.dll
10/04/2009  11:50 PM            71,168 MgServerBase.dll
10/04/2009  11:50 PM            79,872 MgServerCache.dll
10/04/2009  11:52 PM           984,576 MgServerDrawingService.dll
10/04/2009  11:51 PM         1,469,952 MgServerFeatureService.dll
10/04/2009  11:52 PM           163,328 MgServerKmlService.dll
10/04/2009  11:50 PM           853,504 MgServerManager.dll
10/04/2009  11:52 PM           360,960 MgServerMappingService.dll
10/04/2009  11:52 PM           205,312 MgServerRenderingService.dll
10/04/2009  11:51 PM         2,273,792 MgServerResourceService.dll
10/04/2009  11:52 PM           279,552 MgServerSiteService.dll
10/04/2009  11:44 PM            12,800 MgServerThread.dll
10/04/2009  11:51 PM           133,120 MgServerTileService.dll
10/04/2009  11:47 PM           625,664 MgStylization.dll
10/04/2009  11:54 PM         1,885,696 MgUnitTesting.dll
10/19/2009  12:29 PM            27,424 serverconfig.ini
10/04/2009  11:08 PM         1,831,936 xerces-c_2_7.dll
10/04/2009  11:23 PM         2,624,512 xqilla10.dll
              47 File(s)     30,463,776 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins

10/19/2009  10:41 AM    <DIR>          .
10/19/2009  10:41 AM    <DIR>          ..
10/19/2009  10:40 AM           266,240 gdal_ECW_JP2ECW.dll
10/19/2009  10:40 AM            81,920 gdal_MrSID.dll
               2 File(s)        348,160 bytes

     Total Files Listed:
              49 File(s)     30,811,936 bytes
               5 Dir(s)  53,645,303,808 bytes free
 Volume in drive X has no label.
 Volume Serial Number is 7005-B438

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo

10/19/2009  10:42 AM    <DIR>          .
10/19/2009  10:42 AM    <DIR>          ..
04/20/2009  08:32 AM            39,424 boost_date_time-vc90-mt-1_34_1.dll
04/20/2009  08:33 AM            40,448 boost_thread-vc90-mt-1_34_1.dll
10/16/2009  04:23 PM    <DIR>          com
04/20/2009  08:50 AM           942,592 ExpressionEngine.dll
04/20/2009  08:43 AM         1,036,288 FDO.dll
04/20/2009  08:38 AM           246,272 FDOCommon.dll
04/20/2009  08:38 AM           252,416 FDOGeometry.dll
04/20/2009  08:37 AM            73,216 FDOMessage.dll
10/05/2009  12:10 AM            10,240 FdoRegUtil.exe
04/20/2009  08:39 AM           113,664 FDOSpatial.dll
04/20/2009  08:37 AM         5,091,840 gdal16.dll
10/19/2009  10:40 AM           126,976 geotiff.dll
04/20/2009  09:01 AM             2,560 GRFPMessage.dll
04/20/2009  09:01 AM            72,192 GRFPOverrides.dll
04/20/2009  09:01 AM           274,432 GRFPProvider.dll
10/19/2009  10:40 AM           118,784 jpeg_osgeo.dll
10/19/2009  10:40 AM           458,752 libtiff.dll
04/20/2009  08:57 AM            60,928 ODBCOverrides.dll
04/20/2009  08:59 AM         2,029,056 ODBCProvider.dll
04/20/2009  09:01 AM           152,576 OGRProvider.dll
04/20/2009  08:52 AM           884,224 OWS.dll
10/16/2009  04:24 PM             3,684 providers.xml
04/20/2009  08:54 AM            46,592 RdbmsMsg.dll
04/20/2009  08:57 AM           156,160 RdbmsOverrides.dll
04/20/2009  08:51 AM            13,312 SDFMessage.dll
04/20/2009  08:52 AM           660,992 SDFProvider.dll
04/20/2009  08:49 AM            19,968 SHPMessage.dll
04/20/2009  08:50 AM            47,616 SHPOverrides.dll
04/20/2009  08:51 AM           834,048 SHPProvider.dll
04/20/2009  08:54 AM            39,424 SmMessage.dll
09/25/2009  04:48 PM           752,128 SQLiteProvider.dll
04/20/2009  09:05 AM           129,536 SQLServerSpatialOverrides.dll
04/20/2009  09:06 AM         2,196,480 SQLServerSpatialProvider.dll
04/20/2009  08:52 AM            11,264 WFSMessage.dll
04/20/2009  08:52 AM           451,072 WFSProvider.dll
04/20/2009  08:52 AM            18,944 WMSMessage.dll
04/20/2009  08:52 AM            84,992 WMSOverrides.dll
04/20/2009  08:53 AM           562,176 WMSProvider.dll
04/20/2009  08:29 AM         3,156,480 Xalan-C_1_7_0.dll
04/20/2009  08:24 AM            60,928 XalanMessages_1_7_0.dll
04/20/2009  08:23 AM         2,126,848 xerces-c_2_5_0.dll
10/19/2009  10:40 AM            73,728 zlib_osgeo.dll
              41 File(s)     23,473,252 bytes

 Directory of X:\Program Files\OSGeo\MapGuide\Server\fdo\com

10/16/2009  04:23 PM    <DIR>          .
10/16/2009  04:23 PM    <DIR>          ..
04/20/2009  08:02 AM             6,290 fdosys_sys.sql
04/20/2009  08:02 AM            30,023 fdo_sys.sql
04/20/2009  08:02 AM             7,667 fdo_sys_idx.sql
               3 File(s)         43,980 bytes

     Total Files Listed:
              44 File(s)     23,517,232 bytes
               5 Dir(s)  53,645,303,808 bytes free
****************************************************************************
*************
_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals

_______________________________________________
mapguide-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/mapguide-internals