RE: [mapguide-users] PostGIS selection bug?

2008-05-16 Thread gabrimonfa

I've found that if I don't have an ogc_fid field neither PGSQL_OGR_FID
variable is set, feature selection doesn't work correctly in MapGuide OS
1.2.

Not only the feature is not selected in blue also programmatically
retreiving selected feature (as suggested in the manual) doesn't work. This
is the code (well most of it since it is too long)

$map = new MgMap();
$map->Open($resourceService, $mapName); //$resourceService is initialized
before, $mapName is passed by js

$selection = new MgSelection($map, $selection);  //$selection is the result
of getSelectionXML() js viewer function
$layers = $selection->GetLayers();

if ($layers) {
$queryOptions = new MgFeatureQueryOptions();
for ($i = 0; $i < $layers->GetCount(); $i++) {
$layer = $layers->GetItem($i);
if ($layer) { 
// Create a filter containing the IDs of the selected 
features on this
layer
$layerClassName = $layer->GetFeatureClassName();
$selectionString = 
$selection->GenerateFilter($layer,$layerClassName);
// Get the feature resource for the selected layer
$layerFeatureId = $layer->GetFeatureSourceId();
$layerFeatureResource = new 
MgResourceIdentifier($layerFeatureId);
// Apply the filter to the feature resource for the 
selected layer. This
returns an MgFeatureReader of all the selected features.
$queryOptions->SetFilter($selectionString);
$featureReader =
$featureService->SelectFeatures($layerFeatureResource,$layerClassName,
$queryOptions);

// Process each item in the MgFeatureReader, displaying 
the owner name
while ($featureReader->ReadNext()) {
$val = 
$featureReader->GetString();
echo $val;
}
}
}
}


if you print $selectionString it is like "FID=0" where FID is a field that
is not in the table but automatically added by the server
The problem is that selection is always empty (ie.
$featureReader->ReadNext() is always false), no matter how many feature are
selected.

If I change the code filtering for an existing attribute and an existing
value, such as

$queryOptions->SetFilter("id=14");

I'm able to recover the other fields (btw the FID field added automatically
has exactly the value given into the $selectionString, but filtering by FID
seems to be bugged).

When I jump into this post I add a field called ogc_fid to my table, and now
all works correctly.

In my opinion this is severe bug, because it affects feature selection that
is a primary feature of a mapserver and the solution is somewhat hard to
find.

Hoping to save some time so someone...

Gabriele

-

I have the same problem and have not dug deep enough into the problem to fix
it, however I do have the instructions.  You need to set the
PGSQL_OGR_FID configuration variable to equal the name of the ID column
of your data. I was told this was documented in the OGR Postgres page (see
http://www.gdal.org/ogr/drv_pg.html).

Please let me know if you get it and anything odd about the fixbecause I
still have to do it!

Mark


-- 
View this message in context: 
http://www.nabble.com/PostGIS-selection-bug--tp9043604p17206510.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] An exception occurred in DB XML component. Error: DbSequence::get: Not enough space

2008-05-16 Thread Steve Dang
MapGuide does not restrict the amount of objects or sub folders within a 
repository. The Server performs/protects a Load Package operation within a 
single transaction. The bigger the package is, the more memories/time are 
required. Try to break the package into smaller ones, then run them 
sequentially.

Steve.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rock Beans
Sent: Friday, May 16, 2008 3:00 PM
To: MapGuide Users Mail List
Subject: [mapguide-users] An exception occurred in DB XML component. Error: 
DbSequence::get: Not enough space

What does this error mean when loading a 103MB package? I am using the 2.0.1 
version of MapGuide OS. The log was about 27,000 lines long before this error 
came up. Is there a limit to the amount of objects or sub folders within a 
repository? Any info would be great as we are gearing up a BIG corporate 
customer for you guys (Autodesk).

Error from MapAdmin: An exception occurred in DB XML component. Error: 
DbSequence::get: Not enough space

The Rock
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] An exception occurred in DB XML component. Error: DbSequence::get: Not enough space

2008-05-16 Thread Rock Beans
What does this error mean when loading a 103MB package? I am using the 2.0.1
version of MapGuide OS. The log was about 27,000 lines long before this
error came up. Is there a limit to the amount of objects or sub folders
within a repository? Any info would be great as we are gearing up a BIG
corporate customer for you guys (Autodesk).

Error from MapAdmin: An exception occurred in DB XML component. Error:
DbSequence::get: Not enough space

The Rock
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Loading Packages Error on Missing DWF

2008-05-16 Thread Rock Beans
Is there any way for the log to say what file is actually missing. We have a
client that is loading 150MB packages at times and when you get this error
is very frustrating. How do you know what went wrong? If you don't know what
DWF is missing how can you fix? Right now my only answer is sorry you wasted
your time for the past 2 weeks restore an older package and start over.
There has to be a better way. Anyone else deal with bad packages or
something similar to this?

The Rock
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Please try your operation later as the resource was busy

2008-05-16 Thread Bruce Dechant
Mark,

The access is similar to a database, except is dependent on what the underlying 
provider supports. In the SDF case I believe this is multiple reads and single 
write is supported.

Thanks,
Bruce

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Pendergraft
Sent: Friday, May 16, 2008 1:03 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] Please try your operation later as the resource 
was busy


I'm a little confused here.
You make it sound as if only one person can update the library resource (in
this case a .sdf file) at a time.  I thought that multiple people could
interact with the file making changes at the same time more like a database.
I get this error about every other time i try to add a feature to my feature
source.  There is a lot of code that could be suspect, i will try to isolate
the error this weekend and if it's not my code i will submit a trac ticket.


Bruce Dechant wrote:
>
> Mark,
>
> The error you see below is typically a result of the resource still being
> used by someone else. However, if a feature reader is not closed and you
> try to do something with the same resource (update) it can report that it
> is in use still and therefore busy.
>
> Since you are closing your feature reader I suspect the problem is most
> likely a defect if you are the only one that is using it.
>
> What provider is this happening with? Is this easily reproduced?
> If you could create a track ticket for this and include as much
> information as possible for someone to investigate the issue that would be
> great.
>
> Thanks,
> Bruce
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Mark
> Pendergraft
> Sent: Friday, May 16, 2008 11:44 AM
> To: mapguide-users@lists.osgeo.org
> Subject: Re: [mapguide-users] Please try your operation later as the
> resource was busy
>
>
> I am getting this message too.  I am closing my feature reader and
> disposing
> of it.
> The problem happens when the user adds features to one of the feature
> sources named "Jobs".  We use our map primarily to track where we have
> worked, and users need to be able to add jobs to the map.  Sometimes it
> works, other times it harrasses me about the resource being busy.  I would
> have to use the library resource because the changes need to show up in
> everyones map.
>
> Am i missing something here?  is there a way to possibly check if the
> resource is busy and force it to not be?
>
>
> zspitzer wrote:
>>
>> Are you closing your featureReader? show us some more code :)
>>
>> Also, you probably want to be using session resources rather than
>> library resources
>>
>>
>
> --
> View this message in context:
> http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17280519.html
> Sent from the MapGuide Users mailing list archive at Nabble.com.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>

--
View this message in context: 
http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17282025.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Please try your operation later as the resource was busy

2008-05-16 Thread Mark Pendergraft

