[mapguide-users] Re: defining coordinate systems in MGE

2010-03-16 Thread Jackie Ng
If you have AutoCAD Map, you can define new coordinate systems there. Here's a blog entry describing how it's done (It's in german, so run it through Google Translate) http://geospatialnavigator.typepad.com/geospatial_navigator/2010/02/neue-koordinatensysteme-mapguide-pandora.html - Jackie --

[mapguide-users] Re: who use which viewer API version?

2010-03-17 Thread Jackie Ng
Basic Layouts (.net/PHP) for me. The "out of the box"-ness is great for what we need. Though I find PHP to be quite a horrid language, it has a nice "zero configuration" aspect to it. .net is my preferred environment, but it can be unstable sometimes without some tweaks to the IIS settings. But

[mapguide-users] Re: MGOS 2.1 Install problems

2010-03-18 Thread Jackie Ng
I noticed the "Program Files (x86)", what 64-bit OS are you using? - Jackie -- View this message in context: http://n2.nabble.com/MGOS-2-1-Install-problems-tp4761056p4761142.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ map

[mapguide-users] Re: SetVisible worked in 2.0, fails in 2.1

2010-03-19 Thread Jackie Ng
Is that layer a base map layer? >From API doc: Note also that the visibility of base map layers (those of type MgLayerType::BaseMap) cannot be changed. Attempting to do so will throw an MgInvalidOperationException. - Jackie -- View this message in context: http://n2.nabble.com/SetVisible-wor

[mapguide-users] Re: How to integrate the ZoomToView function

2010-03-21 Thread Jackie Ng
Hi Christoph, Try this sample here: http://trac.osgeo.org/mapguide/wiki/CodeSamples/PHP/InitialMapView The WebLayout document which defines your AJAX viewer interface, has a section that specifies the initial extents of the map. The above code sample re-writes the initial extents in that docume

[mapguide-users] Re: (1092688208) Resource was not found: Library://Samples/Layouts/Sample.WebLayout

2010-03-22 Thread Jackie Ng
Have you set display_errors = On in your php.ini? It may reveal more information. - Jackie -- View this message in context: http://n2.nabble.com/1092688208-Resource-was-not-found-Library-Samples-Layouts-Sample-WebLayout-tp4780445p4781191.html Sent from the MapGuide Users mailing list archive at

[mapguide-users] Re: Discalaimer Patch ?

2010-03-31 Thread Jackie Ng
Regarding modification of ajaxmappane: As long as you don't rearrange the position of the %s tokens spread throughout the file, everything should be fine. Something like this would probably be better as a posted code sample. Enhancements that address a clear deficiency in functionality or usabi

[mapguide-users] Re: Edit WebLayout Problem

2010-04-07 Thread Jackie Ng
Assuming you're using a session based off of the Anonymous login, this is expected behaviour because the Anonymous login does not have write access to the main site repository. If you want to do this kind of stuff, write your changes to the session repository instead. - Jackie -- View this mess

[mapguide-users] Re: Edit WebLayout Problem

2010-04-08 Thread Jackie Ng
Instead of saving to Library://Samples/Sheboygan/Layouts/SheboyganAsp.WebLayout Save to something like Session://SheboyganAsp.WebLayout And use this same session resource id when you want to load it in the AJAX viewer: http://localhost/mapguide/mapviewerajax/?WEBLAYOUT=Session://SheboyganAsp.We

[mapguide-users] Re: Edit WebLayout Problem

2010-04-08 Thread Jackie Ng
If you modify the weblayout document, you need to reload the entire viewer using the resource id of this modified weblayout to see the changes. You cannot modify the visibility of AJAX viewer UI elements once it has been loaded. - Jackie -- View this message in context: http://n2.nabble.com/Ed

[mapguide-users] Re: map is not shown in the mozilla firefox

2010-04-08 Thread Jackie Ng
Firefox 3.0 and above do not work for MGOS releases older than 2.0.2 - Jackie -- View this message in context: http://n2.nabble.com/map-is-not-shown-in-the-mozilla-firefox-tp4875326p4875338.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Re: MapGuide Studio API Package NET

2010-04-11 Thread Jackie Ng
Maestro has a packager API (in OSGeo.MapGuide.MaestroAPI.PackageBuilder.dll) that creates AND uploads packages. Sample usage: ServerConnectionI conn = new HttpServerConnection(new Uri("http://localhost/mapguide/mapagent/mapagent.fcgi";, "Administrator", "admin", "en", true); PackageBuilder build

[mapguide-users] Re: MapGuide Studio API Package NET

2010-04-12 Thread Jackie Ng
If it's not a full path, the MyPackage.mgp will be created in the same directory as the MaestroAPI dll - Jackie -- View this message in context: http://n2.nabble.com/MapGuide-Studio-API-Package-NET-tp4886962p4893359.html Sent from the MapGuide Users mailing list archive at Nabble.com. _

[mapguide-users] Re: MapGuide Studio API Package NET

2010-04-12 Thread Jackie Ng
You are correct. MapGuide Studio API does not have the ability to create packages from an existing MapGuide Server (to my knowledge). Hence why I suggested a solution using the Maestro API. - Jackie -- View this message in context: http://n2.nabble.com/MapGuide-Studio-API-Package-NET-tp4886962p

[mapguide-users] Re: Display the Query Result in a separate popup window

2010-04-19 Thread Jackie Ng
There is no frame named "maparea" in your sample - Jackie -- View this message in context: http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4929475.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Maestro 2.1 Preview Release

2010-04-27 Thread Jackie Ng
Hi All, I have posted a preview of the upcoming 2.1 release of Maestro (based on svn r4814) Some of the new features include: - DSN browsing support for the ODBC feature source editor - Map Editor enhancements - Double clicking any layer in the Map Editor will now open the Layer Editor -

[mapguide-users] Re: Trouble getting started

2010-04-27 Thread Jackie Ng
Create a php page that simply calls phpinfo() and load that in your web browser. If it loads successfully, check that the loaded configuration file was from your MGOS installation and that MapGuideApi is one of the loaded extensions. - Jackie -- View this message in context: http://osgeo-org.1

[mapguide-users] RE: Maestro 2.1 Preview Release

2010-04-27 Thread Jackie Ng
The paypal link in the About dialog now goes through to my account. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Maestro-2-1-Preview-Release-tp4972791p4972961.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: Trouble getting started

2010-04-27 Thread Jackie Ng
Yes that should indicate a functional PHP web extension Perhaps try running the mapguide server interactively from the command line. 1. Shut down the mapguide server service. 2. Go to C:\Program Files\OSGeo\MapGuide\Server\bin in your command prompt 3. Type "mgserver.exe /run" 4. Watch for any e

[mapguide-users] Re: Trouble getting started

2010-04-28 Thread Jackie Ng
This could well be it. There is a utility called unlocker (http://ccollomb.free.fr/unlocker/) that lets you find out what process(es) are locking a file and optionally release any open handles or kill the locking processes. If you take this path, of course make sure mgserver.exe (and the backgr

[mapguide-users] Re: How to know feature type

2010-04-28 Thread Jackie Ng
Call GetClassDefinition() on your MgLayer/MgLayerBase object That returns a MgClassDefinition, which should have a MgGeometricPropertyDefinition in its collection of property definitions. MgClassDefinition.GetDefaultGeometryPropertyName() gives you a hint as to the name of the property definiti

[mapguide-users] Re: Trouble getting started

2010-04-28 Thread Jackie Ng
Well unfortunately the blahblahblah bit is somewhat important. Is it a process id? Process name? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Trouble-getting-started-tp4209353p4973451.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Re: Trouble getting started

2010-04-28 Thread Jackie Ng
Maybe there's a stray mgserver.exe process running? Other than that I have no idea. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Trouble-getting-started-tp4209353p4973566.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: How to bring Task Pane back?

2010-04-28 Thread Jackie Ng
This shortcoming has been fixed in 2.2 Ticket ref: http://trac.osgeo.org/mapguide/ticket/1287 Here's the the actual submission: http://trac.osgeo.org/mapguide/changeset/4631 - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/How-to-bring-Task-Pane-back-tp4976596p

[mapguide-users] Re: Trouble getting started

2010-04-28 Thread Jackie Ng
That list of files is normal. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Trouble-getting-started-tp4209353p4978007.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide-users mailing l

[mapguide-users] Re: Reprojet Oracle layer

2010-04-28 Thread Jackie Ng
If your Map Definition's CS differs from the CS in one or more of your layers, they will be re-projected on the fly to match the one in the Map Definition. There is some performance loss (cost of re-projection) as a result however. - Jackie -- View this message in context: http://osgeo-org.1803

[mapguide-users] Re: Reprojet Oracle layer

2010-04-29 Thread Jackie Ng
The layer just has to belong to the map. MapGuide will do the re-projection on-the-fly when rendering your map. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Reprojet-Oracle-layer-tp4978013p4978836.html Sent from the MapGuide Users mailing list archive at Nabb

[mapguide-users] Re: Plot Dwf Files

2010-04-29 Thread Jackie Ng
Which version of Design Review are you using? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Plot-Dwf-Files-tp4969570p4983676.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide-users ma

[mapguide-users] Re: Setting / changing the initial Administrator password

2010-04-30 Thread Jackie Ng
The installer does not have any password changing functionality - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Setting-changing-the-initial-Administrator-password-tp4984284p4984400.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: Difference between MapGuide Web Studio / Map Studio / Maestro

2010-05-03 Thread Jackie Ng
Web Studio was a very old web-based authoring application. It was dropped because nobody maintained it. Map Studio is the old name for what is now Maestro - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Difference-between-MapGuide-Web-Studio-Map-Studio-Maestro-

[mapguide-users] Re: Session ID Problem

2010-05-04 Thread Jackie Ng
There's no query string parameters in the URL you're loading - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Session-ID-Problem-tp5007327p5007331.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: Cannot get any DSN for ODBC Provider

2010-05-05 Thread Jackie Ng
What version of Maestro are you using? The latest 2.1 preview has support for browsing ODBC DSNs - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Cannot-get-any-DSN-for-ODBC-Provider-tp5011323p5012027.html Sent from the MapGuide Users mailing list archive at Nabb

[mapguide-users] Re: Cannot get any DSN for ODBC Provider

2010-05-06 Thread Jackie Ng
Ok then it's looks like a 64-bit ODBC problem. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Cannot-get-any-DSN-for-ODBC-Provider-tp5011323p5013025.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: connection property port clarification please

2010-05-09 Thread Jackie Ng
Hi Neil, These 3 ports are what the MapGuide Server listens on when you use the MapGuide API. As such the numbers in serverconfig.ini (MapGuide Server) and webconfig.ini (Web Extensions) must be identical. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/connec

[mapguide-users] Re: Download an mgp package from Mapguide Resource Repository in an automated way

2010-05-10 Thread Jackie Ng
Studio doesn't offer an API to let you download packages. Maestro however does have one. Take a look at the PackageBuilder class in the OSGeo.MapGuide.MaestroAPI.PackageBuilder.dll assembly. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Download-an-mgp-packag

[mapguide-users] Re: How to get MgPoint from MgGeometry?

2010-05-12 Thread Jackie Ng
MgPoint derives from MgGeometry. Just cast it, but you should check that GetGeometryType() == MgGeometryType.Point - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/How-to-get-MgPoint-from-MgGeometry-tp5044347p5044706.html Sent from the MapGuide Users mailing list

[mapguide-users] Maestro users on Linux/Mac via Mono

2010-05-16 Thread Jackie Ng
Hi All, I have some questions for any users of Maestro on the Mono platform. 1. What version of Mono are you using? 2. How is the stability and usability? Are there certain things that don't work when running Maestro under Mono? One of the items I want to focus on after the 2.1 release of Ma

[mapguide-users] Re: MapGuide Open Source 2.2 beta released

2010-06-03 Thread Jackie Ng
Could you create a trac ticket with an attached MSI log of the failed installation? To enable MSI logging run the internal msi as so: msiexec /l*v install.log /i The exe installer is just a self-extracting executable. You should be able to extract the internal msi using 7-zip (http://7-zip.org

[mapguide-users] Re: MapGuide RFC 78 - Enhance transaction capability to Feature Service

2010-06-04 Thread Jackie Ng
It is a more intuitive wrapper around FDO transactions, so this only applies to FDO providers that support transactions. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/We-are-pleased-to-announce-our-Mapguide-projects-iSlovenija-iObcina-and-iKomunala-tp5116870p5

[mapguide-users] Maestro 2.1 Preview Release 2

2010-06-07 Thread Jackie Ng
Hi All, I have posted a 2nd Preview Release of Maestro 2.1, some of the changes include: * Support for connecting using the official .net API dlls (LocalNativeConnection). Resource previews are disabled in this mode. * Many bug fixes and small improvments. Many thanks to Pierre Cardinal for p

[mapguide-users] Re: [mapguide-internals] Fwd: [mapguide-announce] MapGuide Open Source 2.2 beta released

2010-06-07 Thread Jackie Ng
The env var is there. It just doesn't need a reboot for the MG server to pick it up. Like Zac, I installed MGOS 2.2 b1 on my Windows 7 x64 box said no to the reboot and my services panel shows the MapGuide Server as running. I'm wondering which version of windows did this behaviour start to occ

[mapguide-users] Re: oracle data connection (error with fdo 3.4/3.5)

2010-06-15 Thread Jackie Ng
You cannot use providers that are built against a different version of FDO (3.5) from the one you are currently using (3.4). If your installation of MapGuide uses FDO 3.4, you have to use a provider that was built against FDO 3.4.x - Jackie -- View this message in context: http://osgeo-org.1803

[mapguide-users] Re: Maestro users on Linux/Mac via Mono

2010-06-18 Thread Jackie Ng
Don't have a mac so I can't verify. What I will say however is that browser previews are just simply passing preview URLs to System.Diagnostics.Process.Start(), letting the underlying OS determine how to handle this URL (which is normally to open it in the default web browser) Perhaps this meth

[mapguide-users] Re: MGOS v2.2 Beta ! and SQL 2008. Again...

2010-06-18 Thread Jackie Ng
The SELECTFEATURES mapagent operation in MGOS 2.2 beta 1 and older is broken. Do not use local feature source preview on these versions. A fix for this landed after the beta 1 release. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/MGOS-v2-2-Beta-and-SQL-2008-A

[mapguide-users] Re: How to rotate the map??

2010-06-22 Thread Jackie Ng
There is no API or functionality to rotate a given map. However I've learned of a clever "hack" from a client which involves assigning a custom "south oriented" projection for the map which is the opposite of the current projection. Mapguide's on the fly reprojection will then "rotate" the map fo

[mapguide-users] Re: call javascript:window.open inside a tooltip

2010-06-23 Thread Jackie Ng
Are you doing a window.open from within the onload event? That is probably the only JS execution entry point that is available to you. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/call-javascript-window-open-inside-a-tooltip-tp5214817p5215167.html Sent from t

[mapguide-users] Re: call javascript:window.open inside a tooltip

2010-06-23 Thread Jackie Ng
FYI I wrote that blog post ;-) I think this is more of an implementation detail here. Tooltips for the AJAX and Fusion viewers can display any arbitrary HTML content, but the there are subtle differences in how tooltips behave: - Fusion tooltips "stick", allowing you to interact with the tooltip

[mapguide-users] Re: DwfLoadProcedure

2010-06-30 Thread Jackie Ng
One thing to note about Load Procedures is that they store load settings for *client applications*. As a result, whether we can support load procedures of data type X is determined by whether we can actually read and process files of type X on the client-side in a portable fashion. This is why al

[mapguide-users] Re: Session Repository to Library Repository?

2010-06-30 Thread Jackie Ng
Use the GetResourceContent() and SetResource() methods of MgResourceService The key thing is the resource ids. Session-based resource ids are like: Session:yoursessionid//Your.Resource Library-based resource ids are like: Library://Path/To/Your.Resource Note that the MG Anonymous user doesn't

[mapguide-users] Re: Session Repository to Library Repository?

2010-07-02 Thread Jackie Ng
Assuming the problem you're having is the URL generated for the "Show in Browser" function in Maestro: Get the latest 2.1 preview release for Maestro. That will create the proper URLs for Web Layouts. If it's fusion layouts, wait for the 2.1 final release, which will have the same fix for Fusion

[mapguide-users] Re: Problems with mapguide 2.2 beta1 on Windows XP

2010-07-05 Thread Jackie Ng
It is important to note that the OSGeo.PostgreSQL provider behaves differently from the OSGeo.PostGIS provider: - They both have different connection parameters - They probably have different schema/class/property naming conventions. You can use FDO Toolbox to see how both providers look at th

[mapguide-users] Re: How to do a php report

2010-07-05 Thread Jackie Ng
Your InvokeUrl command is effectively just passing the string value "GDM_UPI" to the PHP script. What you want to do is have $CurrentSelection as your parameter value. This is a special value which represents the XML of your selection set. In your PHP script, you need to process this XML select

[mapguide-users] Re: Item X is already in this named collection

2010-07-05 Thread Jackie Ng
Although OSGeo.PostGIS and OSGeo.PostgreSQL are both FDO providers for PostGIS databases. They are implemented differently and as a result: - They require different connection parameters - They have different naming conventions for schemas/classes/properties. What this means is that your PostGI

[mapguide-users] Re: Imagery in MySQL

2010-07-05 Thread Jackie Ng
Hi Achim, The MySQL provider doesn't support rasters, only vector data. There isn't any FDO provider out there to my knowledge that supports *both* vector and raster data. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Imagery-in-MySQL-tp5256016p5256053.html S

[mapguide-users] Announcing: MapGuide Maestro 2.1 Final

2010-07-07 Thread Jackie Ng
Hi All, I am proud to announce the final release of MapGuide Maestro 2.1 Some of the new features include: - Local Feature Source previewing (Note: This is disabled for MapGuide Enterprise 2011 and older and MGOS 2.2 Beta 1 and older) - Support for connecting using the official .net API dlls

[mapguide-users] Re: Help with sample application setup

2010-07-13 Thread Jackie Ng
It appears that stack trace comes from 2.0 web extension dlls. You should be using dlls from your 2.1 installation. Or is this not the case? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Help-with-sample-application-setup-tp5286721p5286970.html Sent from the M

[mapguide-users] Re: SQL Database Connect and Join

2010-07-13 Thread Jackie Ng
Have you tried the 2.2 beta? I ask because the property pane has been revamped to display properties of multiple selected features, and the processing of selected features is done using standard MapGuide APIs. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/SQL-

[mapguide-users] Re: Query mapagent.fcgi through HTTP

2010-07-14 Thread Jackie Ng
I believe that operation is only limited to returning properties for one feature, no matter how many features you selected. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Query-mapagent-fcgi-through-HTTP-tp529p5291625.html Sent from the MapGuide Users maili

[mapguide-users] Re: Can we enable antialising on jpg images?

2010-07-16 Thread Jackie Ng
Are we sure this is not a natural artifact of JPG being a lossy image format? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Can-we-enable-antialising-on-jpg-images-tp5301715p5301769.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Re: Configure Dataconnection to SQL Server 2008

2010-07-22 Thread Jackie Ng
The only issues w/ tables/views with no primary keys is that: 1. Layer selection is not possible (no PKs = no way to uniquely identify the objects you selected) 2. Feature Joins to this table/view may/will produce unexpected results. I've cleaned up the messages to make this more clearer. - J

[mapguide-users] Re: SetExpandInLegend() equivalent in MgLayerGroup??

2010-07-22 Thread Jackie Ng
Years ago: http://trac.osgeo.org/mapguide/ticket/655 - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/SetExpandInLegend-equivalent-in-MgLayerGroup-tp1810249p5327895.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Re: FDO Exception when selecting feature.

2010-07-29 Thread Jackie Ng
Do you know if FDO is properly detecting the identity properties (primary keys)? If you open that data source with FDO Toolbox, does that show the correct properties as identity properties? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/FDO-Exception-when-sele

[mapguide-users] Re: Set Spatial Context programmatically

2010-07-30 Thread Jackie Ng
There are parameters to do this in the MgCreateSdfParams object used to create your SDF feature source. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Set-Spatial-Context-programmatically-tp5354441p5354557.html Sent from the MapGuide Users mailing list archive

[mapguide-users] Re: FDO Exception when selecting feature.

2010-07-30 Thread Jackie Ng
http://fdotoolbox.googlecode.com - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/FDO-Exception-when-selecting-feature-tp5347905p5354974.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide

[mapguide-users] Re: Ellipsis between styles in legend

2010-08-02 Thread Jackie Ng
If you right click that theme there should be a context menu option "Show Long Theme" - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Ellipsis-between-styles-in-legend-tp5356219p5363064.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: MGOS 2.2 Beta 1 on Win7 64bit Java

2010-08-03 Thread Jackie Ng
IIRC Beta 1 was only available in 32-bit. Did it install to "Program Files (x86)" ? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/MGOS-2-2-Beta-1-on-Win7-64bit-Java-tp5367799p5367831.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Re: DWF's display poorly

2010-08-04 Thread Jackie Ng
A possible reason as to why there isn't a DWG FDO provider to date: The only (official) way to write DWG files (RealDWG) is windows only. MapGuide (Open and Enterprise) is a multi-platform product after all. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/DWF

[mapguide-users] Re: FDO Exception when selecting feature.

2010-08-05 Thread Jackie Ng
FDO Toolbox knows nothing about MapGuide aliases. Just use the actual full path to you excel spreadsheet. Or right click FDO data sources and choose "Connect via ODBC" which will provide a simpler user interface to connect to your spreadsheet. - Jackie -- View this message in context: http://o

[mapguide-users] Re: Embed Fusion Layout in Webpage

2010-08-05 Thread Jackie Ng
Use a frameset or an iframe with the frame source pointing to: http://yourservername/mapguide2011/fusion/templates/mapguide/yourtemplate/index.html?ApplicationDefinition=Library://Path/To/Your.ApplicationDefinition - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.co

[mapguide-users] Re: FDO Exception when selecting feature.

2010-08-06 Thread Jackie Ng
The 64-bit ODBC provider can't detect and use your 32-bit drivers. You need to install the 64-bit version of Microsoft Access Database Engine 2010 to have native 64-bit Access and Excel drivers http://www.microsoft.com/downloads/details.aspx?familyid=C06B8369-60DD-4B64-A44B-84B371EDE16D&displayl

[mapguide-users] Re: FDO Exception when selecting feature.

2010-08-06 Thread Jackie Ng
The configuration doc is loaded as a stream inside your ODBC feature source MapGuide Studio has no generic user interface to do this. It does have a specialized editor for ODBC feature sources (it's near the bottom of the feature source editor UI), that lets you specify custom identity properties

[mapguide-users] MapGuide Maestro 2.1.1 released

2010-08-09 Thread Jackie Ng
Hi All, MapGuide Maestro 2.1.1 is now available for download http://trac.osgeo.org/mapguide/wiki/maestro/Downloads This is a small bugfix release that fixes the following issues: * Fix crash when running Maestro.exe from a working directory other than the one it is installed in. * Fix broken

[mapguide-users] Re: Refresh map only

2010-08-15 Thread Jackie Ng
Have you tried ExecuteMapAction(20), where ExecuteMapAction() is a method of the main frame and 20 is the command code for "Refresh Map"? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Refresh-map-only-tp5414227p5426321.html Sent from the MapGuide Users mailing

[mapguide-users] RE: featureService.SelectFeatures and memory consumption

2010-08-16 Thread Jackie Ng
You can't use the "using" statement because MgFeatureReader doesn't implement the IDisposable interface. But there is a Dispose() method that can be called. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/featureService-SelectFeatures-and-memory-consumption-tp5

[mapguide-users] RE: featureService.SelectFeatures and memory consumption

2010-08-17 Thread Jackie Ng
Is the provider OSGeo.PostGIS (old) or OSGeo.PostgreSQL (new)? The old provider has many bugs and hasn't been maintained in a while. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/featureService-SelectFeatures-and-memory-consumption-tp5427455p5435161.html Sent

[mapguide-users] RE: RE: featureService.SelectFeatures and memory consumption

2010-08-19 Thread Jackie Ng
The PostgreSQLProvider is developed by Autodesk and is built from the GenericRdbms sub-framework. The source is under /Providers/GenericRdbms/Src/PostGis for the trunk and 3.5 branches. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/featureService-SelectFeature

[mapguide-users] Re: Maestro 2.1.1 problem on ubuntu

2010-08-19 Thread Jackie Ng
It seems the ConnectionProviders.xml path detection is faulty in Mono. Can you make a Trac ticket for this so I can look it up later? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Maestro-2-1-1-problem-on-ubuntu-tp5442450p5442723.html Sent from the MapGuide

[mapguide-users] Re: Change background on dynamic polygon

2010-08-23 Thread Jackie Ng
The Layer Definition controls how all your objects will be rendered. So modify and save the XML content of your dynamic polygon layer. In your case, it would just be a matter of twiddling the alpha component of your background color fill (all colors are hexadecimal ARGB) - Jackie -- View this me

[mapguide-users] Re: Add Polygon to Layer in Current Session Only

2010-08-25 Thread Jackie Ng
Have you actually saved any resource content to this resource identifier? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Add-Polygon-to-Layer-in-Current-Session-Only-tp5458250p5464046.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: Create Shapefile

2010-08-26 Thread Jackie Ng
MGE 2010 doesn't have the updated CreateFeatureSource() API (RFC77) that supports creating SHP feature sources. Therefore, you would have to use FDO to create these Shape files. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Create-Shapefile-tp5461006p5464553.

[mapguide-users] Re: Create Shapefile

2010-08-26 Thread Jackie Ng
Yes it does. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Create-Shapefile-tp5461006p5465619.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide-users mailing list mapguide-users@lists

[mapguide-users] Re: Change background on dynamic polygon

2010-08-27 Thread Jackie Ng
The JPEG format does not support image transparency - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Change-background-on-dynamic-polygon-tp5455639p5468679.html Sent from the MapGuide Users mailing list archive at Nabble.com. _

[mapguide-users] Re: Mapguide 2.2 Beta - 2.1 on the same PC

2010-08-28 Thread Jackie Ng
I wonder if having a dot in the virtual directory name is causing these problems? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Mapguide-2-2-Beta-2-1-on-the-same-PC-tp5469930p5472198.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Re: Broken Measure Tool

2010-08-28 Thread Jackie Ng
Does the ajaxmappane.templ file in production match the one you have in test? This is the file that has the SetMapCursor() function. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Broken-Measure-Tool-tp5466829p5472202.html Sent from the MapGuide Users mailing l

[mapguide-users] Re: Hyperlinks in Properties pane of Ajax viewer

2010-08-30 Thread Jackie Ng
If you inspect the properties pane with firebug, do you see the actual hyperlink markup or the escaped version? (ie. You see < > and ") - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Hyperlinks-in-Properties-pane-of-Ajax-viewer-tp5480165p5480750.html Sent from

[mapguide-users] Re: Maestro question...

2010-08-30 Thread Jackie Ng
Hi Andrew, I have not taken a serious look at the raster layer editing functionality since taking over the project, so I cannot verify if this is placeholder stuff or just doesn't work as advertised. Can you make a trac ticket so I can look at this at a later time? - Jackie -- View this message

[mapguide-users] Re: Mapguide Open Source 2.1 2811 Port issue

2010-08-30 Thread Jackie Ng
You could edit the serverconfig.ini and webconfig.ini files and change the port numbers to something that is not already taken. By default MapGuide uses port numbers 2810, 2811, 2812. Of course this should only be a last resort should you fail to find what application is already using port 2811.

[mapguide-users] Re: Hyperlinks in Properties pane of Ajax viewer

2010-08-31 Thread Jackie Ng
Yeah the tags have been escaped. This looks like a defect. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Hyperlinks-in-Properties-pane-of-Ajax-viewer-tp5480165p5484901.html Sent from the MapGuide Users mailing list archive at Nabble.com. __

[mapguide-users] Re: Hyperlinks in Properties pane of Ajax viewer

2010-08-31 Thread Jackie Ng
Also what does the response content from getselectedfeatures.[php|jsp|aspx] look like in firebug? I'm wondering whether the content was html escaped client-side or server-side. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Hyperlinks-in-Properties-pane-of-Aja

[mapguide-users] Re: Runtime map definition

2010-09-02 Thread Jackie Ng
MgMap has a GetMapDefinition() which returns a resourceid to the Map Definition document used to create the map, however the actual runtime state is not available in XML form. So there isn't a runtime map definition per se. You have to check the value of IsVisible() of the MgLayer objects in tha

[mapguide-users] Re: Runtime map definition

2010-09-02 Thread Jackie Ng
I will also add that if you wanted the "runtime map definition", you could take the original map definition XML, and merge in XML fragments of layers and groups that have been added to the map since it was created and loaded. -- View this message in context: http://osgeo-org.1803224.n2.nabble.co

[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 S

[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. __

[mapguide-users] Re: Create a new layer from postgis request

2010-09-07 Thread Jackie Ng
This fragment looks suspect: $geometry = $wktReaderWriter->Read("the_geom", $the_geom); $geometryByteReader = $agfReaderWriter->Write($geometry); $geometryProperty = new MgGeometryProperty("GEOM", $geometryByteReader); $propertyCollection->Add($geometryProperty);

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

2010-09-08 Thread Jackie Ng
New release will be coming out *very* soon. Just need follow-ups on some remaining tickets. - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Anonymous-user-without-password-can-t-connect-to-MGServer-with-MaestroAPI-tp5507729p5510809.html Sent from the MapGuide Us

[mapguide-users] MapGuide Maestro 2.1.2 released

2010-09-08 Thread Jackie Ng
Hi All, I have put up a new release of Maestro (2.1.2). This is a bugfix release and fixes several show-stoppers relating to Mono in Linux and Mac OS. This release is highly recommended if you run Maestro under Mono. Download here: http://trac.osgeo.org/mapguide/wiki/maestro/Downloads - Jackie

[mapguide-users] Re: built in search tool question

2010-09-09 Thread Jackie Ng
Is this layer set to allow selections in the MapDefinition? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/built-in-search-tool-question-tp5514566p5514613.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Re: built in search tool question

2010-09-09 Thread Jackie Ng
What language/configuration are you using? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/built-in-search-tool-question-tp5514566p5514725.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapgu

[mapguide-users] Re: built in search tool question

2010-09-09 Thread Jackie Ng
When you installed MapGuide, what options did you choose? (IIS/Apache, PHP/Java/.net)? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/built-in-search-tool-question-tp5514566p5515182.html Sent from the MapGuide Users mailing list archive at Nabble.com. _

[mapguide-users] Re: MapGuide at FOSS4G 2010

2010-09-09 Thread Jackie Ng
Agreed about your call for MapGuide users to represent. The lack of MapGuide/FDO presence at this year's FOSS4G is disappointing. Unfortunately being down under geographically limits my ability to represent :-) - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Ma

<    1   2   3   4   5   6   7   8   9   10   >