Re: [mapguide-users] View on Oracle Express

2010-09-07 Thread Francesco Sozzi
Hi Zac, thanks for suggestion. As soon as I can I will check Best regards Francesco - Original Message - From: Zac Spitzer zac.spit...@gmail.com To: MapGuide Users Mail List mapguide-users@lists.osgeo.org Sent: Monday, September 06, 2010 6:26 PM Subject: Re: [mapguide-users] View on

Re: [mapguide-users] View on Oracle Express

2010-09-07 Thread Francesco Sozzi
Hi Mark, Thanks for answer. I confirm primary key and spatial index for both tables and views. On Oracle Express I manage small data. Tablespaces are smaller that 100MB. I tried to drop and recreate all keys and spatial index. Oracle did the job with no warnings or errors, so I am sure all

Re: [mapguide-users] View on Oracle Express

2010-09-07 Thread Simon Pelicon
Hi! If you are using King Oracle Provider try using *KingFdoClass *table to populate view as FDO Class instead of inserting views in USER_SDO_GEOM_METADATA. Here are instruction on how to do this: http://www.sl-king.com/fdooracle/KingFdoClass.htm Simon Instead inserting views in

[mapguide-users] Re: Coordinate systems Issue

2010-09-07 Thread Mauricio Villablanca
It's clear: you need to change the coordinate system of your map or edit your shp with ArcGIS. -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Coordinate-systems-Issue-tp5504876p5506073.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Anonymous user without password can't connect to MGServer with MaestroAPI

2010-09-07 Thread carls
It will fail if connecting Anonymous user to MGServer with ConnectionFactory.CreateHttpConnection in MaestroAPI 2.1+. I scanned the source and found the following code in class 'HttpServerConnection': internal HttpServerConnection(NameValueCollection initParams) : this() { .. if

[mapguide-users] Re: Anonymous user without password can't connect to MGServer with MaestroAPI

2010-09-07 Thread carls
I have two suggest: 1. permit empty or null password 2. permit null user, and treat null user as Anonymous user with null password. Thanks! - Regards, Carl SHE -- View this message in context:

[mapguide-users] Re: Anonymous user without password can't connect to MGServer with MaestroAPI

2010-09-07 Thread Jackie Ng
Thanks for the heads up, a fix for has been submitted under ticket 1430: http://trac.osgeo.org/mapguide/ticket/1430 - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Anonymous-user-without-password-can-t-connect-to-MGServer-with-MaestroAPI-tp5507729p5508728.html

[mapguide-users] Re: Anonymous user without password can't connect to MGServer with MaestroAPI

2010-09-07 Thread carls
Thank you very much, Jackie, Could you please modify LocalNativeConnection also? internal LocalNativeConnection(NameValueCollection initParams) 51 : this() 52 { 53 if (initParams[PARAM_SESSION] != null) 54 { 55 string sessionid =

[mapguide-users] Re: Anonymous user without password can't connect to MGServer with MaestroAPI

2010-09-07 Thread Jackie Ng
Done. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Anonymous-user-without-password-can-t-connect-to-MGServer-with-MaestroAPI-tp5507729p5509130.html Sent from the MapGuide Users mailing list archive at Nabble.com.

RE: [mapguide-users] View on Oracle Express

2010-09-07 Thread VOLZ Mark (FN)
Francesco, That all seems very strange (that it is working on tables but not views). Are you changing the geometry in anyway in your views? i.e. are you using any of cs_transform, aggr, sdo functions/procedures, custom packages/functions/procedures, etc? certain ones will null and void your

Re: [mapguide-users] View on Oracle Express

2010-09-07 Thread Zac Spitzer
also remember that mapguide caches the schema info, so once you have accessed a schema, mapguide won't read the schema until that cache expires... so no changes will show up you can flush the cache by simply opening and saving the feature source defintion z On Wed, Sep 8, 2010 at 2:30 PM, VOLZ