I'm a little confused here.
You make it sound as if only one person can update the library resource (in
this case a .sdf file) at a time.  I thought that multiple people could
interact with the file making changes at the same time more like a database.
I get this error about every other time i try to add a feature to my feature
source.  There is a lot of code that could be suspect, i will try to isolate
the error this weekend and if it's not my code i will submit a trac ticket.


Bruce Dechant wrote:
> 
> Mark,
> 
> The error you see below is typically a result of the resource still being
> used by someone else. However, if a feature reader is not closed and you
> try to do something with the same resource (update) it can report that it
> is in use still and therefore busy.
> 
> Since you are closing your feature reader I suspect the problem is most
> likely a defect if you are the only one that is using it.
> 
> What provider is this happening with? Is this easily reproduced?
> If you could create a track ticket for this and include as much
> information as possible for someone to investigate the issue that would be
> great.
> 
> Thanks,
> Bruce
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Mark
> Pendergraft
> Sent: Friday, May 16, 2008 11:44 AM
> To: mapguide-users@lists.osgeo.org
> Subject: Re: [mapguide-users] Please try your operation later as the
> resource was busy
> 
> 
> I am getting this message too.  I am closing my feature reader and
> disposing
> of it.
> The problem happens when the user adds features to one of the feature
> sources named "Jobs".  We use our map primarily to track where we have
> worked, and users need to be able to add jobs to the map.  Sometimes it
> works, other times it harrasses me about the resource being busy.  I would
> have to use the library resource because the changes need to show up in
> everyones map.
> 
> Am i missing something here?  is there a way to possibly check if the
> resource is busy and force it to not be?
> 
> 
> zspitzer wrote:
>>
>> Are you closing your featureReader? show us some more code :)
>>
>> Also, you probably want to be using session resources rather than
>> library resources
>>
>>
> 
> --
> View this message in context:
> http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17280519.html
> Sent from the MapGuide Users mailing list archive at Nabble.com.
> 
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17282025.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Please try your operation later as the resource was busy

2008-05-16 Thread Bruce Dechant
Mark,

The error you see below is typically a result of the resource still being used 
by someone else. However, if a feature reader is not closed and you try to do 
something with the same resource (update) it can report that it is in use still 
and therefore busy.

Since you are closing your feature reader I suspect the problem is most likely 
a defect if you are the only one that is using it.

What provider is this happening with? Is this easily reproduced?
If you could create a track ticket for this and include as much information as 
possible for someone to investigate the issue that would be great.

Thanks,
Bruce

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Pendergraft
Sent: Friday, May 16, 2008 11:44 AM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] Please try your operation later as the resource 
was busy


I am getting this message too.  I am closing my feature reader and disposing
of it.
The problem happens when the user adds features to one of the feature
sources named "Jobs".  We use our map primarily to track where we have
worked, and users need to be able to add jobs to the map.  Sometimes it
works, other times it harrasses me about the resource being busy.  I would
have to use the library resource because the changes need to show up in
everyones map.

Am i missing something here?  is there a way to possibly check if the
resource is busy and force it to not be?


zspitzer wrote:
>
> Are you closing your featureReader? show us some more code :)
>
> Also, you probably want to be using session resources rather than
> library resources
>
>

--
View this message in context: 
http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17280519.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Dave Wilson
I'm not a user of MGOS so I was only discussing the fact that a Coordinate 
System is required by the MG Server regardless of the provider involved. I 
can't speak to MGOS 2.x and the gdal provider specifically.

Sorry,
Dave

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew DeMerchant
Sent: Friday, May 16, 2008 11:46 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?

You're using the Autodesk provider, not the osgeo gdal oneDid you manage to 
get that working on MGOS 2.x?

Andrew


Dave Wilson wrote:
Using MapGuide Studio and configuring Raster via an unmanaged connection with 
the Autodesk provider there is the SupplementalSpatialContextInfo as shown 
below in the feature source definition:

  
- http://www.w3.org/2001/XMLSchema-instance";
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">
  Autodesk.Raster
- 
  DefaultRasterFileLocation
  
%MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
  
- 
  Default
  
PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",-123.00],PARAMETER["scale_factor",0.9996],PARAMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]]
  
  config.xml


I'm not sure how the feature source looks for the Open Source provider, but I'd 
be surprised there isn't an equivalent element available in the schema.

Dave

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
Behalf Of Rock Beans
Sent: Friday, May 16, 2008 9:32 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?

In a raster based feature source there is no where to override a cord system so 
can you please explain?
On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]> wrote:
Just something to eliminate but often people in their feature sources depending 
on the raster format are not ensuring a coordinate system is defined on the 
feature source. This is important and is required, it's possible this could 
cause some problems.

Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL 
PROTECTED]] On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?


I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the crashes.
Therefore I disabled the raster layers. Looking on the forum there are a lot
of people encountering similar problems with raster files.



Rock Beans wrote:
>
> That makes me cry a little. Well if I come up with anything I will post
> back. Any other info from the top dogs would be great!
>
> Thanks
> The Rock
>
> On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> [EMAIL PROTECTED]> wrote:
>
>>  No luck hereI've had success with other formats though. I filed a
>> trac about my mrsid problem a month ago (or so).
>>
>> Rock Beans wrote:
>>
>> I followed the directions on the
>> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
>> I
>> am not getting any to work. I have not tested any other formats yet. Has
>> anyone had luck with this or is there an update to the GDAL?
>>
>> The Rock
>>
>> --
>>
>> ___
>> mapguide-users mailing
>> [EMAIL PROTECTED]://> PROTECTED]://>lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>> --
>> *Andrew DeMerchant*
>>  *Computer Technologist*
>> ph.1-877-2GEMTEC x.163
>> fax 506-453-9470
>>
>> *GEMTEC Limited 
>> *191 Doak Road
>> Fredericton, NB, Canada
>>  E3C 2E6
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>

--
View this message in context: 
http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users

Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Andrew DeMerchant




You're using the Autodesk provider, not the osgeo gdal oneDid you
manage to get that working on MGOS 2.x? 

Andrew


Dave Wilson wrote:

  
  
  

  
  Using
MapGuide Studio and configuring Raster via an unmanaged
connection with the Autodesk provider there is the
SupplementalSpatialContextInfo
as shown below in the feature source definition:
   
   
 
  -
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">
   
Autodesk.Raster 
  -

   
DefaultRasterFileLocation 
   
%MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
  
   

  -

   
Default 
   
PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",-123.00],PARAMETER["scale_factor",0.9996],PARAMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]]
  
   

   
config.xml 
  
   
  I’m
not sure how the feature
source looks for the Open Source provider, but I’d be surprised there
isn’t an
equivalent element available in the schema.
   
  Dave
   
  
  From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Rock
Beans
  Sent: Friday, May 16, 2008 9:32 AM
  To: MapGuide Users Mail List
  Subject: Re: [mapguide-users] MrSID not working with 2.0?
  
   
  In a raster based
feature
source there is no where to override a cord system so can you please
explain?
  
  On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]>
wrote:
  Just something to eliminate but often people in
their
feature sources depending on the raster format are not ensuring a
coordinate
system is defined on the feature source. This is important and is
required,
it's possible this could cause some problems.
  
Dave
  
  
  
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?
  
  
I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the
crashes.
Therefore I disabled the raster layers. Looking on the forum there are
a lot
of people encountering similar problems with raster files.
  
  
  
Rock Beans wrote:
>
> That makes me cry a little. Well if I come up with anything I will
post
> back. Any other info from the top dogs would be great!
>
> Thanks
> The Rock
>
> On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> [EMAIL PROTECTED]>
wrote:
>
>>  No luck hereI've had success with other formats though. I
filed a
>> trac about my mrsid problem a month ago (or so).
>>
>> Rock Beans wrote:
>>
>> I followed the directions on the
>> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0
pages.
>> I
>> am not getting any to work. I have not tested any other
formats yet.
Has
>> anyone had luck with this or is there an update to the GDAL?
>>
>> The Rock
>>
>> --
>>
>> ___
>> mapguide-users mailing
>> [EMAIL PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>> --
>>     *Andrew DeMerchant*
>>  *Computer Technologist*
>> ph.1-877-2GEMTEC x.163
>> fax 506-453-9470
>>
>> *GEMTEC Limited 
>> *191 Doak Road
>> Fredericton, NB, Canada
>>  E3C 2E6
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
  
--
View this message in context: http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
  
___
mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/mapguide-users
  
  
  
   
  
  

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
  


-- 

  

  
   
  
  Andrew DeMerchant
   Computer Technologist
  ph.1-877-2GEMTEC x.163
fax 506-453-9470
   
  GEMTEC Limited
  191 Doak
Road
  Fredericton,
NB, Canada
   E3C 2E6
  

  




___
mapguide-use

Re: [mapguide-users] Please try your operation later as the resource was busy

2008-05-16 Thread Mark Pendergraft

I am getting this message too.  I am closing my feature reader and disposing
of it.
The problem happens when the user adds features to one of the feature
sources named "Jobs".  We use our map primarily to track where we have
worked, and users need to be able to add jobs to the map.  Sometimes it
works, other times it harrasses me about the resource being busy.  I would
have to use the library resource because the changes need to show up in
everyones map.

Am i missing something here?  is there a way to possibly check if the
resource is busy and force it to not be?


zspitzer wrote:
> 
> Are you closing your featureReader? show us some more code :)
> 
> Also, you probably want to be using session resources rather than
> library resources
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Please-try-your-operation-later-as-the-resource-was-busy-tp16392736p17280519.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Berdel, Brian
That is what did the trick for me before. You can check the log files to
see if that is the issue. 

 

Brian 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rock Beans
Sent: Friday, May 16, 2008 11:55 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?

 

I did find the override cord system in studio not sure why I did not see
it before. I will try this and report back.

Thanks!

The Rock

On Fri, May 16, 2008 at 10:45 AM, Dave Wilson <[EMAIL PROTECTED]>
wrote:

Using MapGuide Studio and configuring Raster via an unmanaged connection
with the Autodesk provider there is the SupplementalSpatialContextInfo
as shown below in the feature source definition:

 

   

- http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">

  Autodesk.Raster 

- 

  DefaultRasterFileLocation 

 
%MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
 

  

- 

  Default 

 
PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID
["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree"
,0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["fal
se_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["cen
tral_meridian",-123.00],PARAMETER["scale_factor",0.9996],PAR
AMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]] 

  

  config.xml 



 

I'm not sure how the feature source looks for the Open Source provider,
but I'd be surprised there isn't an equivalent element available in the
schema.

 

Dave

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rock Beans
Sent: Friday, May 16, 2008 9:32 AM
To: MapGuide Users Mail List


Subject: Re: [mapguide-users] MrSID not working with 2.0?

 

In a raster based feature source there is no where to override a cord
system so can you please explain?

On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]>
wrote:

Just something to eliminate but often people in their feature sources
depending on the raster format are not ensuring a coordinate system is
defined on the feature source. This is important and is required, it's
possible this could cause some problems.

Dave


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?


I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the
crashes.
Therefore I disabled the raster layers. Looking on the forum there are a
lot
of people encountering similar problems with raster files.



Rock Beans wrote:
>
> That makes me cry a little. Well if I come up with anything I will
post
> back. Any other info from the top dogs would be great!
>
> Thanks
> The Rock
>
> On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> [EMAIL PROTECTED]> wrote:
>
>>  No luck hereI've had success with other formats though. I filed
a
>> trac about my mrsid problem a month ago (or so).
>>
>> Rock Beans wrote:
>>
>> I followed the directions on the
>> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0
pages.
>> I
>> am not getting any to work. I have not tested any other formats yet.
Has
>> anyone had luck with this or is there an update to the GDAL?
>>
>> The Rock
>>
>> --
>>
>> ___
>> mapguide-users mailing
>>
[EMAIL PROTECTED]://lists.osgeo.org/mailman/listinf
o/mapguide-users
>>
>>
>> --
>> *Andrew DeMerchant*
>>  *Computer Technologist*
>> ph.1-877-2GEMTEC x.163
>> fax 506-453-9470
>>
>> *GEMTEC Limited 
>> *191 Doak Road
>> Fredericton, NB, Canada
>>  E3C 2E6
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>

--
View this message in context:
http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.ht
ml
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users

 


___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-

Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Rock Beans
I found out I had a trailing slash on the raster path within the feature
source settings. For example, "C:\rasterfiles\" so removing that trailing
slash allowed the cord system override to actually work along with the
preview. Very strange these where settings from 1.2 so something must have
changed. Word to the wise simple fix :-) Still getting some MapGuide Server
lockups but I have to make sure everything cord system wise in in line
before I can judge.

The Rock


On Fri, May 16, 2008 at 10:54 AM, Rock Beans <[EMAIL PROTECTED]> wrote:

> I did find the override cord system in studio not sure why I did not see it
> before. I will try this and report back.
>
> Thanks!
>
> The Rock
>
>
> On Fri, May 16, 2008 at 10:45 AM, Dave Wilson <[EMAIL PROTECTED]>
> wrote:
>
>>  Using MapGuide Studio and configuring Raster via an unmanaged connection
>> with the Autodesk provider there is the SupplementalSpatialContextInfo as
>> shown below in the feature source definition:
>>
>>
>>
>>   
>>
>> - http://www.w3.org/2001/XMLSchema-instance";
>> xmlns:xsd="http://www.w3.org/2001/XMLSchema";
>> xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">
>>
>>   Autodesk.Raster
>>
>> - 
>>
>>   DefaultRasterFileLocation
>>
>>
>> %MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
>>
>>
>>   
>>
>> - 
>>
>>   Default
>>
>>
>> PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",-123.00],PARAMETER["scale_factor",0.9996],PARAMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]]
>>
>>
>>   
>>
>>   config.xml
>>
>> 
>>
>>
>>
>> I'm not sure how the feature source looks for the Open Source provider,
>> but I'd be surprised there isn't an equivalent element available in the
>> schema.
>>
>>
>>
>> Dave
>>
>>
>>
>> *From:* [EMAIL PROTECTED] [mailto:
>> [EMAIL PROTECTED] *On Behalf Of *Rock Beans
>> *Sent:* Friday, May 16, 2008 9:32 AM
>> *To:* MapGuide Users Mail List
>>
>> *Subject:* Re: [mapguide-users] MrSID not working with 2.0?
>>
>>
>>
>> In a raster based feature source there is no where to override a cord
>> system so can you please explain?
>>
>> On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]>
>> wrote:
>>
>> Just something to eliminate but often people in their feature sources
>> depending on the raster format are not ensuring a coordinate system is
>> defined on the feature source. This is important and is required, it's
>> possible this could cause some problems.
>>
>> Dave
>>
>>
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:
>> [EMAIL PROTECTED] On Behalf Of isca
>> Sent: Thursday, May 15, 2008 1:06 PM
>> To: mapguide-users@lists.osgeo.org
>> Subject: Re: [mapguide-users] MrSID not working with 2.0?
>>
>>
>> I am able to show MrSid files with MGOS 2.0, but from time to time I get
>> server crashes. The log files are indicating something went wrong with
>> stylization of the layer, but I could not find any pattern in the crashes.
>> Therefore I disabled the raster layers. Looking on the forum there are a
>> lot
>> of people encountering similar problems with raster files.
>>
>>
>>
>> Rock Beans wrote:
>> >
>> > That makes me cry a little. Well if I come up with anything I will post
>> > back. Any other info from the top dogs would be great!
>> >
>> > Thanks
>> > The Rock
>> >
>> > On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
>> > [EMAIL PROTECTED]> wrote:
>> >
>> >>  No luck hereI've had success with other formats though. I filed a
>> >> trac about my mrsid problem a month ago (or so).
>> >>
>> >> Rock Beans wrote:
>> >>
>> >> I followed the directions on the
>> >> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0pages.
>> >> I
>> >> am not getting any to work. I have not tested any other formats yet.
>> Has
>> >> anyone had luck with this or is there an update to the GDAL?
>> >>
>> >> The Rock
>> >>
>> >> --
>> >>
>> >> ___
>> >> mapguide-users mailing
>> >> [EMAIL PROTECTED]://
>> lists.osgeo.org/mailman/listinfo/mapguide-users
>> >>
>> >>
>> >> --
>> >> *Andrew DeMerchant*
>> >>  *Computer Technologist*
>> >> ph.1-877-2GEMTEC x.163
>> >> fax 506-453-9470
>> >>
>> >> *GEMTEC Limited 
>> >> *191 Doak Road
>> >> Fredericton, NB, Canada
>> >>  E3C 2E6
>> >>
>> >> ___
>> >> mapguide-users mailing list
>> >> mapguide-users@lists.osgeo.org
>> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>> >>
>> >>
>> >
>> >
>> > ___
>> > mapguide-users mailing list
>> > mapguide-users@lists.osgeo.org
>> > http://lists.osgeo.org/mailman/listinfo/mapguide-users
>> >
>> >
>>
>> --
>> View this message in context:
>> http:

Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Rock Beans
I did find the override cord system in studio not sure why I did not see it
before. I will try this and report back.

Thanks!

The Rock

On Fri, May 16, 2008 at 10:45 AM, Dave Wilson <[EMAIL PROTECTED]>
wrote:

>  Using MapGuide Studio and configuring Raster via an unmanaged connection
> with the Autodesk provider there is the SupplementalSpatialContextInfo as
> shown below in the feature source definition:
>
>
>
>   
>
> - http://www.w3.org/2001/XMLSchema-instance";
> xmlns:xsd="http://www.w3.org/2001/XMLSchema";
> xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">
>
>   Autodesk.Raster
>
> - 
>
>   DefaultRasterFileLocation
>
>
> %MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
>
>
>   
>
> - 
>
>   Default
>
>
> PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",-123.00],PARAMETER["scale_factor",0.9996],PARAMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]]
>
>
>   
>
>   config.xml
>
> 
>
>
>
> I'm not sure how the feature source looks for the Open Source provider, but
> I'd be surprised there isn't an equivalent element available in the schema.
>
>
>
> Dave
>
>
>
> *From:* [EMAIL PROTECTED] [mailto:
> [EMAIL PROTECTED] *On Behalf Of *Rock Beans
> *Sent:* Friday, May 16, 2008 9:32 AM
> *To:* MapGuide Users Mail List
>
> *Subject:* Re: [mapguide-users] MrSID not working with 2.0?
>
>
>
> In a raster based feature source there is no where to override a cord
> system so can you please explain?
>
> On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]>
> wrote:
>
> Just something to eliminate but often people in their feature sources
> depending on the raster format are not ensuring a coordinate system is
> defined on the feature source. This is important and is required, it's
> possible this could cause some problems.
>
> Dave
>
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:
> [EMAIL PROTECTED] On Behalf Of isca
> Sent: Thursday, May 15, 2008 1:06 PM
> To: mapguide-users@lists.osgeo.org
> Subject: Re: [mapguide-users] MrSID not working with 2.0?
>
>
> I am able to show MrSid files with MGOS 2.0, but from time to time I get
> server crashes. The log files are indicating something went wrong with
> stylization of the layer, but I could not find any pattern in the crashes.
> Therefore I disabled the raster layers. Looking on the forum there are a
> lot
> of people encountering similar problems with raster files.
>
>
>
> Rock Beans wrote:
> >
> > That makes me cry a little. Well if I come up with anything I will post
> > back. Any other info from the top dogs would be great!
> >
> > Thanks
> > The Rock
> >
> > On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> > [EMAIL PROTECTED]> wrote:
> >
> >>  No luck hereI've had success with other formats though. I filed a
> >> trac about my mrsid problem a month ago (or so).
> >>
> >> Rock Beans wrote:
> >>
> >> I followed the directions on the
> >> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0pages.
> >> I
> >> am not getting any to work. I have not tested any other formats yet. Has
> >> anyone had luck with this or is there an update to the GDAL?
> >>
> >> The Rock
> >>
> >> --
> >>
> >> ___
> >> mapguide-users mailing
> >> [EMAIL PROTECTED]://
> lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >> --
> >> *Andrew DeMerchant*
> >>  *Computer Technologist*
> >> ph.1-877-2GEMTEC x.163
> >> fax 506-453-9470
> >>
> >> *GEMTEC Limited 
> >> *191 Doak Road
> >> Fredericton, NB, Canada
> >>  E3C 2E6
> >>
> >> ___
> >> mapguide-users mailing list
> >> mapguide-users@lists.osgeo.org
> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >
> >
> > ___
> > mapguide-users mailing list
> > mapguide-users@lists.osgeo.org
> > http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
> Sent from the MapGuide Users mailing list archive at Nabble.com.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
___
mapguide-use

RE: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Dave Wilson
Using MapGuide Studio and configuring Raster via an unmanaged connection with 
the Autodesk provider there is the SupplementalSpatialContextInfo as shown 
below in the feature source definition:

  
- http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xsi:noNamespaceSchemaLocation="FeatureSource-1.0.0.xsd">
  Autodesk.Raster
- 
  DefaultRasterFileLocation
  
%MG_DATA_PATH_ALIAS[Cal_GBU_QA_Data]%Raster/SanFran-UTM27-10/jpg/
  
- 
  Default
  
PROJCS["UTM27-10",GEOGCS["LL27",DATUM["NAD27",SPHEROID["CLRK66",6378206.400,294.97869821]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Transverse_Mercator"],PARAMETER["false_easting",50.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",-123.00],PARAMETER["scale_factor",0.9996],PARAMETER["latitude_of_origin",0.000],UNIT["Meter",1.00]]
  
  config.xml


I'm not sure how the feature source looks for the Open Source provider, but I'd 
be surprised there isn't an equivalent element available in the schema.

Dave

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rock Beans
Sent: Friday, May 16, 2008 9:32 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?

In a raster based feature source there is no where to override a cord system so 
can you please explain?
On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]> wrote:
Just something to eliminate but often people in their feature sources depending 
on the raster format are not ensuring a coordinate system is defined on the 
feature source. This is important and is required, it's possible this could 
cause some problems.

Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL 
PROTECTED]] On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?


I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the crashes.
Therefore I disabled the raster layers. Looking on the forum there are a lot
of people encountering similar problems with raster files.



Rock Beans wrote:
>
> That makes me cry a little. Well if I come up with anything I will post
> back. Any other info from the top dogs would be great!
>
> Thanks
> The Rock
>
> On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> [EMAIL PROTECTED]> wrote:
>
>>  No luck hereI've had success with other formats though. I filed a
>> trac about my mrsid problem a month ago (or so).
>>
>> Rock Beans wrote:
>>
>> I followed the directions on the
>> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
>> I
>> am not getting any to work. I have not tested any other formats yet. Has
>> anyone had luck with this or is there an update to the GDAL?
>>
>> The Rock
>>
>> --
>>
>> ___
>> mapguide-users mailing
>> [EMAIL 
>> PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>> --
>> *Andrew DeMerchant*
>>  *Computer Technologist*
>> ph.1-877-2GEMTEC x.163
>> fax 506-453-9470
>>
>> *GEMTEC Limited 
>> *191 Doak Road
>> Fredericton, NB, Canada
>>  E3C 2E6
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>

--
View this message in context: 
http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Rock Beans
In a raster based feature source there is no where to override a cord system
so can you please explain?

On Thu, May 15, 2008 at 2:24 PM, Dave Wilson <[EMAIL PROTECTED]>
wrote:

> Just something to eliminate but often people in their feature sources
> depending on the raster format are not ensuring a coordinate system is
> defined on the feature source. This is important and is required, it's
> possible this could cause some problems.
>
> Dave
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:
> [EMAIL PROTECTED] On Behalf Of isca
> Sent: Thursday, May 15, 2008 1:06 PM
> To: mapguide-users@lists.osgeo.org
> Subject: Re: [mapguide-users] MrSID not working with 2.0?
>
>
> I am able to show MrSid files with MGOS 2.0, but from time to time I get
> server crashes. The log files are indicating something went wrong with
> stylization of the layer, but I could not find any pattern in the crashes.
> Therefore I disabled the raster layers. Looking on the forum there are a
> lot
> of people encountering similar problems with raster files.
>
>
>
> Rock Beans wrote:
> >
> > That makes me cry a little. Well if I come up with anything I will post
> > back. Any other info from the top dogs would be great!
> >
> > Thanks
> > The Rock
> >
> > On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> > [EMAIL PROTECTED]> wrote:
> >
> >>  No luck hereI've had success with other formats though. I filed a
> >> trac about my mrsid problem a month ago (or so).
> >>
> >> Rock Beans wrote:
> >>
> >> I followed the directions on the
> >> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0pages.
> >> I
> >> am not getting any to work. I have not tested any other formats yet. Has
> >> anyone had luck with this or is there an update to the GDAL?
> >>
> >> The Rock
> >>
> >> --
> >>
> >> ___
> >> mapguide-users mailing
> >> [EMAIL PROTECTED]://
> lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >> --
> >> *Andrew DeMerchant*
> >>  *Computer Technologist*
> >> ph.1-877-2GEMTEC x.163
> >> fax 506-453-9470
> >>
> >> *GEMTEC Limited 
> >> *191 Doak Road
> >> Fredericton, NB, Canada
> >>  E3C 2E6
> >>
> >> ___
> >> mapguide-users mailing list
> >> mapguide-users@lists.osgeo.org
> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >
> >
> > ___
> > mapguide-users mailing list
> > mapguide-users@lists.osgeo.org
> > http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
> Sent from the MapGuide Users mailing list archive at Nabble.com.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Rock Beans
I got SID to work on 2.0.1 but I had to find it in the map white space as
the cord system as not correct or something to that nature. I am having
overall issues with TIF as well now. Very frustrating. Will there be an
update to the GDAL for raster files? Without raster file support I cannot
push MapGuide Open Source to anyone of our clients. Same sites that where
working in 1.2 are not workign in 2.0 so there is most likely an issue here.


The Rock


On Thu, May 15, 2008 at 2:06 PM, isca <[EMAIL PROTECTED]> wrote:

>
> I am able to show MrSid files with MGOS 2.0, but from time to time I get
> server crashes. The log files are indicating something went wrong with
> stylization of the layer, but I could not find any pattern in the crashes.
> Therefore I disabled the raster layers. Looking on the forum there are a
> lot
> of people encountering similar problems with raster files.
>
>
>
> Rock Beans wrote:
> >
> > That makes me cry a little. Well if I come up with anything I will post
> > back. Any other info from the top dogs would be great!
> >
> > Thanks
> > The Rock
> >
> > On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
> > [EMAIL PROTECTED]> wrote:
> >
> >>  No luck hereI've had success with other formats though. I filed a
> >> trac about my mrsid problem a month ago (or so).
> >>
> >> Rock Beans wrote:
> >>
> >> I followed the directions on the
> >> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0pages.
> >> I
> >> am not getting any to work. I have not tested any other formats yet. Has
> >> anyone had luck with this or is there an update to the GDAL?
> >>
> >> The Rock
> >>
> >> --
> >>
> >> ___
> >> mapguide-users mailing
> >> [EMAIL PROTECTED]://
> lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >> --
> >> *Andrew DeMerchant*
> >>  *Computer Technologist*
> >> ph.1-877-2GEMTEC x.163
> >> fax 506-453-9470
> >>
> >> *GEMTEC Limited 
> >> *191 Doak Road
> >> Fredericton, NB, Canada
> >>  E3C 2E6
> >>
> >> ___
> >> mapguide-users mailing list
> >> mapguide-users@lists.osgeo.org
> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >
> >
> > ___
> > mapguide-users mailing list
> > mapguide-users@lists.osgeo.org
> > http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
> Sent from the MapGuide Users mailing list archive at Nabble.com.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] flexible layout (fusion) and hyperlink in attribute

2008-05-16 Thread Andy Morsell
I'm using Fusion and 2.0 with hyperlinks with no issues.  Same scenario, the
hyperlinks are read from a field in a MySQL database table.  In my case,
they are fully qualified with http://.  Maybe that would make a difference
for some reason? 


Andy Morsell, P.E.
Spatial Integrators, Inc.
http://www.SpatialGIS.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David Nuell
Sent: Friday, May 16, 2008 7:52 AM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] flexible layout (fusion) and hyperlink in
attribute


Hi listers -

I have been working with MG Studio 2009 and the flexible layouts and have
noticed a hyperlink issue.

I have a series of attributes in a DB that are all something like
www.something.com click here .  When I load a normal layout with these
attributes, the properties panel shows the hyperlink 'Click Here' without
any issues.  When I load the same data into a flexible layout (fusion) the
hyperlink does not show up... just the actual text  www.something.com click
here 

Anyone have a suggestion as to how to get this to work in the fusion layout?

cheers!

--
View this message in context:
http://www.nabble.com/flexible-layout-%28fusion%29-and-hyperlink-in-attribut
e-tp17276635p17276635.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Add properties to a point

2008-05-16 Thread Jackie C. Ng

You would have to alter the MgClassDefinition object for the Markup class to
accomodate the properties that you want to put in.

When you create your MgInsertFeatures object that gets passed to
MgFeatureService::UpdateFeatures(), you would include these extra new
properties as part of the new point to be inserted.

- Jackie


Dorin333 wrote:
> 
> Hi all,
> I want to add some extra properties to  point, generate through the Markup
> option from phpviewersample into MGOS.
> Can anyone tell me how?
> Thanks a lot.
> Dorin
> 
> 
> 
>   
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 


-
http://themapguyde.blogspot.com

http://www.linkedin.com/in/jackieng
-- 
View this message in context: 
http://www.nabble.com/Add-properties-to-a-point-tp17272945p17277070.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] flexible layout (fusion) and hyperlink in attribute

2008-05-16 Thread David Nuell

Hi listers -

I have been working with MG Studio 2009 and the flexible layouts and have
noticed a hyperlink issue.

I have a series of attributes in a DB that are all something like 
www.something.com click here .  When I load a normal layout with these
attributes, the properties panel shows the hyperlink 'Click Here' without
any issues.  When I load the same data into a flexible layout (fusion) the
hyperlink does not show up... just the actual text  www.something.com click
here 

Anyone have a suggestion as to how to get this to work in the fusion layout?

cheers!

-- 
View this message in context: 
http://www.nabble.com/flexible-layout-%28fusion%29-and-hyperlink-in-attribute-tp17276635p17276635.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] libOGRProvider.so

2008-05-16 Thread Traian Stanev

Try running "ldd -r " on the .so file to see if the provider is missing any 
dependencies. It doesn't seem like the .so is loading successfully, hence MG is 
unable to get the connection properties.

Traian


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of schwanzy
Sent: Friday, May 16, 2008 4:31 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] libOGRProvider.so

Jackie C. Ng wrote:

If you called the GetFeatureProviders method from the mapagent test pages, is

there an entry for OSGeo.OGR in the xml content and if so, does it have the

expected connection properties?



- Jackie


In (http://localhost:8008/mapguide/mapagent/ --> Feature --> 
GetFeatureProvider) "ConnectionProperties" is empty:

OSGeo.OGR.0.1
FDO Provider for OGR
Access to OGR data sources
3.2.2.0
3.2.2.0



Should I edit providers.xml?
I'm not sure that mixing "fdoogr-3.3.0.tar.gz" with fdo 3.2.2 sources required 
by MGOS 1.2was a good idea, but does it exist "fdoogr-3.2.3.tar.gz"?

Thanks.

// Simone
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Andrew DeMerchant




I've never even heard of mapguide-internals (is that another mailing
list?).but they should use the same gdal plugin, i'd imagine, as
I'm having to use. 

Zac Spitzer wrote:

  have you tried the mapguide 2.0.1 builds mentioned over on mapguide-internals?

i have found them to be much more stable, but i haven't tried any rasters yet...

z

On Fri, May 16, 2008 at 10:52 PM, Andrew DeMerchant
<[EMAIL PROTECTED]> wrote:
  
  
I've tried a bunch of different ways and image types (so it's a bit hard to
explain) - I think it'd be easier if someone posts a step by step
guide.given the number of people that have problems with this, I really
think that we need a revised (and much more specific) page / set of
instructions that gives exact details on how to set up and use the GDAL
plugins..I'm clearly not alone - there are lots of us that seem to be
missing some critical step. I know that the lack of the autodesk provider
was a big reason why I stuck with MGOS 1.x for so longI'd read about so
many people having problems getting the gdal to work, I was afraid that I'd
switch and lose my rasters...which has happened.

Andrew


Berdel, Brian wrote:

Andrew,

I was able to get them working and they a have been relatively stable, but
it is only on a development machine.  Can you outline the steps you took,
and maybe I can see if you missed a step or if I can make a suggestion.



Brian



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Andrew
DeMerchant
Sent: Friday, May 16, 2008 8:35 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?



Just out of curiosity, is there a way to use the old raster provider (from
MGOS 1.x) under 2.x? I've tried copying the dll and modifying the
providers.xml, but I think that I must have to register the dll in windows
somehow, because I got an invalid entry point msg (on the server) when I
tried to use it. Why did that provider get removed from the 2.x release
anyway? I know that it was an Autodesk provider and alldid they just
"lend" it to the 1.x open source release, under the condition that it be
removed for the 2.x branch?

Andrew



Dave Wilson wrote:

Just something to eliminate but often people in their feature sources
depending on the raster format are not ensuring a coordinate system is
defined on the feature source. This is important and is required, it's
possible this could cause some problems.



Dave



-Original Message-

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of isca

Sent: Thursday, May 15, 2008 1:06 PM

To: mapguide-users@lists.osgeo.org

Subject: Re: [mapguide-users] MrSID not working with 2.0?





I am able to show MrSid files with MGOS 2.0, but from time to time I get

server crashes. The log files are indicating something went wrong with

stylization of the layer, but I could not find any pattern in the crashes.

Therefore I disabled the raster layers. Looking on the forum there are a lot

of people encountering similar problems with raster files.







Rock Beans wrote:



That makes me cry a little. Well if I come up with anything I will post

back. Any other info from the top dogs would be great!



Thanks

The Rock



On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <

[EMAIL PROTECTED]> wrote:





 No luck hereI've had success with other formats though. I filed a

trac about my mrsid problem a month ago (or so).



Rock Beans wrote:



I followed the directions on the

http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.

I

am not getting any to work. I have not tested any other formats yet. Has

anyone had luck with this or is there an update to the GDAL?



The Rock



--



___

mapguide-users mailing

[EMAIL PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users





--

*Andrew DeMerchant*

 *Computer Technologist*

ph.1-877-2GEMTEC x.163

fax 506-453-9470



*GEMTEC Limited 

*191 Doak Road

Fredericton, NB, Canada

 E3C 2E6



___

mapguide-users mailing list

mapguide-users@lists.osgeo.org

http://lists.osgeo.org/mailman/listinfo/mapguide-users









___

mapguide-users mailing list

mapguide-users@lists.osgeo.org

http://lists.osgeo.org/mailman/listinfo/mapguide-users









--

View this message in context:
http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html

Sent from the MapGuide Users mailing list archive at Nabble.com.



___

mapguide-users mailing list

mapguide-users@lists.osgeo.org

http://lists.osgeo.org/mailman/listinfo/mapguide-users

___

mapguide-users mailing list

mapguide-users@lists.osgeo.org

http://lists.osgeo.org/mailman/listinfo/mapguide-users









--

Andrew DeMerchant
Computer

Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Zac Spitzer
have you tried the mapguide 2.0.1 builds mentioned over on mapguide-internals?

i have found them to be much more stable, but i haven't tried any rasters yet...

z

On Fri, May 16, 2008 at 10:52 PM, Andrew DeMerchant
<[EMAIL PROTECTED]> wrote:
> I've tried a bunch of different ways and image types (so it's a bit hard to
> explain) - I think it'd be easier if someone posts a step by step
> guide.given the number of people that have problems with this, I really
> think that we need a revised (and much more specific) page / set of
> instructions that gives exact details on how to set up and use the GDAL
> plugins..I'm clearly not alone - there are lots of us that seem to be
> missing some critical step. I know that the lack of the autodesk provider
> was a big reason why I stuck with MGOS 1.x for so longI'd read about so
> many people having problems getting the gdal to work, I was afraid that I'd
> switch and lose my rasters...which has happened.
>
> Andrew
>
>
> Berdel, Brian wrote:
>
> Andrew,
>
> I was able to get them working and they a have been relatively stable, but
> it is only on a development machine.  Can you outline the steps you took,
> and maybe I can see if you missed a step or if I can make a suggestion.
>
>
>
> Brian
>
> 
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Andrew
> DeMerchant
> Sent: Friday, May 16, 2008 8:35 AM
> To: MapGuide Users Mail List
> Subject: Re: [mapguide-users] MrSID not working with 2.0?
>
>
>
> Just out of curiosity, is there a way to use the old raster provider (from
> MGOS 1.x) under 2.x? I've tried copying the dll and modifying the
> providers.xml, but I think that I must have to register the dll in windows
> somehow, because I got an invalid entry point msg (on the server) when I
> tried to use it. Why did that provider get removed from the 2.x release
> anyway? I know that it was an Autodesk provider and alldid they just
> "lend" it to the 1.x open source release, under the condition that it be
> removed for the 2.x branch?
>
> Andrew
>
>
>
> Dave Wilson wrote:
>
> Just something to eliminate but often people in their feature sources
> depending on the raster format are not ensuring a coordinate system is
> defined on the feature source. This is important and is required, it's
> possible this could cause some problems.
>
>
>
> Dave
>
>
>
> -Original Message-
>
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of isca
>
> Sent: Thursday, May 15, 2008 1:06 PM
>
> To: mapguide-users@lists.osgeo.org
>
> Subject: Re: [mapguide-users] MrSID not working with 2.0?
>
>
>
>
>
> I am able to show MrSid files with MGOS 2.0, but from time to time I get
>
> server crashes. The log files are indicating something went wrong with
>
> stylization of the layer, but I could not find any pattern in the crashes.
>
> Therefore I disabled the raster layers. Looking on the forum there are a lot
>
> of people encountering similar problems with raster files.
>
>
>
>
>
>
>
> Rock Beans wrote:
>
>
>
> That makes me cry a little. Well if I come up with anything I will post
>
> back. Any other info from the top dogs would be great!
>
>
>
> Thanks
>
> The Rock
>
>
>
> On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
>
> [EMAIL PROTECTED]> wrote:
>
>
>
>
>
>  No luck hereI've had success with other formats though. I filed a
>
> trac about my mrsid problem a month ago (or so).
>
>
>
> Rock Beans wrote:
>
>
>
> I followed the directions on the
>
> http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
>
> I
>
> am not getting any to work. I have not tested any other formats yet. Has
>
> anyone had luck with this or is there an update to the GDAL?
>
>
>
> The Rock
>
>
>
> --
>
>
>
> ___
>
> mapguide-users mailing
>
> [EMAIL PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
>
>
>
> --
>
> *Andrew DeMerchant*
>
>  *Computer Technologist*
>
> ph.1-877-2GEMTEC x.163
>
> fax 506-453-9470
>
>
>
> *GEMTEC Limited 
>
> *191 Doak Road
>
> Fredericton, NB, Canada
>
>  E3C 2E6
>
>
>
> ___
>
> mapguide-users mailing list
>
> mapguide-users@lists.osgeo.org
>
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
>
>
>
>
>
>
>
> ___
>
> mapguide-users mailing list
>
> mapguide-users@lists.osgeo.org
>
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
>
>
>
>
>
>
>
> --
>
> View this message in context:
> http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
>
> Sent from the MapGuide Users mailing list archive at Nabble.com.
>
>
>
> ___
>
> mapguide-users mailing list
>
> mapguide-users@lists.osgeo.org
>
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
> ___
>
> m

Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Andrew DeMerchant




I've tried a bunch of different ways and image types (so it's a bit
hard to explain) - I think it'd be easier if someone posts a step by
step guide.given the number of people that have problems with this,
I really think that we need a revised (and much more specific) page /
set of instructions that gives exact details on how to set up and use
the GDAL plugins..I'm clearly not alone - there are lots of us that
seem to be missing some critical step. I know that the lack of the
autodesk provider was a big reason why I stuck with MGOS 1.x for so
longI'd read about so many people having problems getting the gdal
to work, I was afraid that I'd switch and lose my rasters...which has
happened. 

Andrew


Berdel, Brian wrote:

  
  

  
  
  

  
  
  
  Andrew, 
  I was able
to get them working and they a
have been relatively stable, but it is only on a development machine. 
Can you
outline the steps you took, and maybe I can see if you missed a step or
if I
can make a suggestion.   
   
  
  
  Brian
  
  
  
  
  
  From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Andrew DeMerchant
  Sent: Friday, May 16,
2008 8:35 AM
  To: MapGuide Users Mail List
  Subject: Re:
[mapguide-users]
MrSID not working with 2.0?
  
   
  Just out of curiosity, is
there a way to use the old
raster provider (from MGOS 1.x) under 2.x? I've tried copying the dll
and
modifying the providers.xml, but I think that I must have to register
the dll
in windows somehow, because I got an invalid entry point msg (on the
server)
when I tried to use it. Why did that provider get removed from the 2.x
release
anyway? I know that it was an Autodesk provider and alldid they
just
"lend" it to the 1.x open source release, under the condition that it
be removed for the 2.x branch? 
  
Andrew
  
  
  
Dave Wilson wrote: 
  Just something to eliminate but often people in their feature sources depending on the raster format are not ensuring a coordinate system is defined on the feature source. This is important and is required, it's possible this could cause some problems.
   
  Dave
   
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of isca
  Sent: Thursday, May 15, 2008 1:06 PM
  To: mapguide-users@lists.osgeo.org
  Subject: Re: [mapguide-users] MrSID not working with 2.0?
   
   
  I am able to show MrSid files with MGOS 2.0, but from time to time I get
  server crashes. The log files are indicating something went wrong with
  stylization of the layer, but I could not find any pattern in the crashes.
  Therefore I disabled the raster layers. Looking on the forum there are a lot
  of people encountering similar problems with raster files.
   
   
   
  Rock Beans wrote:
    
  
That makes me cry a little. Well if I come up with anything I will post
back. Any other info from the top dogs would be great!
 
Thanks
The Rock
 
On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
[EMAIL PROTECTED]> wrote:
 
    

   No luck hereI've had success with other formats though. I filed a
  trac about my mrsid problem a month ago (or so).
   
  Rock Beans wrote:
   
  I followed the directions on the
  http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
  I
  am not getting any to work. I have not tested any other formats yet. Has
  anyone had luck with this or is there an update to the GDAL?
   
  The Rock
   
  --
   
  ___
  mapguide-users mailing
  [EMAIL PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users
   
   
  --
      *Andrew DeMerchant*
   *Computer Technologist*
  ph.1-877-2GEMTEC x.163
  fax 506-453-9470
   
  *GEMTEC Limited 
  *191 Doak Road
  Fredericton, NB, Canada
   E3C 2E6
   
  ___
  mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/mapguide-users
   
   
    

 
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
 
 
    
  
   
  --
  View this message in context: http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
  Sent from the MapGuide Users mailing list archive at Nabble.com.
   
  ___
  mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/mapguide-users
  ___
  mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/mapguide-users
   
   
    
   
  
  -- 
  

  




Andrew

RE: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Berdel, Brian
Andrew, 

I was able to get them working and they a have been relatively stable,
but it is only on a development machine.  Can you outline the steps you
took, and maybe I can see if you missed a step or if I can make a
suggestion.   

 

Brian



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andrew
DeMerchant
Sent: Friday, May 16, 2008 8:35 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] MrSID not working with 2.0?

 

Just out of curiosity, is there a way to use the old raster provider
(from MGOS 1.x) under 2.x? I've tried copying the dll and modifying the
providers.xml, but I think that I must have to register the dll in
windows somehow, because I got an invalid entry point msg (on the
server) when I tried to use it. Why did that provider get removed from
the 2.x release anyway? I know that it was an Autodesk provider and
alldid they just "lend" it to the 1.x open source release, under the
condition that it be removed for the 2.x branch? 

Andrew



Dave Wilson wrote: 

Just something to eliminate but often people in their feature sources
depending on the raster format are not ensuring a coordinate system is
defined on the feature source. This is important and is required, it's
possible this could cause some problems.
 
Dave
 
-Original Message-
From: [EMAIL PROTECTED] [
mailto:[EMAIL PROTECTED] On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?
 
 
I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the
crashes.
Therefore I disabled the raster layers. Looking on the forum there are a
lot
of people encountering similar problems with raster files.
 
 
 
Rock Beans wrote:
  

That makes me cry a little. Well if I come up with anything I
will post
back. Any other info from the top dogs would be great!
 
Thanks
The Rock
 
On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
[EMAIL PROTECTED]> wrote:
 


 No luck hereI've had success with other formats
though. I filed a
trac about my mrsid problem a month ago (or so).
 
Rock Beans wrote:
 
I followed the directions on the

http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
I
am not getting any to work. I have not tested any other
formats yet. Has
anyone had luck with this or is there an update to the
GDAL?
 
The Rock
 
--
 
___
mapguide-users mailing

[EMAIL PROTECTED]://lists.osgeo.org/mailman/listinf
o/mapguide-users
 
 
--
*Andrew DeMerchant*
 *Computer Technologist*
ph.1-877-2GEMTEC x.163
fax 506-453-9470
 
*GEMTEC Limited 
 
*191 Doak Road
Fredericton, NB, Canada
 E3C 2E6
 
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
 
 
  

 
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
 
 


 
--
View this message in context: 
http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.ht
ml
Sent from the MapGuide Users mailing list archive at Nabble.com.
 
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
 
 
  

 

-- 

 

Andrew DeMerchant
Computer Technologist
ph.1-877-2GEMTEC x.163
fax 506-453-9470

GEMTEC Limited  
191 Doak Road
Fredericton, NB, Canada
E3C 2E6

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MrSID not working with 2.0?

2008-05-16 Thread Andrew DeMerchant




Just out of curiosity, is there a way to use the old raster provider
(from MGOS 1.x) under 2.x? I've tried copying the dll and modifying the
providers.xml, but I think that I must have to register the dll in
windows somehow, because I got an invalid entry point msg (on the
server) when I tried to use it. Why did that provider get removed from
the 2.x release anyway? I know that it was an Autodesk provider and
alldid they just "lend" it to the 1.x open source release, under
the condition that it be removed for the 2.x branch? 

Andrew



Dave Wilson wrote:

  Just something to eliminate but often people in their feature sources depending on the raster format are not ensuring a coordinate system is defined on the feature source. This is important and is required, it's possible this could cause some problems.

Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of isca
Sent: Thursday, May 15, 2008 1:06 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] MrSID not working with 2.0?


I am able to show MrSid files with MGOS 2.0, but from time to time I get
server crashes. The log files are indicating something went wrong with
stylization of the layer, but I could not find any pattern in the crashes.
Therefore I disabled the raster layers. Looking on the forum there are a lot
of people encountering similar problems with raster files.



Rock Beans wrote:
  
  
That makes me cry a little. Well if I come up with anything I will post
back. Any other info from the top dogs would be great!

Thanks
The Rock

On Tue, May 13, 2008 at 1:54 PM, Andrew DeMerchant <
[EMAIL PROTECTED]> wrote:



   No luck hereI've had success with other formats though. I filed a
trac about my mrsid problem a month ago (or so).

Rock Beans wrote:

I followed the directions on the
http://trac.osgeo.org/fdo/wiki/FdoGdalNotes#FDO3.3.0MapGuide2.0.0 pages.
I
am not getting any to work. I have not tested any other formats yet. Has
anyone had luck with this or is there an update to the GDAL?

The Rock

--

___
mapguide-users mailing
[EMAIL PROTECTED]://lists.osgeo.org/mailman/listinfo/mapguide-users


--
*Andrew DeMerchant*
 *Computer Technologist*
ph.1-877-2GEMTEC x.163
fax 506-453-9470

*GEMTEC Limited 
*191 Doak Road
Fredericton, NB, Canada
 E3C 2E6

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


  


___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users



  
  
--
View this message in context: http://www.nabble.com/MrSID-not-working-with-2.0--tp17215741p17260246.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


  


-- 

  

  
   
  
  Andrew DeMerchant
   Computer Technologist
  ph.1-877-2GEMTEC x.163
fax 506-453-9470
   
  GEMTEC Limited
  191 Doak
Road
  Fredericton,
NB, Canada
   E3C 2E6
  

  




___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Add properties to a point

2008-05-16 Thread Dorin
Hi all,
I want to add some extra properties to  point, generate through the Markup 
option from phpviewersample into MGOS.
Can anyone tell me how?
Thanks a lot.
Dorin



  ___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Configure MWS Connection: The HTTP request was denied (forbidden) by the server.

2008-05-16 Thread Crispin @ 1Spatial

Hi,

Any help folks?  Is this a user/server configuration problem I can fix or a
new issue with 2713 (2.0.1)?
I am sure I at least could successfully Test this connection in v2.0.0 to
this particular WMS.

Thanks.


<2008-05-16T09:22:45>   Administrator
 Error: An exception occurred in FDO component.
The HTTP request was denied (forbidden) by the server.  
 StackTrace:
  - MgFeatureServiceHandler.ProcessOperation line 83 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.13\mgdev\server\src\services\feature\FeatureServiceHandler.cpp
  - MgOpTestFeatureSourceConnection.Execute line 100 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.13\mgdev\server\src\services\feature\OpTestFeatureSourceConnection.cpp
  - MgFdoConnectionManager.Open line 858 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.13\mgdev\server\src\common\manager\FdoConnectionManager.cpp
An exception occurred in FDO component.
The HTTP request was denied (forbidden) by the server.  
-- 
View this message in context: 
http://www.nabble.com/Configure-MWS-Connection%3A-The-HTTP-request-was-denied-%28forbidden%29-by-the-server.-tp17270106p17270106.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] libOGRProvider.so

2008-05-16 Thread schwanzy

Jackie C. Ng wrote:

If you called the GetFeatureProviders method from the mapagent test pages, is
there an entry for OSGeo.OGR in the xml content and if so, does it have the
expected connection properties?

- Jackie
  
In (http://localhost:8008/mapguide/mapagent/ --> Feature --> 
GetFeatureProvider) "ConnectionProperties" is empty:


   
   OSGeo.OGR.0.1
   FDO Provider for OGR
   Access to OGR data sources
   3.2.2.0
   3.2.2.0
   
   


Should I edit providers.xml?
I'm not sure that mixing "fdoogr-3.3.0.tar.gz" with fdo 3.2.2 sources 
required by MGOS 1.2was a good idea, but does it exist 
"fdoogr-3.2.3.tar.gz"?


Thanks.

// Simone
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users