Re: [mapguide-users] Oracle 11gR2 - Basics..

2012-01-26 Thread Simon Pelicon
Hi!

Set your OracleSchema value to  (you username or schema name where
table with geometry is stored)

OracleSchema: "   "


Otherwise check  USER_SDO_GEOM_METADATA view.

King.Oracle provider will read ALL_SDO_GEOM_METADATA View and find tables
and columns with SDO_GEOMETRY data type.
For each pair Table-Column King.Oracle will create an FDO Feature class.
If you want a FDO Feature class to be created based on Oracle View than you
need to add a row in USER_SDO_GEOM_METADATA for that View.

Check and Update/Insert statement for USER_SDO_GEOM_METADATA for your
geometry

INSERT INTO USER_SDO_GEOM_METADATA
VALUES(
'EVENTS','GEOM',
MDSYS.SDO_DIM_ARRAY(
MDSYS.SDO_DIM_ELEMENT('X', -180, 180, 0.5),
MDSYS.SDO_DIM_ELEMENT('Y', -90, 90, 0.5)
 ),
  4326   -- SRID
);

You must also create Spatial  index on that geometry.

Regards,

Simon




On Thu, Jan 26, 2012 at 3:54 PM, Birgir  wrote:

> Hi,
> Ive just installed Oracle 11gR2 and I need to
> create a new table
> import data to that table
> show the data in Mapguide.
>
> So far I've been able to install Oracle, create the table and importing the
> data to that table.
> Im also able to create a feature source (with KingOracle) to my Oracle
> database with the following connection parameters:
>
> Username: 
> Password: 
> Service : xe
> OracleSchema: "empty"
> KindFdoClass: "empty"
> SDE Schema  : "empty"
>
> But when I create a layer for my Oracle feature source, I recevie the
> following error message:
> "Feature Source (Library://.) has no usable feature classes. Choose a
> different feature source."
>
> Does the error message mean that my database doesnt have a table with
> spatial context? if yes, what can I do to correct this?
>
> Regards,
> Birgir
>
> --
> View this message in context:
> http://osgeo-org.1560.n6.nabble.com/Oracle-11gR2-Basics-tp4340841p4340841.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] Re: Mapguide won't display all features from King Oracle connections

2010-10-25 Thread Simon Pelicon
Hi,
I have tried to show geometries in MapGuide 2.1 using King Oracle Provider.

To show geometries in MapGuide, geometries must be spatial indexed otherwise
MapGuide returns
an error ( ORA-13226: interface not supported without a spatial index ).
Check the MapGuide server error.log file.

When i tried to create spatial index on this geometries Oracle returns an
error saying:

ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-13249: internal error in Spatial index: [mdidxrbd]
ORA-13249: Error in Spatial index: index build failed
ORA-13249: Error in spatial index: [mdrcrtxfergm]
ORA-13249: Error in spatial index: [mdpridxtxfergm]
ORA-13200: internal error [ROWID:AAAJnGAABAAAM0LAAE] in spatial indexing.
ORA-13206: internal error [] while creating the spatial index
ORA-13347: the coordinates defining an arc are not distinct

It looks like that there are some issues with geometries.

Simon



On Sat, Oct 23, 2010 at 10:53 AM, Haris Kurtagic  wrote:

> I have imported geometries into Oracle.
> I used Fdo2Fdo to read them, all 69 features look ok.
>
> I also used AutoCAD Map and I connected to the table, with King.Oracle
> as well as Autodesk Oracle provider.
> Geometries are read ok and no difference between providers.
>
> Haris
>
> On Sat, Oct 23, 2010 at 4:42 AM, Mauricio Villablanca
>  wrote:
> >
> > I ended up exporting the data to SDF format, loaded it in Mapguide
> Studio,
> > changed my script a bit and it now works fine.
> > --
> > View this message in context:
> http://osgeo-org.1803224.n2.nabble.com/Mapguide-won-t-display-all-features-from-King-Oracle-connections-tp5657213p5664679.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] 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 USER_SDO_GEOM_METADATA  you can USE

On Tue, Sep 7, 2010 at 9:42 AM, Francesco Sozzi  wrote:

> 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 index are ok.
>
> For the moment my workaround is to create side tables with the content of
> views, a sort of snapshots on views I need to publish data. With these
> tables (populated with data from views) MG works as expected.
> Please note that I need views (or these "side" tables) to show joined data
> in the property panel.
>
> Best regard
>
> Francesco
>
>
> - Original Message - From: "VOLZ Mark (FN)" <
> mark.v...@ergon.com.au>
>
> To: "MapGuide Users Mail List" 
> Sent: Monday, September 06, 2010 8:00 PM
> Subject: RE: [mapguide-users] View on Oracle Express
>
>
>
> Francesco,
>
> Can you confirm that the geometry columns (in the underlying table(s)) you
> are trying to use in the views have a spatial index built on them?
>
> The second thing to look at is the size of the database. A spatial index
> takes up table space so if you have a data set of about 4.5gb and then try
> and build a spatial index it will fail due to the size restriction on XE.
> This may be why the imported schema works in Standard/enterprise but not in
> XE.
>
> Mapguide always sends a spatial query when querying the data from oracle
> (which will fail if you don't have a spatial index), Autocad map doesn't
> always do this.
>
> Mark
>
>
>
> -Original Message-
> From: mapguide-users-boun...@lists.osgeo.org [mailto:
> mapguide-users-boun...@lists.osgeo.org] On Behalf Of Zac Spitzer
> Sent: Tuesday, 7 September 2010 11:27 AM
> To: MapGuide Users Mail List
> Subject: Re: [mapguide-users] View on Oracle Express
>
> have you tried the latest king oracle provider?
>
> http://www.sl-king.com/fdooracle/
>
> Also it's always helpful to state versions of the various software
>
> z
>
> On Mon, Sep 6, 2010 at 10:38 PM, Francesco Sozzi 
> wrote:
>
>> Hi All,
>>
>> I have an Oracle schema with views to render on Mapguide Open Source.
>> If I load this schema on an Oracle Standard or Enterprise, views are
>> rendered.
>> If I load on Mapguide from express, they are not rendered (I can
>> render the table with geometry field, but not the view).
>>
>> All views are in USER_SDO_GEOM_METADATA and all views have primary keys.
>> I can load and render on Autodesk Map from Oracle Express without
>> problems.
>> From Maestro I can see them in the list, if I try to create a layer,
>> but they are not rendered at all.
>>
>> Any idea or suggstions?
>>
>> Best regards
>>
>> Francesco
>>
>> __ Information from ESET NOD32 Antivirus, version of virus
>> signature database 5426 (20100906) __
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>>
>>
>
>
> --
> Zac Spitzer
> Solution Architect / Director
> Ennoble Consultancy Australia
> http://www.ennoble.com.au
> http://zacster.blogspot.com
> +61 405 847 168
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
>
>
>
>
>
>
>
> -
> To report this email as spam, please forward to s...@mailcontrol.com
> -
>
>
> *
> This e-mail (including any attachments) may contain confidential or
> privileged information and is intended for the sole use of the person(s) to
> whom it is addressed. If you are not the intended recipient, or the person
> responsible for delivering this message to the intended recipient, please
> notify the sender of the message or send an e-mail to
> mailto:help.d...@ergon.com.au immediately, and delete all copies. Any
> unauthorised review, use, alteration, disclosure or distribution of this
> e-mail by an unintended recipient is prohibited. Ergon Energy accepts no
> responsibility for the content of any e-mail sent by an employee which is
> of
> a personal nature.
>
> Ergon Energy Corporation Limited  ABN 50 087 646 062
> *
> ___
> mapguide

Re: [mapguide-users] MapGuide REST Extension Documentations

2010-03-29 Thread Simon Pelicon
Hi!

You can get some information on www.georest.com and
from sample which comes with georest download.
There will be some documentation/wiki soon, but for now I can give you
some explanation on how to work with georest.

simon

On Sun, Mar 28, 2010 at 8:42 PM, Nimrod Cnaan  wrote:

>
> Is there any Documentations on how to work with Jason's RESTful technology
> ?
>
> --
> View this message in context:
> http://n2.nabble.com/MapGuide-REST-Extension-Documentations-tp4814222p4814222.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] SDF Property Doesn't get updated

2010-03-28 Thread Simon Pelicon
Hi!
Probably you have your SDF dataconnection to be opened as ReadOnly.
Set ReadOnly value to False. I suggest using Maestro and edit SDF
dataconnection as XML.


ReadOnly
TRUE
  

simon

On Sun, Mar 28, 2010 at 10:13 AM, Nimrod Cnaan  wrote:

>
> I'm unable to update SDF's string property with a
> "PropertyValueConstraintType_List"
> Although I'm able to commit the Feature's update command, feature property
> doesn't get updated.
> Using MG2.1 & .NET.
> Anny suggestions
>
> --
> View this message in context:
> http://n2.nabble.com/SDF-Property-Doesn-t-get-updated-tp4812348p4812348.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] Re: GeoREST 1.0 Released!

2010-02-18 Thread Simon Pelicon
Hi!

I should work now also in IE.

Simon

On Thu, Feb 18, 2010 at 11:20 PM, Haris Kurtagic  wrote:

> Yes, IE doesn't work for me either. It used too, it seems it is unable to
> load OpenLayers georest layer.
> Simon who created that sample will check it tomorrow.
>
> Haris
>
>
> On Thu, Feb 18, 2010 at 11:17 PM, Plantech  wrote:
>
>>
>> Haris,
>> I get an error also in IE:
>>
>> Internet Explorer
>> Line: 2088
>> Char: 9
>> Error: 'this.baseLayer.wrapDateLine' is null or not an object
>> Code: 0
>> URL: http://www.sl.king.com/georestsamples/example1/rview.html
>>
>>
>>
>>
>> --
>> View this message in context:
>> http://n2.nabble.com/GeoREST-1-0-Released-tp4212935p4594742.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-users] MapGuide 2.1 and transparent PNG

2010-02-02 Thread Simon Pelicon
Hi!

I have problems showing transparent PNG files in MapGuide version 2.1.
I converted TIF files to transparent PNG.
Any advice?

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


Re: [mapguide-users] how can i load a View from Oracle to Mapguide studio

2009-12-23 Thread Simon Pelicon
Hi!

You can use King Oracle provider for MapGuide server.
Download King Oracle provider and read how to load view using KingFdoClass
table here http://www.sl-king.com/fdooracle/fdooracle.html

Simon


On Wed, Dec 23, 2009 at 11:09 AM, syncro balon wrote:

>  hi,
> Plz tel me how can i load a View from Oracle to Mapguide studio,
> ( I need to create a layer based on a Oracle view)
>
>
>
> --
> Gratuit : Hotmail plus rapide avec Internet Explorer 8 ! Cliquez ici 
> !
>
> ___
> 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] Is the problem of “King.Oracl e”Or Oracle spatial 9i?

2009-12-09 Thread Simon Pelicon
Hi!

Spatial operator SDO_ANYINTERACT is not defined in Oracle 9i.
SDO_ANYINTERACT is part of Oracle database since10g version.


Simon


On Wed, Dec 9, 2009 at 9:19 AM, djonio  wrote:

>
> I have not worked with 9i but a good Step #1 would be to turn trace on
> within
> Oracle and see exactly what is being sent.
> A 00904 looks pretty generic to me and could be just a "bubble up" from
> something else.
>
> r,
> dennis
>
> ORA-00904: string: invalid identifier
> Cause: The column name entered is either missing or invalid.
> Action: Enter a valid column name. A valid column name must begin with a
> letter, be less than or equal to 30 characters, and consist of only
> alphanumeric characters and the special characters $, _, and #. If it
> contains other characters, then it must be enclosed in double quotation
> marks. It may not be a reserved word.
>
> --
> View this message in context:
> http://n2.nabble.com/Is-the-problem-of-King-Oracle-Or-Oracle-spatial-9i-tp4137761p4138047.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] Cannot select featuer on map with king.oracle

2009-12-08 Thread Simon Pelicon
Hi!

Check if table has primary key defined. If not create primary key and
restart mgserver.

Simon

On Tue, Dec 8, 2009 at 11:18 AM, balaji bitra  wrote:

>
> hi Deval,
>
> when you create package, did you check the "features on layer are
> selectable" is checked in map file.
>  http://n2.nabble.com/file/n4131574/feature.bmp
>
> try it!
>
> balaji
>
> -
> Balaji
> --
> View this message in context:
> http://n2.nabble.com/Cannot-select-featuer-on-map-with-king-oracle-tp4130603p4131574.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] Problem setting up connection with Maestro and SL King Oracle Provider

2009-12-02 Thread Simon Pelicon
Hi!

I do not have such problems with Maestro.
I use latest Mapguide 2.1, King Oracle provider and Windows Vista x64.

Simon

On Wed, Dec 2, 2009 at 10:46 AM, Kenneth Skovhede, GEOGRAF A/S <
k...@geograf.dk> wrote:

> There is a defect logged against Maestro for displaying these ridiculosly
> large messageboxes.
>
> I don't know why the errors are there in the first place though, probably a
> minor bug in the Oracle provider.
>
> The message box is a standard Yes/No/Cancel messagebox which asks if you
> want to save anyway,
> so you can press Enter to get the default button (which is Yes), or press Y
> (or whatever shortcut key Yes has in your local version of Windows).
>
>
> Regards, Kenneth Skovhede, GEOGRAF A/S
>
>
>
> Flavio Hendry skrev:
>
>> Hi again
>>
>>
>> ops, second thought: no, I can't save, as I can't even enter a name for it
>> ... what I get is a not resizable or scrollable window full of:
>>
>> "Failed to read entity properties: The remote server returned an error:
>> (559)MgClassNotFoundException: The specified class was not found." this
>> Window can only be closed (no buttons or whatsoever). After that I am back
>> to Maestro.
>>
>> I think I get that message for every table entry in Oracle.
>>
>> PS: I am on Windows 7 64.
>>
>> Mit herzlichen Grüssen / Best Regards
>> Flavio Hendry
>>
>>
>> ___
>> 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] connection with oracle

2009-11-13 Thread Simon Pelicon
Did you use *Oracle Instant Client* or *Oracle Client *version of provider*?
*

On Fri, Nov 13, 2009 at 10:07 AM, manav dayal wrote:

> I am using mapguide 2.0
> FDO 3.3 with oracle 11g
>
>
> --- On *Fri, 13/11/09, Simon Pelicon * wrote:
>
>
> From: Simon Pelicon 
>
> Subject: Re: [mapguide-users] connection with oracle
> To: "MapGuide Users Mail List" 
> Date: Friday, 13 November, 2009, 1:20 PM
>
>
> Yes, oracle provider support also 11g.
>
> Manav:
> I would like do know version of MapGuide Server and version of provider
> used?
> For FDO 3.3 there are two kind of providers, for instant oracle client and
> for oracle client.
>
>
>
> On Fri, Nov 13, 2009 at 8:27 AM, Zac Spitzer 
> http://in.mc941.mail.yahoo.com/mc/compose?to=zac.spit...@gmail.com>
> > wrote:
>
>> Simon,
>>
>> does king oracle work with 11g client, or just 10g?
>>
>> z
>>
>>
>> On Fri, Nov 13, 2009 at 6:25 PM, Simon Pelicon 
>> http://in.mc941.mail.yahoo.com/mc/compose?to=si...@sl-king.com>
>> > wrote:
>>
>>> Hi!
>>> for SERVICE NAME enter:
>>> 1. if you use Oracle instant client use (as Zac answered) oracle easy
>>> connect syntax: //servername/orcl
>>> 2. if you use Oracle client than enter your oracle Service name specified
>>> in client
>>>
>>>  SCHEMA (optional parameter)
>>> "OracleSchema" determines if all raws from ALL_SDO_GEOM_METADATA will be
>>> used or just rows with Owner equal to "OracleSchema"
>>>
>>> KINGFDOCLASS (optional parameter)
>>> if you want that provider uses additional Oracle Table to describe FDO
>>> classes.
>>>
>>> To connect you need username,password and valid service name.
>>>
>>>
>>>
>>> On Fri, Nov 13, 2009 at 5:06 AM, manav dayal 
>>> http://in.mc941.mail.yahoo.com/mc/compose?to=manav_daya...@yahoo.co.in>
>>> > wrote:
>>>
>>>>   When i opt for new dataconnection using oracle provider in maestro, a
>>>> new source window opens. On this window I opt for specified credentials and
>>>> pass the username and password.
>>>>
>>>> when i use sql prompt, it works fine with 
>>>> username/passw...@orcl<http://in.mc941.mail.yahoo.com/mc/compose?to=username/passw...@orcl>
>>>> .
>>>>
>>>> I need to know what should be written inside the text boxes for service,
>>>> schema and king FDO class or do i need to make any other connection
>>>> settings.
>>>>
>>>>
>>>> --- On *Thu, 12/11/09, Zac Spitzer 
>>>> http://in.mc941.mail.yahoo.com/mc/compose?to=zac.spit...@gmail.com>
>>>> >* wrote:
>>>>
>>>>
>>>> From: Zac Spitzer 
>>>> http://in.mc941.mail.yahoo.com/mc/compose?to=zac.spit...@gmail.com>
>>>> >
>>>> Subject: Re: [mapguide-users] connection with oracle
>>>> To: "MapGuide Users Mail List" 
>>>> http://in.mc941.mail.yahoo.com/mc/compose?to=mapguide-us...@lists.osgeo.org>
>>>> >
>>>> Date: Thursday, 12 November, 2009, 6:04 PM
>>>>
>>>> it is purely a error with the service name
>>>>
>>>> ORA-12154: TNS:could not resolve the connect identifier specified
>>>>
>>>> is a native error code from oracle
>>>>
>>>> what are your connection settings?
>>>>
>>>> z
>>>>
>>>>
>>>>
>>>> On Thu, Nov 12, 2009 at 11:01 PM, Dejan Gregor 
>>>> http://in.mc941.mail.yahoo.com/mc/compose?to=dejan.gre...@gmail.com>>
>>>> wrote:
>>>> >
>>>> > Do you have an Oracle client installed from where you are connecting?
>>>> > Dejan
>>>> >
>>>> > On Thu, Nov 12, 2009 at 12:58, manav dayal 
>>>> > http://in.mc941.mail.yahoo.com/mc/compose?to=manav_daya...@yahoo.co.in>>
>>>> wrote:
>>>> >>
>>>> >>
>>>> >> I am using maestro1.0  and trying to  connect to the remote database
>>>> server.
>>>> >> When I choose to make a  new data connection with
>>>> OSGeo.KingOracle.3.3 as the
>>>> >> provider for oracle.
>>>> >>
>>>> >> Following error is being thrown when I try to test the connection.
>>>> >>
>>>> >>
>>>> >> The 

Re: [mapguide-users] Cannot select features on the map

2009-11-13 Thread Simon Pelicon
You have to define primary key in oracle table.



On Fri, Nov 13, 2009 at 10:11 AM, Synchro  wrote:

>
> Yes I have do it (in MapGuide Studio)
> I think the problem is from FDO Oracle 10g because for files SDF there is
> no
> problem
>
>
> Mauricio Villablanca wrote:
> >
> > I have to ask: did you make your layer selectable when you created the
> > map?
> >
> >
> > syncro balon wrote:
> >>
> >>
> >> I m using mapguide entreprise 2009, Oracle 10g and studio 2009
> >> I can't select features on the map with mouse (on studio and page of
> >> connexion)
> >> Please help
> >> _
> >> Un avatar à votre image ? Créez votre mini-moi !
> >> http://www.ilovemessenger.fr/minimize-me/
> >> ___
> >> mapguide-users mailing list
> >> mapguide-users@lists.osgeo.org
> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://n2.nabble.com/Cannot-select-features-on-the-map-tp3782539p3998111.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] connection with oracle

2009-11-12 Thread Simon Pelicon
Yes, oracle provider support also 11g.

Manav:
I would like do know version of MapGuide Server and version of provider
used?
For FDO 3.3 there are two kind of providers, for instant oracle client and
for oracle client.



On Fri, Nov 13, 2009 at 8:27 AM, Zac Spitzer  wrote:

> Simon,
>
> does king oracle work with 11g client, or just 10g?
>
> z
>
>
> On Fri, Nov 13, 2009 at 6:25 PM, Simon Pelicon  wrote:
>
>> Hi!
>> for SERVICE NAME enter:
>> 1. if you use Oracle instant client use (as Zac answered) oracle easy
>> connect syntax: //servername/orcl
>> 2. if you use Oracle client than enter your oracle Service name specified
>> in client
>>
>> SCHEMA (optional parameter)
>> "OracleSchema" determines if all raws from ALL_SDO_GEOM_METADATA will be
>> used or just rows with Owner equal to "OracleSchema"
>>
>> KINGFDOCLASS (optional parameter)
>> if you want that provider uses additional Oracle Table to describe FDO
>> classes.
>>
>> To connect you need username,password and valid service name.
>>
>>
>>
>> On Fri, Nov 13, 2009 at 5:06 AM, manav dayal 
>> wrote:
>>
>>> When i opt for new dataconnection using oracle provider in maestro, a new
>>> source window opens. On this window I opt for specified credentials and pass
>>> the username and password.
>>>
>>> when i use sql prompt, it works fine with username/passw...@orcl.
>>>
>>> I need to know what should be written inside the text boxes for service,
>>> schema and king FDO class or do i need to make any other connection
>>> settings.
>>>
>>>
>>> --- On *Thu, 12/11/09, Zac Spitzer * wrote:
>>>
>>>
>>> From: Zac Spitzer 
>>> Subject: Re: [mapguide-users] connection with oracle
>>> To: "MapGuide Users Mail List" 
>>> Date: Thursday, 12 November, 2009, 6:04 PM
>>>
>>> it is purely a error with the service name
>>>
>>> ORA-12154: TNS:could not resolve the connect identifier specified
>>>
>>> is a native error code from oracle
>>>
>>> what are your connection settings?
>>>
>>> z
>>>
>>>
>>>
>>> On Thu, Nov 12, 2009 at 11:01 PM, Dejan Gregor 
>>> http://in.mc941.mail.yahoo.com/mc/compose?to=dejan.gre...@gmail.com>>
>>> wrote:
>>> >
>>> > Do you have an Oracle client installed from where you are connecting?
>>> > Dejan
>>> >
>>> > On Thu, Nov 12, 2009 at 12:58, manav dayal 
>>> > http://in.mc941.mail.yahoo.com/mc/compose?to=manav_daya...@yahoo.co.in>>
>>> wrote:
>>> >>
>>> >>
>>> >> I am using maestro1.0  and trying to  connect to the remote database
>>> server.
>>> >> When I choose to make a  new data connection with
>>> OSGeo.KingOracle.3.3 as the
>>> >> provider for oracle.
>>> >>
>>> >> Following error is being thrown when I try to test the connection.
>>> >>
>>> >>
>>> >> The remote server returned an error: (559) MgFdoException.:
>>> >> An exception occurred in FDO component.
>>> >> ORA-12154: TNS:could not resolve the connect identifier specified
>>> >> Exception occurred in method MgFdoConnectionManager.Open at line 858
>>> in file
>>> d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\common\manager\FdoConnectionManager.cpp
>>> >>
>>> >> kindly help asap.
>>> >> Regards.
>>> >>
>>> >> 
>>> >> The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.
>>> >> ___
>>> >> mapguide-users mailing list
>>> >> mapguide-users@lists.osgeo.org<http://in.mc941.mail.yahoo.com/mc/compose?to=mapguide-us...@lists.osgeo.org>
>>> >> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>> >>
>>> >
>>> >
>>> > ___
>>> > mapguide-users mailing list
>>> > mapguide-users@lists.osgeo.org<http://in.mc941.mail.yahoo.com/mc/compose?to=mapguide-us...@lists.osgeo.org>
>>> > http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>> >
>>>
>>>
>>>
>>> --
>>> Zac Spitzer
>>> Solution Architect / Director
>>> Ennoble Consul

Re: [mapguide-users] connection with oracle

2009-11-12 Thread Simon Pelicon
Hi!
for SERVICE NAME enter:
1. if you use Oracle instant client use (as Zac answered) oracle easy
connect syntax: //servername/orcl
2. if you use Oracle client than enter your oracle Service name specified in
client

SCHEMA (optional parameter)
"OracleSchema" determines if all raws from ALL_SDO_GEOM_METADATA will be
used or just rows with Owner equal to "OracleSchema"

KINGFDOCLASS (optional parameter)
if you want that provider uses additional Oracle Table to describe FDO
classes.

To connect you need username,password and valid service name.



On Fri, Nov 13, 2009 at 5:06 AM, manav dayal wrote:

> When i opt for new dataconnection using oracle provider in maestro, a new
> source window opens. On this window I opt for specified credentials and pass
> the username and password.
>
> when i use sql prompt, it works fine with username/passw...@orcl.
>
> I need to know what should be written inside the text boxes for service,
> schema and king FDO class or do i need to make any other connection
> settings.
>
>
> --- On *Thu, 12/11/09, Zac Spitzer * wrote:
>
>
> From: Zac Spitzer 
> Subject: Re: [mapguide-users] connection with oracle
> To: "MapGuide Users Mail List" 
> Date: Thursday, 12 November, 2009, 6:04 PM
>
> it is purely a error with the service name
>
> ORA-12154: TNS:could not resolve the connect identifier specified
>
> is a native error code from oracle
>
> what are your connection settings?
>
> z
>
>
>
> On Thu, Nov 12, 2009 at 11:01 PM, Dejan Gregor 
> http://in.mc941.mail.yahoo.com/mc/compose?to=dejan.gre...@gmail.com>>
> wrote:
> >
> > Do you have an Oracle client installed from where you are connecting?
> > Dejan
> >
> > On Thu, Nov 12, 2009 at 12:58, manav dayal 
> > http://in.mc941.mail.yahoo.com/mc/compose?to=manav_daya...@yahoo.co.in>>
> wrote:
> >>
> >>
> >> I am using maestro1.0  and trying to  connect to the remote database
> server.
> >> When I choose to make a  new data connection with
> OSGeo.KingOracle.3.3 as the
> >> provider for oracle.
> >>
> >> Following error is being thrown when I try to test the connection.
> >>
> >>
> >> The remote server returned an error: (559) MgFdoException.:
> >> An exception occurred in FDO component.
> >> ORA-12154: TNS:could not resolve the connect identifier specified
> >> Exception occurred in method MgFdoConnectionManager.Open at line 858 in
> file
> d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\common\manager\FdoConnectionManager.cpp
> >>
> >> kindly help asap.
> >> Regards.
> >>
> >> 
> >> The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.
> >> ___
> >> 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
> >
>
>
>
> --
> Zac Spitzer
> Solution Architect / Director
> Ennoble Consultancy Australia
> http://www.ennoble.com.au
> http://zacster.blogspot.com
> +61 405 847 168
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
> --
> The INTERNET now has a personality. YOURS! See your Yahoo! 
> Homepage
> .
>
> ___
> 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 geometry to SHP

2009-11-06 Thread Simon Pelicon
You have all this files (also  OSGeo.FDO.Spatial.dll ) in FDO Windows SDK.
download link:
http://fdo.osgeo.org/content/fdo-331-downloads

<http://fdo.osgeo.org/content/fdo-331-downloads>simon

On Fri, Nov 6, 2009 at 10:58 AM, sekko970
wrote:

>
> Ok for
> OSGeo.FDO.dll
> OSGeo.FDO.Geometry.dll
> OSGeo.FDO.Common.dll
>
> but if I try to create a reference to OSGeo.FDO.Spatial.dll, I have the
> following error:
> no type libraries were found in the component.
>
> (FDOSpatial.dll is already in my project bin folder).
>
> f.
>
>
>
>
> Simon Pelicon wrote:
> >
> > Hi!
> >
> > Add references to this files:
> >
> > OSGeo.FDO.dll
> > OSGeo.FDO.Geometry.dll
> > OSGeo.FDO.Common.dll
> > OSGeo.FDO.Spatial.dll
> >
> > simon
> >
> > On Fri, Nov 6, 2009 at 9:41 AM, sekko970
> > wrote:
> >
> >>
> >> Hi Simon,
> >> what I have to do to include in my ASP.NET project FDO .NET API?
> >>
> >>
> >>
> >> Simon Pelicon wrote:
> >> >
> >> > Hi!
> >> >
> >> > Here is sample in C# from my code using just  FDO .NET API.
> >> > This inserts FEATURE in any FDO datasource specified in my FDO
> >> connection
> >> > (m_Conn) like SHP,SDF, oracle 
> >> >
> >> >
> >> > IInsert command =
> >> > (IInsert)m_base.m_Conn.CreateCommand(CommandType.CommandType_Insert);
> >> > FgfGeometryFactory factory = new FgfGeometryFactory();
> >> > IDirectPosition position = factory.CreatePositionXYZ(X,Y, 0.0);
> >> > IPoint point = factory.CreatePoint(position);
> >> > command .PropertyValues.Add(new PropertyValue(GEOMETRY_COLUMN, new
> >> > GeometryValue(factory.GetFgf(point;
> >> > command .PropertyValues.Add(new PropertyValue(LAYER_COLUMN, new
> >> > StringValue(bref.Layer)));
> >> > command .PropertyValues.Add(new PropertyValue(BLOCK_COLUMN, new
> >> > StringValue(bref.Name)));
> >> > reader = command.Execute();
> >> > if (reader.ReadNext())
> >> > {
> >> >
> >> > }
> >> >
> >> > Simon
> >> >
> >> >
> >> > On Fri, Nov 6, 2009 at 8:27 AM, Dejan Gregor 
> >> > wrote:
> >> >
> >> >> Dear Fabio,
> >> >>
> >> >> you are saying that with the exsiting FDO it is possible to add
> >> geometry
> >> >> to
> >> >> a SHP?
> >> >>
> >> >> Do you have a sample code for MGOS 2.x also for the interface or
> maybe
> >> a
> >> >> whole project/sln? I am not a programmer, but would like just to test
> >> >> this
> >> >> functionality in MapGuide.
> >> >>
> >> >> Best regards,
> >> >> Dejan
> >> >>
> >> >> On Fri, Nov 6, 2009 at 00:29, Zac Spitzer 
> >> wrote:
> >> >>
> >> >>> what's in the string? it's probably an error string
> >> >>>
> >> >>> if your feature source readonly?
> >> >>>
> >> >>> http://trac.osgeo.org/mapguide/ticket/649
> >> >>>
> >> >>> a very nasty annoying bug
> >> >>>
> >> >>> z
> >> >>>
> >> >>> On Fri, Nov 6, 2009 at 9:45 AM, Jackie Ng 
> >> >>> wrote:
> >> >>> >
> >> >>> > What does your ReleaseReader() look like?
> >> >>> >
> >> >>> > If it's from the samples, it's supposed to close any open
> >> >>> MgFeatureReaders
> >> >>> > that may exist in the result returned from
> >> >>> MgFeatureService.UpdateFeatures()
> >> >>> >
> >> >>> > - Jackie
> >> >>> >
> >> >>> >
> >> >>> > sekko970 wrote:
> >> >>> >>
> >> >>> >> I tryng to add a point to an existing SHP data connection in
> >> ASP.Net
> >> >>> >> application, using MG API.
> >> >>> >>
> >> >>> >> Dim dataSource as String = "Library://.../MySHP.FeatureSource"
> >> >>> >> Dim dataSourceId As New MgResourceIdentifier(dataSource)
> >> >>> >>
> >> >>> >> Dim MyP

Re: [mapguide-users] Add geometry to SHP

2009-11-06 Thread Simon Pelicon
Hi!

Add references to this files:

OSGeo.FDO.dll
OSGeo.FDO.Geometry.dll
OSGeo.FDO.Common.dll
OSGeo.FDO.Spatial.dll

simon

On Fri, Nov 6, 2009 at 9:41 AM, sekko970
wrote:

>
> Hi Simon,
> what I have to do to include in my ASP.NET project FDO .NET API?
>
>
>
> Simon Pelicon wrote:
> >
> > Hi!
> >
> > Here is sample in C# from my code using just  FDO .NET API.
> > This inserts FEATURE in any FDO datasource specified in my FDO connection
> > (m_Conn) like SHP,SDF, oracle 
> >
> >
> > IInsert command =
> > (IInsert)m_base.m_Conn.CreateCommand(CommandType.CommandType_Insert);
> > FgfGeometryFactory factory = new FgfGeometryFactory();
> > IDirectPosition position = factory.CreatePositionXYZ(X,Y, 0.0);
> > IPoint point = factory.CreatePoint(position);
> > command .PropertyValues.Add(new PropertyValue(GEOMETRY_COLUMN, new
> > GeometryValue(factory.GetFgf(point;
> > command .PropertyValues.Add(new PropertyValue(LAYER_COLUMN, new
> > StringValue(bref.Layer)));
> > command .PropertyValues.Add(new PropertyValue(BLOCK_COLUMN, new
> > StringValue(bref.Name)));
> > reader = command.Execute();
> > if (reader.ReadNext())
> > {
> >
> > }
> >
> > Simon
> >
> >
> > On Fri, Nov 6, 2009 at 8:27 AM, Dejan Gregor 
> > wrote:
> >
> >> Dear Fabio,
> >>
> >> you are saying that with the exsiting FDO it is possible to add geometry
> >> to
> >> a SHP?
> >>
> >> Do you have a sample code for MGOS 2.x also for the interface or maybe a
> >> whole project/sln? I am not a programmer, but would like just to test
> >> this
> >> functionality in MapGuide.
> >>
> >> Best regards,
> >> Dejan
> >>
> >> On Fri, Nov 6, 2009 at 00:29, Zac Spitzer 
> wrote:
> >>
> >>> what's in the string? it's probably an error string
> >>>
> >>> if your feature source readonly?
> >>>
> >>> http://trac.osgeo.org/mapguide/ticket/649
> >>>
> >>> a very nasty annoying bug
> >>>
> >>> z
> >>>
> >>> On Fri, Nov 6, 2009 at 9:45 AM, Jackie Ng 
> >>> wrote:
> >>> >
> >>> > What does your ReleaseReader() look like?
> >>> >
> >>> > If it's from the samples, it's supposed to close any open
> >>> MgFeatureReaders
> >>> > that may exist in the result returned from
> >>> MgFeatureService.UpdateFeatures()
> >>> >
> >>> > - Jackie
> >>> >
> >>> >
> >>> > sekko970 wrote:
> >>> >>
> >>> >> I tryng to add a point to an existing SHP data connection in ASP.Net
> >>> >> application, using MG API.
> >>> >>
> >>> >> Dim dataSource as String = "Library://.../MySHP.FeatureSource"
> >>> >> Dim dataSourceId As New MgResourceIdentifier(dataSource)
> >>> >>
> >>> >> Dim MyProps As New MgPropertyCollection()
> >>> >> Dim agfRW As New MgAgfReaderWriter()
> >>> >> Dim geomFactory As New MgGeometryFactory
> >>> >>
> >>> >> Dim myPoint As MgPoint =
> >>> >> geomFactory.CreatePoint(geomFactory.CreateCoordinateXY(X, Y))
> >>> >>
> >>> >> 'ID
> >>> >> Dim IDProp As New MgInt32Property("FeatID", IDValue)
> >>> >> MyProps.Add(IDProp)
> >>> >>
> >>> >> 'MyProp
> >>> >> Dim MyProp As New MgDoubleProperty("MyProp", MyPropValue)
> >>> >> MyProps.Add(MyProp)
> >>> >>
> >>> >> 'Geometry
> >>> >> Dim geomReader As MgByteReader = agfRW.Write(myPoint)
> >>> >> Dim geometryProp As New MgGeometryProperty("Geometry", geomReader)
> >>> >> MyProps.Add(geometryProp)
> >>> >>
> >>> >> Dim propCollection As New MgBatchPropertyCollection()
> >>> >> propCollection.Add(MyProps)
> >>> >>
> >>> >> Dim commands As New MgFeatureCommandCollection()
> >>> >> commands.Add(New MgInsertFeatures(MyFeatureName, propCollection))
> >>> >>
> >>> >> Dim res As MgPropertyCollection =
> >>> featureSrvc.UpdateFeatures(dataSourceId,
> >>> >> commands, False)
> &g

Re: [mapguide-users] Add geometry to SHP

2009-11-05 Thread Simon Pelicon
Hi!

Here is sample in C# from my code using just  FDO .NET API.
This inserts FEATURE in any FDO datasource specified in my FDO connection
(m_Conn) like SHP,SDF, oracle 


IInsert command =
(IInsert)m_base.m_Conn.CreateCommand(CommandType.CommandType_Insert);
FgfGeometryFactory factory = new FgfGeometryFactory();
IDirectPosition position = factory.CreatePositionXYZ(X,Y, 0.0);
IPoint point = factory.CreatePoint(position);
command .PropertyValues.Add(new PropertyValue(GEOMETRY_COLUMN, new
GeometryValue(factory.GetFgf(point;
command .PropertyValues.Add(new PropertyValue(LAYER_COLUMN, new
StringValue(bref.Layer)));
command .PropertyValues.Add(new PropertyValue(BLOCK_COLUMN, new
StringValue(bref.Name)));
reader = command.Execute();
if (reader.ReadNext())
{

}

Simon


On Fri, Nov 6, 2009 at 8:27 AM, Dejan Gregor  wrote:

> Dear Fabio,
>
> you are saying that with the exsiting FDO it is possible to add geometry to
> a SHP?
>
> Do you have a sample code for MGOS 2.x also for the interface or maybe a
> whole project/sln? I am not a programmer, but would like just to test this
> functionality in MapGuide.
>
> Best regards,
> Dejan
>
> On Fri, Nov 6, 2009 at 00:29, Zac Spitzer  wrote:
>
>> what's in the string? it's probably an error string
>>
>> if your feature source readonly?
>>
>> http://trac.osgeo.org/mapguide/ticket/649
>>
>> a very nasty annoying bug
>>
>> z
>>
>> On Fri, Nov 6, 2009 at 9:45 AM, Jackie Ng  wrote:
>> >
>> > What does your ReleaseReader() look like?
>> >
>> > If it's from the samples, it's supposed to close any open
>> MgFeatureReaders
>> > that may exist in the result returned from
>> MgFeatureService.UpdateFeatures()
>> >
>> > - Jackie
>> >
>> >
>> > sekko970 wrote:
>> >>
>> >> I tryng to add a point to an existing SHP data connection in ASP.Net
>> >> application, using MG API.
>> >>
>> >> Dim dataSource as String = "Library://.../MySHP.FeatureSource"
>> >> Dim dataSourceId As New MgResourceIdentifier(dataSource)
>> >>
>> >> Dim MyProps As New MgPropertyCollection()
>> >> Dim agfRW As New MgAgfReaderWriter()
>> >> Dim geomFactory As New MgGeometryFactory
>> >>
>> >> Dim myPoint As MgPoint =
>> >> geomFactory.CreatePoint(geomFactory.CreateCoordinateXY(X, Y))
>> >>
>> >> 'ID
>> >> Dim IDProp As New MgInt32Property("FeatID", IDValue)
>> >> MyProps.Add(IDProp)
>> >>
>> >> 'MyProp
>> >> Dim MyProp As New MgDoubleProperty("MyProp", MyPropValue)
>> >> MyProps.Add(MyProp)
>> >>
>> >> 'Geometry
>> >> Dim geomReader As MgByteReader = agfRW.Write(myPoint)
>> >> Dim geometryProp As New MgGeometryProperty("Geometry", geomReader)
>> >> MyProps.Add(geometryProp)
>> >>
>> >> Dim propCollection As New MgBatchPropertyCollection()
>> >> propCollection.Add(MyProps)
>> >>
>> >> Dim commands As New MgFeatureCommandCollection()
>> >> commands.Add(New MgInsertFeatures(MyFeatureName, propCollection))
>> >>
>> >> Dim res As MgPropertyCollection =
>> featureSrvc.UpdateFeatures(dataSourceId,
>> >> commands, False)
>> >> ReleaseReader(res, commands)
>> >>
>> >> In ReleaseReader, I have the following error:
>> >> Unable to cast object of type 'OSGeo.MapGuide.MgStringProperty' to type
>> >> 'OSGeo.MapGuide.MgFeatureProperty'.
>> >>
>> >> In fact, res has only one property of type MgStringProperty: but why?
>> >>
>> >> Have you any idea where is the error?
>> >> Thanks, Fabio
>> >>
>> >>
>> >
>> > --
>> > View this message in context:
>> http://n2.nabble.com/Add-geometry-to-SHP-tp3953583p3955574.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
>> >
>>
>>
>>
>> --
>> Zac Spitzer
>> Solution Architect / Director
>> Ennoble Consultancy Australia
>> http://www.ennoble.com.au
>> http://zacster.blogspot.com
>> +61 405 847 168
>> ___
>> 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] King.Oracle important update

2009-06-12 Thread Simon Pelicon




Hi!
I replaced old king oracle dll's for MapGudie 2.0.2  with the new ones and it works without problem.
MapGuide 2.0.2 uses FDO 3.3.1 so check if you are using the right King Oracle provider version for FDO 3.3.1 .

download link: http://www.sl-king.com/fdooracle/download/FdoKingOracle_Win32_FDO_3_3_1_v0_8_10.zip

Simon

marius.360 wrote:

  I think so, my 2.0.2 installation is still standard, I have not changed
anything except the King.Oracle DLL's?
 Marius



Haris Kurtagic wrote:
  
  
Are you using correct binaries, for 3.3.1 ?

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of marius.360
Sent: Thursday, June 11, 2009 3:35 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] King.Oracle important update


Hi Harris,

I have tried to get my MGOS 2.0.2 working with the latest King.Oracle
provider, but I am having difficulties with that. It works fine with
2.1. I
just replace the old DLL's with the new ones and then edit the
providers.xml
file to reflect the new version on the 2.0.2 setup, but it doesn't work,
if
I open an existing data connection in studio it is blank. Is there
anything
else I must do to get it working on 2.0.2? I must be doing something
silly...
Please pardon my ignorance, but I am a bit of a novice in this regard!

Marius


Haris Kurtagic wrote:


  Yes it can. We use it with MG 2.0.2.

When I build new version of provider I build for older versions of FDO
too. So you can use it as far back as MapGuide 1.2 (FDO 3.2.2).

Haris

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of
  

marius.360


  Sent: Tuesday, June 09, 2009 2:36 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] King.Oracle important update


Hi Haris

This is very good news! Quick question though, can this new version be
used
with version 2.0.2 of mapguide?

Thanks a lot,

Marius



Haris Kurtagic wrote:
  
  
Hi,

I have released new version of King.Oracle provider. It solves

  
  stability
  
  
issue with MapGuide and King.Oracle.

http://www.sl-king.com/fdooracle/

 

Haris


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



  
  -- 
View this message in context:

  

http://n2.nabble.com/King.Oracle-important-update-tp3048272p3049174.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://n2.nabble.com/King.Oracle-important-update-tp3048272p3061966.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-users] MapGuide Measure Tool and mapguide server error

2009-05-25 Thread Simon Pelicon

Hi!
I have poblem using MapGuide Measure Tool with MapGuide Server 2.0.2.
Every time after using this a get an error in error log file:

<2009-05-25T11:51:45> Ajax Viewer192.168.0.17Administrator
Error: Resource was not found: 
Session:8cee7762---8000-000c29d27ff7_sl_7F010AFC0AFB0AFA//Measure.FeatureSource

StackTrace:
 - MgResourceServiceHandler.ProcessOperation line 80 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ResourceServiceHandler.cpp
 - MgOpGetResourceContent.Execute line 120 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\OpGetResourceContent.cpp
 - MgServerResourceService.GetResourceContent line 863 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ServerResourceService.cpp
 - MgApplicationRepositoryManager.GetResourceContent line 378 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ApplicationRepositoryManager.cpp
 - MgResourceDefinitionManager.GetResource line 320 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ResourceDefinitionManager.cpp
 - MgResourceContentManager.GetDocument line 590 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ResourceContentManager.cpp
 - MgResourceDefinitionManager.GetDocument line 476 file 
d:\build\mapguide_open_source_v2.0\build_30.11\mgdev\server\src\services\resource\ResourceDefinitionManager.cpp   
Resource was not found: 
Session:8cee7762---8000-000c29d27ff7_sl_7F010AFC0AFB0AFA//Measure.FeatureSource


After this error,erros such  as "failed to styalize layer" are beginning 
to show up until server crashes.


Any help?

Simon

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


Re: [mapguide-users] Selection problem with King.Oracle provider

2009-05-12 Thread Simon Pelicon

Hi!
It looks like that there is some problem with primary key field you 
defined.

What data type is OID column?
Check if data are ok in OID column.

Simon

Andreas Morf wrote:

Within a project I switched from SDF provider to king.oracle (0.8.9)  and
now, selection in fusion doesn't work anymore for same data (no error, but
no highlighting nor attributes)
After investigating a little bit I found the following Selection-XML in
Query.php:

King.Oracle:
http://www.w3.org/2001/XMLSchema-instance";
xsi:noNamespaceSchemaLocation="FeatureSet-1.0.0.xsd">  AA==
AA==   AA==   AA==
AA==   AA==   

This, of course doesn't make lot of sense...

A primary key was set with fdo2fdo for a column named 'OID'

Any explanation for this problem?

Thanks, Andreas

___
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] Mapguide with fusion 2.0 beta

2009-04-21 Thread Simon Pelicon

Hi!

I switched form Fusion 1.1 to Fusion 2 beta.

But now i discovered that input options for map.query(options) function

doesn't have options.filter parameter as in Fusion1.1.

Only geometry intersect query are possible and attribute query's do not work an 
more?!

this,  as described here http://trac.osgeo.org/fusion/wiki/Cookbook/Map/Query
doesn't work with Fusion 2.

options.layers = 'parcels'
options.filter = 'parcelid = 10010';//???
map.query(options);

Am i missing something?


Simon


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


Re: [mapguide-users] Select points problem

2009-04-15 Thread Simon Pelicon

Hi!
Do you have for your point table primary key assigned.
Table must have a primary key assigned for selection to work.

Simon

Big Tom wrote:

Hi guys!

I try to find an answer here, but everything I trying doesn't work 



The Layer "Pontos" display points (data source from Oracle using King Oracle)


and Selectable Option is marked


Click in area works


but select point in a region


or clicking in the point


doesn't work 


What's wrong?

PS: sorry my english
  

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


Re: [mapguide-users] King.Oracle provider

2009-01-15 Thread Simon Pelicon





I could 't repeat this issue with and King.Oracle 0.8.5 provider and
MGOS 2.0.2. 
Testing http://localhost/mapguide/mapagent/selectfeaturesform.html

with different FDO classes and different filter string like ( OBJECT_ID
>= 30919 ) or(  OBJECT_ID >= 30919 AND PARENT_ID= 10 )
i get correct results.

Using "=>" returns FDO exception  "String does not represent a valid
filter" so you should use ">="

Simon

Kenneth Skovhede, GEOGRAF A/S wrote:
I was
testing the King.Oracle 0.8.5 provider, using the standard form:
  
http://localhost/mapguide/mapagent/selectfeaturesform.html
  
  
Using the previous version (the one included in FDO 3.3.1 / MGOS
2.0.2),
  
I could not get it to return any feature if I entered a non-trivial
filter like:
  
ID => 0 or ID <= 0
  
The filter 1=1 seems to work though.
  
  
The updated version seems to have trouble if I specify a column.
  
Specifying no columns seems to revert to the previous behavior.
  
  
Is this a known issue or limitiation?
  
  
  


No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.176 / Virus Database: 270.10.5/1881 - Release Date: 7.1.2009 17:59

  



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


Re: [mapguide-users] FLoat data with King.Oracle

2009-01-13 Thread Simon Pelicon




Hi!
It looks like, that there is a problem with FLOAT data type and old
King.Oracle provider version 0.7.4.
It should work with  latest King Oracle provider 0.8.5.

download link: http://www.sl-king.com/fdooracle/download/download.html

Simon

euskalmap wrote:

  Hi, 
why the column data FLOAT do not appear in my ressource layer in Mapguide
Studio ?
Thanks
NB:King.oracle 0.7.4 with Oracle 10.2g
  
  


No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.176 / Virus Database: 270.10.6/1887 - Release Date: 11.1.2009 17:57

  



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


Re: [mapguide-users] New King.Oracle 0.8 - improved performance

2008-11-21 Thread Simon Pelicon




Hi!
I exported whole Sheboygan sample SDF files to Oracle .
After extensively testing with provider version 0.8.5 i had no issues
with Sheboygan data.

Simon

Nick Adams wrote:

  
Output from the log file:
...
<325-10-21 13:59:41>c_KgOraConnection3::Open OK
<325-10-21 13:59:41>c_KgOraConnection3::GetConnectionState
<325-10-21 13:59:41>c_KgOraConnection3::GetConnectionState
<325-10-21 13:59:41>c_KgOraConnection::CreateCommand 0
'FdoCommandType_Select'
<325-10-21 13:59:41>c_KgOraConnection3::GetConnectionState
<325-10-21 13:59:41>c_KgOraConnection3::GetConnectionState
<325-10-21 13:59:41>c_KgOraSelectCommand.Execute: Command Parameters
<325-10-21 13:59:41>c_KgOraSelectCommand.Execute Select List: 'SHAPE,KEYVAL'
<325-10-21 13:59:41>c_KgOraSelectCommand.Execute Filter: 'SHAPE
ENVELOPEINTERSECTS GeomFromText('POLYGON ((325400 701400, 325600 701400,
325600 701600, 325400 701600, 325400 701400))')'
<325-10-21 13:59:41>c_KgOraConnection3::GetConnectionString

Then I get the usual error:  Attempted to read or write protected memory.


Nick


haris kurtagic wrote:
  
  

Here is king.oracle 0.8.5 version which has additional logging enabled;
http://www.sl-king.com/fdooracle/download/KingOra_0_8_5_log.rar

It will log executed sql's in KingOra.log file in same folder as
provider.
If you try perhaps we can figure out what is going on.

Haris

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Nick Adams
Sent: Friday, November 21, 2008 12:21 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] New King.Oracle 0.8 - improved performance


Hi Harris,

I've tried:
- Oracle 10.2 instant client
- Oracle 11g client

Both give the same:
Attempted to read or write protected memory... error.

I can also concur with FISHeR1: 0.8.4 gives an Unclassified Exception
when
rendering a layer in MGOS 2.02, using the instant client.
I'm not 100% certain, but from recollection 0.8.2 was the last version I
saw
working in MGOS.


Nick


haris kurtagic wrote:


  Which Oracle client and which version are you using ?

Haris


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Nick
  

Adams


  Sent: Thursday, November 20, 2008 5:04 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] New King.Oracle 0.8 - improved
  

performance


  

0.8.4 is giving the same error:
Attempted to read or write protected memory. This is often an
  

indication


  that other memory is corrupt.


Nick


Nick Adams wrote:
  
  

Ok. I've tried 0.8.3 and I'm now getting:
Attempted to read or write protected memory. This is often an

  
  indication
  
  
that other memory is corrupt.


Nick


haris kurtagic wrote:


  I posted 0.8.3 which should fix first problem.

Regarding SDO_FILTER If I remember correcly that is problem with 9.1
  

  
  (
  
  

  provider works in 9.2 ? ).

I don't have 9 versions available to test but if I look at docs and
  

  
  you
  
  

  try it perhaps we can fix it without me trying it.

Haris

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Nick
  

  
  Adams
  
  

  Sent: Thursday, November 20, 2008 3:55 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] New King.Oracle 0.8 - improved
  

  
  performance
  
  

  

- I have been using OracleSchema and it was set to the same as the
username
- Previously I was using 0.7.4.
  Unfortunately this didn't work. Then I was getting the error:
  ORA-29900: operator binding does not exist ORA-06553: PLS-306:
  

  
  wrong
  
  

  number or types of arguments in call to 'SDO_FILTER'

This I understand to be down to the fact that SDO_FILTER requires 3
arguments in 9i where-as the third one is optional in 10g. I was
  

  
  hoping
  
  

  0.8.x might solve this.


Nick


haris kurtagic wrote:
  
  
I am looking at code and I have two questions :

- are you using connection property OracleSchema, and value is same

  

  
  as
  
  

  
UserName ?
- this has worked for you before release 0.8.2 ?

Haris

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Nick

  
  Adams
  
  
Sent: Thursday, November 20, 2008 2:57 PM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] New King.Oracle 0.8 - improved

  
  performance
  
  
 

Re: [mapguide-users] How to connect oracle by using Mapguide Maestro

2008-11-10 Thread Simon Pelicon




Hi!
If you are using MapGuide Open source, you have to install King Oracle
provider.
Link for for installation instructions: http://www.sl-king.com/fdooracle/download/README.txt
Regards,
Simon

padmini godavarthi wrote:

  

hI,
iam using mapguide opensource 2.0( With .Net 2.0 + IIS)
I want to create one mgp by using oracle spatial data
Now my problem is that i could not found to connect orascle data by using
mapguide maestro.


If anybody knows plz help me


Thanks and Regards,
Padmini
  



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


Re: [mapguide-users] Again question about Eastern european charset & king.oracle

2008-08-21 Thread Simon Pelicon

Hi,
I have tested this for (č,š,ž,đ) and i see them correctly.

My system settings are:
Windows Xp:
Standard And formats: Croatian
Language:Croatia
Language for non-unicode programs:Croatian

Web server:
IIS with PHP

Oracle 10gR2:
NLS_CHARACTERSETEE8MSWIN1250

If you enter this characters for example in feature Label as constant 
expression do you see them correctly?


Simon



Dragan Podvezanec wrote:

Hi all.

I'm stuck with eastern european characters (č,š,ž,đ) and Oracle.

I tried different NLS_LANG parameters on client (which is also the server),
and always have some kind of errors. What is most strange to me is that
FDO2FDO tool shows those characters without errors, and Mapguide OS doesn't
show those characters (in MapFrame), although they use same provider. So,
where does some charset conversion take place?

Here is my setup:

MGOS and Oracle on same machine, all regional settings and languages on
croatian, database charset WIN1250 (I can't change this because of possible
data loss). NLS_LANG parameter in registry is CROATIAN_CROATIA.EE8MSWIN1250

FDO2FDO, Toad, and other dB tools: OK
MGOS Viewer with king.Oracle provider: NOT ok, characters don't show or ?
shows instead.

  

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


Re: [mapguide-users] Map or Layer Preview don't show the Geometry

2008-08-12 Thread Simon Pelicon




Hi,
What is Oracle SRID for this geometry?

Simon

Alexander Fischer wrote:

  Hi,
I'm working with MapGuide Open Source (2.0.1), MapGuide Maestro and
King.Oracle (0.7.4).
The Dataconnection works and I created a map and a Layer where I
attached a Geometry with polylines.
Also I edited the Layer style and the initial map view but when I tried
the Preview the browser showed only the mapviewer with an empty map (no
geometry).
  
When I open the data with the webstudio there is an advice in the
Preview-window:
"The coordinate system is invalid.
Could not create coordinate system forward transformation with
specified coordinate systems.
Exception occurred in method MgCoordinateSystem.CCoordinateSystem at
line 380 in file ..\CoordinateSystem\CoordSys.cpp"
  
My used Coordinate system is PSAD56 / UTM zone 18S (EPSG:24878)
So I checked the WKT Code with Web Tier Test:
PROJCS["PSAD56 / UTM zone
18S",GEOGCS["PSAD56",DATUM["Provisional_South_American_Datum_1956",SPHEROID["International
1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6248"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.01745329251994328,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4248"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-75],PARAMETER["scale_factor",0.9996],PARAMETER["false_easting",50],PARAMETER["false_northing",1000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","24878"]]
  
Status: Pass
  
I don't know where the problem could be. Has somebody an idea?
  
I would be pleased to receive an answer.
Kind regards, Alexander Fischer
  
  No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.6.0/1602 - Release Date: 9.8.2008 13:22
  
  

___
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] Can I use win-1250 charset with king.oracle provider?

2008-08-05 Thread Simon Pelicon




Hi!
The client character set is set with the environment variable NLS_LANG.
What is your NLS_LANG environment variable on machine where you have
oracel client?
What are NLS_CHARACTERSET and NLS_NCHAR_CHARACTERSET values in your
database?
Do you have Oracle database on the same machine as MgServer?
Try to check what characters do you get with Fdo2Fdo tool.

Simon


Dragan Podvezanec wrote:

  Hi all.

Unfortunately, all tables that I have to use are in win-1250 Eastern
european encoding. Because of this, I don't see any characters on feature
labels which use eastern european characters. Same is with feature
properties.

I searched this forum and documentation, but I couldn't find anything about
setting charset. I need win-1250 charset in mapFrame, properties pane and
Task pane. Is this achievable?
  



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


Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle - no geometry is rendered

2008-07-10 Thread Simon Pelicon




Hi!
I would suggest that you open  KingOracleProvider.dll with DependencyWalker ( http://www.dependencywalker.com/) 
and look for missing dll.

Simon




Rahul wrote:

  
  
  Hi ,
    I  installed only King Oracle Provider for Oracle Instant
Client for both the cases -
   
  MGOS1.2.0 -   v0_7_3(King Oracle Provider for Oracle
Instant Client)
   
  MGOS2.0.1 -   v0_7_4(King Oracle Provider for Oracle
Instant Client)
   
   
  Max !!
  
  
  -
Original Message 
From: Simon Pelicon <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Thursday, July 10, 2008 4:01:18 PM
Subject: Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 -
FdoKingOracle - no geometry is rendered
  
Hi,
What i meant is taht you have oracle client on Windows Server 2003 (not
XP). Sorry.
If you use Oracle Instant Client  than you should use King Oracle
Provider for Oracle Instant Client.
link: http://www.sl-king.com/fdooracle/download/FdoKingOracle_Win32_Instant_FDO_3_3_v0_7_4.zip
  
Simon
  
Rahul wrote:
  

Hi,
 Nops i installed Oracle Instant Client in Windows Server
2003,Do i need to install oracle instant client in the MapGuide Studio
2009 FDO Directory?
Max



-
Original Message 
From: Simon Pelicon <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Thursday, July 10, 2008 3:34:05 PM
Subject: Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 -
FdoKingOracle - no geometry is rendered

Hi,
Do you have Oracle client installed on Windows XP machine?
Simon

Rahul wrote:

  
  Hi,
   
      Intresting ,How you able to view the Connection Properties
Boxes, As I am using Windows Server 2003 with MGOS 2.0.1 and then on
another machine Windows XP having MapGuide Studio 2009,I downloaded
FdoKingOracle_Win32_FDO_3_3_v0_7_4 as well as necessary files for the
oracle Instant Client in the \Server\Bin\FDO Folder.
   
  Once I connect to the MapGuide Studio and try to open
connection i use to see the configuration setting for King Oracle FDO
Provider but have nothing in the connection string, so i unable to
enter the Property and the corresponding values.It use to work well on
my machine having MGOS1.2.0 Windows XP with MGS 2008.
   
  Thks
  Max !!
  
  
  
  
  -
Original Message 
From: djonio <[EMAIL PROTECTED]>
To: mapguide-users@lists.osgeo.org
Sent: Wednesday, July 9, 2008 7:43:08 PM
Subject: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle -
no geometry is rendered
  
  
Howdy,
  
Windows XP
MGOS 2.0.1 
MG Studio 2009 with FdoKingOracle_Win32_FDO_3_3_v0_7_4
Entry from providers.xml:
            
            King.Oracle.0.1.1 
            King Provider for
Oracle 
            Read/write access to spatial and
attribute data in
an Oracle Spatial. 
            False 
            0.1.1.0 
           
3.3.0.0
  
            C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\FDO\KingOracleProvider.dll
  
            
  
Oracle instantclient_10.2 on the box.
No issues with connection. All seems to work well in terms of
collecting the
schema and attribute information. 
  
When creating a Layer … Layer Preview never seems to render any
geometry …
This error:
<2008-07-08T16:20:19>    Fusion Viewer            Administrator
Error: Failed to stylize layer: test_KOP
        The coordinate system is invalid.
        Could not create coordinate system forward transformation with
specified coordinate systems.
StackTrace:
  - MgMappingUtil.StylizeLayers line 775 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\server\src\services\mapping\MappingUtil.cpp 
  
Failed to stylize layer: test_KOP
The coordinate system is invalid.
Could not create coordinate system forward transformation with specified
coordinate systems.
  
I am using SRID = 2236. 
select srid, cs_name, auth_srid from MDSYS.CS_SRS where srid = 2236;
  
2236    NAD83 / Florida East (ftUS)        2236
  
… Now today ….
When attempting to create new layer using the above provider I get this:
An exception occurred in FDO component. ORA-32102: invalid OCI handle 
  
Seems pretty “flacky” to me because when I “Configure a Feature Resource
using Generic Editor “ 
Connection test is successful AND when I do the “Preview -> Refresh”
it
pulls down all of my classes (appox. 20 in this case)
“View Data” works .. great!!
“View Feature” retrieves the correct feature count.
… however nothing renders!!! Just spins …
  
Anyone aware of any fix for any of this?
  
dennis
  
  
  
  
-- 
View this message in context: http://www.nabble.com/MG-Studio-2009---MGOS-2.0.1---FdoKingOracle---no-geometry-is-rendered-tp18360497p18360497.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
  
___
mapguide-users mailing list
  mapguide-users@lists.osgeo.org
  http://lists

Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle - no geometry is rendered

2008-07-10 Thread Simon Pelicon




Hi!

I apologize for the wrongly asked question.
What I meant is that if you have Oracle client installed on Windows
Server 2003 machine?

Simon


Simon Pelicon wrote:

  
Hi,
Do you have Oracle client installed on Windows XP machine?
Simon
  
Rahul wrote:
  


Hi,
 
    Intresting ,How you able to view the Connection Properties
Boxes, As I am using Windows Server 2003 with MGOS 2.0.1 and then on
another machine Windows XP having MapGuide Studio 2009,I downloaded
FdoKingOracle_Win32_FDO_3_3_v0_7_4 as well as necessary files for the
oracle Instant Client in the \Server\Bin\FDO Folder.
 
Once I connect to the MapGuide Studio and try to open connection
i
use to see the configuration setting for King Oracle FDO Provider but
have nothing in the connection string, so i unable to enter the
Property and the corresponding values.It use to work well on my machine
having MGOS1.2.0 Windows XP with MGS 2008.
 
Thks
Max !!




-
Original Message 
From: djonio <[EMAIL PROTECTED]>
To: mapguide-users@lists.osgeo.org
Sent: Wednesday, July 9, 2008 7:43:08 PM
Subject: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle -
no geometry is rendered


Howdy,

Windows XP
MGOS 2.0.1 
MG Studio 2009 with FdoKingOracle_Win32_FDO_3_3_v0_7_4
Entry from providers.xml:
            
            King.Oracle.0.1.1 
            King Provider for
Oracle 
            Read/write access to spatial and
attribute data in
an Oracle Spatial. 
            False 
            0.1.1.0 
           
3.3.0.0

            C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\FDO\KingOracleProvider.dll

            

Oracle instantclient_10.2 on the box.
No issues with connection. All seems to work well in terms of
collecting the
schema and attribute information. 

When creating a Layer … Layer Preview never seems to render any
geometry …
This error:
<2008-07-08T16:20:19>    Fusion Viewer            Administrator
Error: Failed to stylize layer: test_KOP
        The coordinate system is invalid.
        Could not create coordinate system forward transformation with
specified coordinate systems.
StackTrace:
  - MgMappingUtil.StylizeLayers line 775 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\server\src\services\mapping\MappingUtil.cpp 
  
Failed to stylize layer: test_KOP
The coordinate system is invalid.
Could not create coordinate system forward transformation with specified
coordinate systems.

I am using SRID = 2236. 
select srid, cs_name, auth_srid from MDSYS.CS_SRS where srid = 2236;

2236    NAD83 / Florida East (ftUS)        2236

… Now today ….
When attempting to create new layer using the above provider I get this:
An exception occurred in FDO component. ORA-32102: invalid OCI handle 

Seems pretty “flacky” to me because when I “Configure a Feature Resource
using Generic Editor “ 
Connection test is successful AND when I do the “Preview -> Refresh”
it
pulls down all of my classes (appox. 20 in this case)
“View Data” works .. great!!
“View Feature” retrieves the correct feature count.
… however nothing renders!!! Just spins …

Anyone aware of any fix for any of this?

dennis




-- 
View this message in context: http://www.nabble.com/MG-Studio-2009---MGOS-2.0.1---FdoKingOracle---no-geometry-is-rendered-tp18360497p18360497.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




No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.4.7/1543 - Release Date: 9.7.2008 18:32
  

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
  
  
  No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.4.7/1543 - Release Date: 9.7.2008 18:32
  
  

___
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] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle - no geometry is rendered

2008-07-10 Thread Simon Pelicon




Hi,
What i meant is taht you have oracle client on Windows Server 2003 (not
XP). Sorry.
If you use Oracle Instant Client  than you should use King Oracle
Provider for Oracle Instant Client.
link:
http://www.sl-king.com/fdooracle/download/FdoKingOracle_Win32_Instant_FDO_3_3_v0_7_4.zip

Simon

Rahul wrote:

  
  
  Hi,
   Nops i installed Oracle Instant Client in Windows Server
2003,Do i need to install oracle instant client in the MapGuide Studio
2009 FDO Directory?
  Max
  
  
  
  -
Original Message 
From: Simon Pelicon <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Thursday, July 10, 2008 3:34:05 PM
Subject: Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 -
FdoKingOracle - no geometry is rendered
  
Hi,
Do you have Oracle client installed on Windows XP machine?
Simon
  
Rahul wrote:
  

Hi,
 
    Intresting ,How you able to view the Connection Properties
Boxes, As I am using Windows Server 2003 with MGOS 2.0.1 and then on
another machine Windows XP having MapGuide Studio 2009,I downloaded
FdoKingOracle_Win32_FDO_3_3_v0_7_4 as well as necessary files for the
oracle Instant Client in the \Server\Bin\FDO Folder.
 
Once I connect to the MapGuide Studio and try to open connection
i use to see the configuration setting for King Oracle FDO Provider but
have nothing in the connection string, so i unable to enter the
Property and the corresponding values.It use to work well on my machine
having MGOS1.2.0 Windows XP with MGS 2008.
 
Thks
Max !!




-
Original Message 
From: djonio <[EMAIL PROTECTED]>
To: mapguide-users@lists.osgeo.org
Sent: Wednesday, July 9, 2008 7:43:08 PM
Subject: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle -
no geometry is rendered


Howdy,

Windows XP
MGOS 2.0.1 
MG Studio 2009 with FdoKingOracle_Win32_FDO_3_3_v0_7_4
Entry from providers.xml:
            
            King.Oracle.0.1.1 
            King Provider for
Oracle 
            Read/write access to spatial and
attribute data in
an Oracle Spatial. 
            False 
            0.1.1.0 
           
3.3.0.0

            C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\FDO\KingOracleProvider.dll

            

Oracle instantclient_10.2 on the box.
No issues with connection. All seems to work well in terms of
collecting the
schema and attribute information. 

When creating a Layer … Layer Preview never seems to render any
geometry …
This error:
<2008-07-08T16:20:19>    Fusion Viewer            Administrator
Error: Failed to stylize layer: test_KOP
        The coordinate system is invalid.
        Could not create coordinate system forward transformation with
specified coordinate systems.
StackTrace:
  - MgMappingUtil.StylizeLayers line 775 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\server\src\services\mapping\MappingUtil.cpp 
  
Failed to stylize layer: test_KOP
The coordinate system is invalid.
Could not create coordinate system forward transformation with specified
coordinate systems.

I am using SRID = 2236. 
select srid, cs_name, auth_srid from MDSYS.CS_SRS where srid = 2236;

2236    NAD83 / Florida East (ftUS)        2236

… Now today ….
When attempting to create new layer using the above provider I get this:
An exception occurred in FDO component. ORA-32102: invalid OCI handle 

Seems pretty “flacky” to me because when I “Configure a Feature Resource
using Generic Editor “ 
Connection test is successful AND when I do the “Preview -> Refresh”
it
pulls down all of my classes (appox. 20 in this case)
“View Data” works .. great!!
“View Feature” retrieves the correct feature count.
… however nothing renders!!! Just spins …

Anyone aware of any fix for any of this?

dennis




-- 
View this message in context: http://www.nabble.com/MG-Studio-2009---MGOS-2.0.1---FdoKingOracle---no-geometry-is-rendered-tp18360497p18360497.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




No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.4.7/1543 - Release Date: 9.7.2008 18:32
  

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users
  
  
  
  
  
  
  No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.4.7/1543 - Release Date: 9.7.2008 18:32
  
  

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



___
mapguide-users 

Re: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle - no geometry is rendered

2008-07-10 Thread Simon Pelicon




Hi,
Do you have Oracle client installed on Windows XP machine?
Simon

Rahul wrote:

  
  
  Hi,
   
      Intresting ,How you able to view the Connection Properties
Boxes, As I am using Windows Server 2003 with MGOS 2.0.1 and then on
another machine Windows XP having MapGuide Studio 2009,I downloaded
FdoKingOracle_Win32_FDO_3_3_v0_7_4 as well as necessary files for the
oracle Instant Client in the \Server\Bin\FDO Folder.
   
  Once I connect to the MapGuide Studio and try to open connection i
use to see the configuration setting for King Oracle FDO Provider but
have nothing in the connection string, so i unable to enter the
Property and the corresponding values.It use to work well on my machine
having MGOS1.2.0 Windows XP with MGS 2008.
   
  Thks
  Max !!
  
  
  
  
  -
Original Message 
From: djonio <[EMAIL PROTECTED]>
To: mapguide-users@lists.osgeo.org
Sent: Wednesday, July 9, 2008 7:43:08 PM
Subject: [mapguide-users] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle -
no geometry is rendered
  
  
Howdy,
  
Windows XP
MGOS 2.0.1 
MG Studio 2009 with FdoKingOracle_Win32_FDO_3_3_v0_7_4
Entry from providers.xml:
            
            King.Oracle.0.1.1 
            King Provider for
Oracle 
            Read/write access to spatial and
attribute data in
an Oracle Spatial. 
            False 
            0.1.1.0 
           
3.3.0.0
  
            C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\FDO\KingOracleProvider.dll
  
            
  
Oracle instantclient_10.2 on the box.
No issues with connection. All seems to work well in terms of
collecting the
schema and attribute information. 
  
When creating a Layer … Layer Preview never seems to render any
geometry …
This error:
<2008-07-08T16:20:19>    Fusion Viewer            Administrator
Error: Failed to stylize layer: test_KOP
        The coordinate system is invalid.
        Could not create coordinate system forward transformation with
specified coordinate systems.
StackTrace:
  - MgMappingUtil.StylizeLayers line 775 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\server\src\services\mapping\MappingUtil.cpp 
  
Failed to stylize layer: test_KOP
The coordinate system is invalid.
Could not create coordinate system forward transformation with specified
coordinate systems.
  
I am using SRID = 2236. 
select srid, cs_name, auth_srid from MDSYS.CS_SRS where srid = 2236;
  
2236    NAD83 / Florida East (ftUS)        2236
  
… Now today ….
When attempting to create new layer using the above provider I get this:
An exception occurred in FDO component. ORA-32102: invalid OCI handle 
  
Seems pretty “flacky” to me because when I “Configure a Feature Resource
using Generic Editor “ 
Connection test is successful AND when I do the “Preview -> Refresh”
it
pulls down all of my classes (appox. 20 in this case)
“View Data” works .. great!!
“View Feature” retrieves the correct feature count.
… however nothing renders!!! Just spins …
  
Anyone aware of any fix for any of this?
  
dennis
  
  
  
  
-- 
View this message in context: http://www.nabble.com/MG-Studio-2009---MGOS-2.0.1---FdoKingOracle---no-geometry-is-rendered-tp18360497p18360497.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
  
  
  
  
  No virus found in this incoming message.
Checked by AVG - http://www.avg.com 
Version: 8.0.138 / Virus Database: 270.4.7/1543 - Release Date: 9.7.2008 18:32
  
  

___
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] MG Studio 2009 - MGOS 2.0.1 - FdoKingOracle - no geometry is rendered

2008-07-09 Thread Simon Pelicon

Perhaps this could help
http://discussion.autodesk.com/thread.jspa?threadID=543032

Simon

djonio wrote:

Howdy,

Windows XP
MGOS 2.0.1 
MG Studio 2009 with FdoKingOracle_Win32_FDO_3_3_v0_7_4

Entry from providers.xml:

King.Oracle.0.1.1 
King Provider for Oracle 
Read/write access to spatial and attribute data in
an Oracle Spatial. 
False 
0.1.1.0 
3.3.0.0 
C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\FDO\KingOracleProvider.dll 



Oracle instantclient_10.2 on the box.
No issues with connection. All seems to work well in terms of collecting the
schema and attribute information. 


When creating a Layer … Layer Preview never seems to render any geometry …
This error:
<2008-07-08T16:20:19> Fusion Viewer Administrator
 Error: Failed to stylize layer: test_KOP
The coordinate system is invalid.
Could not create coordinate system forward transformation with
specified coordinate systems.
 StackTrace:
  - MgMappingUtil.StylizeLayers line 775 file
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\server\src\services\mapping\MappingUtil.cpp 
Failed to stylize layer: test_KOP

The coordinate system is invalid.
Could not create coordinate system forward transformation with specified
coordinate systems.

I am using SRID = 2236. 
select srid, cs_name, auth_srid from MDSYS.CS_SRS where srid = 2236;


2236 NAD83 / Florida East (ftUS)2236

… Now today ….
When attempting to create new layer using the above provider I get this:
An exception occurred in FDO component. ORA-32102: invalid OCI handle 


Seems pretty “flacky” to me because when I “Configure a Feature Resource
using Generic Editor “ 
Connection test is successful AND when I do the “Preview -> Refresh” it

pulls down all of my classes (appox. 20 in this case)
“View Data” works .. great!!
“View Feature” retrieves the correct feature count.
… however nothing renders!!! Just spins …

Anyone aware of any fix for any of this?

dennis




  

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


Re: [mapguide-users] King FDO and Table with 2 primary key

2008-05-29 Thread Simon Pelicon





Selection, for table with 2 columns in primary key, works in MGOS
2.0.1. 
It looks like, that an layer stylization problem occurs in MGOS 1.2
when selecting data from your  table.

Simon


Simon Pelicon wrote:

  
Hi,
  
Yes you can send me dump to my email.
  
Simon
  
  
ary sucaya wrote:
  


Hello,
 
Does it mean that i did something wrong in my table definition?
I
tried to create another table with pk from two columns and give me the
same problems.
Or, if you interested, i can send you a small oracle dump file
(415 KB). It also contain another problem with point indexes.
Thanks..
 
 
Ary Sucaya


-
Original Message 
From: Simon Pelicon <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Tuesday, May 27, 2008 12:29:14 PM
Subject: Re: [mapguide-users] King FDO and Table with 2 primary key

Hi!
I tested provider on table with primary key from 2 columns.
I tested MgServer 1.2 (provider version 0.7.3) and MgServer 2.0 but
i couldn't repeat problem (server crash).


Simon
 

ary sucaya wrote:

  
  I
don't get any error when i read it from fdo2fdo. Well, i hope this
problem will be fixed soon :)
   
   
  Ary
Sucaya
  
  
  -
Original Message 
From: Haris Kurtagic <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Monday, May 26, 2008 9:34:28 PM
Subject: RE: [mapguide-users] King FDO and Table with 2 primary key
  
  
  
  Ok
 thanks, you could also try to just read data ( no copy ) but I think
result would be same.
   
  It
sounds like provider problem, Simon will test it tomorrow and get back
to you.
  Haris
   
   
  
  
  From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
  On Behalf Of ary sucaya
  Sent: Monday, May 26, 2008 9:23 PM
  To: MapGuide Users Mail List
  Subject: Re: [mapguide-users] King FDO and Table with 2
primary key
  
  
   
  
  
  Yes, i have
primary key with 2 columns. I tried to copy oracle table into SHP
through FDO2FDO, and it said FDO class 'MY_TABLE' has more than one
identity property; only one identity property is supported. 
  
  
   
  
  
   
  
  
  Ary Sucaya
  
  
  - Original
Message 
From: Haris Kurtagic <[EMAIL PROTECTED]>
To: MapGuide Users Mail List 
Sent: Monday, May 26, 2008 9:18:07 PM
Subject: RE: [mapguide-users] King FDO and Table with 2 primary key
  
  I
guess you have primary key with 2 columns?
   
  We
will check provider itself and post findings.
  In
such cases , I would suggest to try to read table with Fdo2Fdo in some
cases that can be good indication where the problem is.
   
  Haris
   
  
  
  From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
  On Behalf Of ary sucaya
  Sent: Monday, May 26, 2008 6:08 PM
  To: Mapguide User
  Subject: [mapguide-users] King FDO and Table with 2
primary
key
  
  
   
  
  
  Hii group,
  
  
   
  
  
  I have an oracle
table with 2 primary key. Everytime i select an object from this table
in MapGuide, MgServer will crash and need to restart. Is there any
workaround for this problem?
  
  
  I'm using MGOS
1.2 and SL-King Oracle 0.7.3
  
  
  Thank U
  
  
   
  
  
   
  
  
  Ary Sucaya
  
  
   
  
  
  
   
  
  
  
  
  
___
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-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] SL-King Provider Can't Connect

2008-05-11 Thread Simon Pelicon




Hi!
Which provider do you use: For Oracle Client or for Oracle Instant
Client?
Do you have more Oracle Client installed?
If you are using provider for instant client,than your service name
should be something like: //COMPUTER IP/mapguide/

Regards,
Simon

ary sucaya wrote:

  
  
  Hii group,
  I'm having problem with sl-king oracle spatial.
Currently i used oracle client and i able to connect database
server through net manager. However, when i tried to connect from
mapguide studio it says:
  An exception occurred in FDO component.
ORA-12154: TNS:could not resolve the connect identifier specified
  from sqlnet.log I found message
  Fatal NI
connect error 12541, connecting to:
 (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=mapguide)(CID=(PROGRAM=C:\Program
Files\MapGuideOpenSource2.0\Server\Bin\MgServer.exe)(HOST=MYCOMP)(USER=SYSTEM)))(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521)))
    VERSION
INFORMATION:
 TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
 Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version
10.2.0.1.0 - Production
  Time: 10-MAY-2008 16:53:23
  Tracing not turned on.
  Tns error struct:
    ns main err code: 12541
    TNS-12541: Message 12541 not found; No message file for
product=NETWORK, facility=TNS
    ns secondary err code: 12560
    nt main err code: 511
    TNS-00511: Message 511 not found; No message file for
product=NETWORK, facility=TNS
    nt secondary err code: 61
    nt OS err code: 0
  Connection string that i used
was:
  Username:Me
  Password:MyPassword
  Service:mapguide
  OracleShema:
  KingFDOClass:
   
  Anyone know my problem or
maybe i missed some step?
   
   
  Regards,
   
  Ary Sucaya
   
   
  
  
  Be a better friend, newshound, and know-it-all with
Yahoo! Mobile. 
Try it now.
  

___
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] King Oracle Problem

2008-04-10 Thread Simon Pelicon




Hi!
Connection properties are blank because provider did not loaded successfully.
Open  KingOracleProvider.dll with DependencyWalker ( http://www.dependencywalker.com/) and look for missing dll.
I think that Oracle client needs some Microsoft MFC dll files.

Simon





Luis Ramos wrote:

  Hello,

I'm facing a similar problem on a XP machine with MagGuide Server 2.0,
Apache 2 and Oracle 9.2.

What I've done:
- downloaded and installed the King Oracle v.0.7.3 For FDO 3.3 with Oracle
Instant Client.
- downloaded and installed the Oracle Instant Client basic v 10.2.0.3
- changed the providers.xml file
- restarted the MapGuide Server

What do I get when creating a new data connection:
- on Autodesk MapGuide Studio 2008, shows the King Provider on the FDO list
but after selecting this, the connection properties are blank and non
editable.
- on AutoCAD Map 3D 2008, shows the King Provider on the FDO list but after
selecting this, I get an unable to create connection to provider
"King.Oracle.0.1.1".

If you managed to solve this problem please tell me how.

Luís Ramos



A H wrote:
  
  
hello. i'm also currently facing the same problem. i'm using Oracle 9.2 as
database. i followed the steps and i got this message when testing the
connection in MapGuide Studio 2008:

An exception occurred in FDO component.
ORA-12705: Cannot access NLS data files or invalid environment specified

what does that mean?


my FDO version is 3.2.2. and i downloaded the v0.7.3 Windows 32-bit
provider with Oracle Instant Client from the website. i copied the
King.Oracle DLLs and Oracle instant clients DLL and put it in the FDO
folder. is this definition correct for providers.xml?


	  King.Oracle.0.1.1 
	  King Provider for Oracle 
 	  Read/write access to spatial and attribute data in an
Oracle Spatial. 
	  False 
	  0.1.1.0 
	  3.2.2.0 
	  C:\Program
Files\MapGuideOpenSource\Server\Bin\FDO\KingOracleProvider.dll 
	

i thought everything should be fine since MapGuide Studio is enable to
display the providers but i got that message. i use
//[host]:1521/[service] as the service name as mentioned in the Oracle's
documentation.




Simon Pelicon wrote:


  Hi,
Which version of MapGuide do you have?
There are providers v0.7.3 for different FDO versions (3.1 ,3.2 and
.3.2.2)

Do you restart MG server after changing provider files,xml etc...?
You can also check which files are missing or wrong , using "Dependency 
walker" http://www.dependencywalker.com/
With Dependency W. open KingProvider.dll.

Simon

JeromeA wrote:
  
  
Hi,

yes I think so. I took the first one: v0.7.3 Windows 32-bit provider
with
Oracle Instant Client.
I'm trying to connect to Oracle 9.2.0.4.0 from MG Studio 2008

Jerome
  

  
  ___
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] RE: [fdo-internals] New King.Oracle provider for FDO 3.3

2008-03-18 Thread Simon Pelicon


Sorry for "to quick" response.

I will have to check for the difference and i will let you know.
Thanks!

Simon

Simon Pelicon wrote:

There is no difference. I just added link to our page

Simon

Greg Boone wrote:

Hi Simon,

The King Oracle Provider is also being distributed as a part of the 
FDO 3.3.0 distribution available at 
http://fdo.osgeo.org/content/fdo-330-downloads, built from the 
KingOracle source code in 
https://svn.osgeo.org/fdo/trunk/Providers/KingOracle. What is the 
difference between your version and the 3.3.0 version?


Greg


-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Simon 
Pelicon

Sent: Tuesday, March 18, 2008 7:14 AM
To: MapGuide Users Mail List; FDO Internals Mail List
Subject: [fdo-internals] New King.Oracle provider for FDO 3.3

Hi,

King.Oracle provider v0.7.3 for FDO 3.3(MapGuide Open Source 2.0)
is now available for download: 
http://www.sl-king.com/fdooracle/download/download.html.


Provider is tested with MapGuide Open Source 2.0.

Simon

___
fdo-internals mailing list
[EMAIL PROTECTED]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
___
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] RE: [fdo-internals] New King.Oracle provider for FDO 3.3

2008-03-18 Thread Simon Pelicon

There is no difference. I just added link to our page

Simon

Greg Boone wrote:

Hi Simon,

The King Oracle Provider is also being distributed as a part of the FDO 3.3.0 
distribution available at http://fdo.osgeo.org/content/fdo-330-downloads, built 
from the KingOracle source code in 
https://svn.osgeo.org/fdo/trunk/Providers/KingOracle. What is the difference 
between your version and the 3.3.0 version?

Greg


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon Pelicon
Sent: Tuesday, March 18, 2008 7:14 AM
To: MapGuide Users Mail List; FDO Internals Mail List
Subject: [fdo-internals] New King.Oracle provider for FDO 3.3

Hi,

King.Oracle provider v0.7.3 for FDO 3.3(MapGuide Open Source 2.0)
is now available for download: 
http://www.sl-king.com/fdooracle/download/download.html.

Provider is tested with MapGuide Open Source 2.0.

Simon

___
fdo-internals mailing list
[EMAIL PROTECTED]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
___
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] King.Oracle provider for FDO 3.3

2008-03-18 Thread Simon Pelicon

Hi,

King.Oracle provider v0.7.3 for FDO 3.3(MapGuide Open Source 2.0) is now 
available for download: 
http://www.sl-king.com/fdooracle/download/download.html.


Provider is tested with MapGuide Open Source 2.0.

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


[mapguide-users] New King.Oracle provider for FDO 3.3

2008-03-18 Thread Simon Pelicon

Hi,

King.Oracle provider v0.7.3 for FDO 3.3(MapGuide Open Source 2.0) 
is now available for download: http://www.sl-king.com/fdooracle/download/download.html.


Provider is tested with MapGuide Open Source 2.0.

Simon

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


Re: [mapguide-users] Adding additional Providers for 2.0 Beta

2008-01-24 Thread Simon Pelicon




Hi,
>From email subject i saw that you use mapguide 2.0 Beta which uses FDO
3.3 RC1. For FDO 3.3, oracle provider is not yet available for download
from our homepage.
It is still in early test stage.
But for everyone who wants to test it,here is the link
ftp://www.sl-king.com/simon
Please tell me for any issues found!!! 

Johan Nel wrote:

  
  

  
  
  I want to test oracle connectivity.  I add the
SL-KING
Oracle FDO provider in the normal fashion but cannot get the system to
display
it in the  FDO list.
   
  Any ideas
   
  Johan Nel
Technical Director
Open Spatial Australia
  
  Tel:  
+61 (2) 9449 3222
Fax:  +61 (2) 9449 3211
Mbl:  +61 (04) 11895050
  [EMAIL PROTECTED]
  Visit: www.openspatial.com.au
   
  
  

___
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] King Oracle Problem

2008-01-15 Thread Simon Pelicon




No, Instant Client is not necessary if you use Oracle 10g client.
In this case you have to download King Provider for  v0.7.3
Windows 32-bit provider for Oracle 10.2 Client  and not
for Instant Client.

Simon

JeromeA wrote:

  Hm, jes could be. But I also tried to install Oracle 10g client, wich works,
and deinstalled the 9i Client. So there is no Instant Client necessary,
isn't it? 


Simon Pelicon wrote:
  
  



  
  


Did you by mistake downland 64bit version of oracle instant client
instead of 32bit? 

Simon 

JeromeA wrote:

  Hi,
I've got a MGE 2008 trial, with FDO 3.2.2. I downloaded Fing for 3.2.2. I
restarted several times.
I also tried the dependency walker wich shows a few missing files (see
attached image).

Thanks for your help ,

Jerome



Simon Pelicon wrote:
  
  
Hi,
Which version of MapGuide do you have?
There are providers v0.7.3 for different FDO versions (3.1 ,3.2 and
.3.2.2)

Do you restart MG server after changing provider files,xml etc...?
You can also check which files are missing or wrong , using "Dependency 
walker" http://www.dependencywalker.com/ 
With Dependency W. open KingProvider.dll.

Simon




  
  http://www.nabble.com/file/p14833719/dependency.jpg  
  




___
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] King Oracle Problem

2008-01-15 Thread Simon Pelicon




Did you by mistake downland 64bit version of oracle instant client
instead of 32bit?

Simon

JeromeA wrote:

  Hi,
I've got a MGE 2008 trial, with FDO 3.2.2. I downloaded Fing for 3.2.2. I
restarted several times.
I also tried the dependency walker wich shows a few missing files (see
attached image).

Thanks for your help ,

Jerome



Simon Pelicon wrote:
  
  
Hi,
Which version of MapGuide do you have?
There are providers v0.7.3 for different FDO versions (3.1 ,3.2 and
.3.2.2)

Do you restart MG server after changing provider files,xml etc...?
You can also check which files are missing or wrong , using "Dependency 
walker" http://www.dependencywalker.com/
With Dependency W. open KingProvider.dll.

Simon




  
  http://www.nabble.com/file/p14833719/dependency.jpg 
  



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


Re: [mapguide-users] King Oracle Problem

2008-01-14 Thread Simon Pelicon

Hi,
Which version of MapGuide do you have?
There are providers v0.7.3 for different FDO versions (3.1 ,3.2 and .3.2.2)

Do you restart MG server after changing provider files,xml etc...?
You can also check which files are missing or wrong , using "Dependency 
walker" http://www.dependencywalker.com/

With Dependency W. open KingProvider.dll.

Simon

JeromeA wrote:

Hi,

yes I think so. I took the first one: v0.7.3 Windows 32-bit provider with
Oracle Instant Client.
I'm trying to connect to Oracle 9.2.0.4.0 from MG Studio 2008

Jerome
  

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


Re: [mapguide-users] King Oracle Problem

2008-01-14 Thread Simon Pelicon




Hi,
Did you installed right version of King Oracle Provider for Oracle
instant Client?

- Simon


JeromeA wrote:

  Hi,
and thank you for all of your replies. Yes I think I've made all the changes
that are mentioned in the readme.txt of FDO KingOracle Provider. I copied
all the necessary files an made the entries in the providers.xml and matched
the King FDO Version to the others.

Jerome


Jackie Ng wrote:
  
  
Is that provider targeting the correct version of FDO that comes with your
installed MapGuide OS?

- Jackie


JeromeA wrote:


  Hi,

I'm trying to work with the King Oracle Provider to connect to a Oracle
9.2 database. I've copied the 3 files (KingOracleProvider.dll;
KingOracleMessage.dll and KingOracleOverrides.dll) plus the oracle-client
files mentioned in the readme.txt.
When trying to connect to the database in studio there is an error
message saying that the provider could not be loaded. I also cannot make
any entries in the "connections box" (sorry have german version:-). Where
could the problem be?

Thanx for your help.

Jerome

MG on Win Server 2003, IIS and php
MG Studio on Win XP

  



  
  
  



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


RE: [mapguide-users] Mapuide open source

2007-10-25 Thread Simon Pelicon
Hi,

Probably there is no Indentity Propertiy defined for FDO class.

There is no identity property defined if there is no primary key for
that table.

You can check this using Fdo2Fdo tool.

 

Simon



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marius
Jansen van Rensburg
Sent: Thursday, October 25, 2007 10:18 AM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Mapuide open source

 

Hi guys

 

I am currently authoring a map on mapguide open source 1.2 using
mapguide studio 2008. But the problem I am encountering is that I cannot
select entities on most of my layers (all except one, to be precise). My
data is in oracle spatial and I am using the fdo-king for oracle
provider. Does anyone have an idea as to why this is happening?

 

Regards,

 

Marius

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


RE: [mapguide-users] Save user drawn polygon to an existing layer

2007-06-19 Thread Simon Pelicon
Hi,

 

Check this thread
http://www.nabble.com/RE%3A-try-to-update-SDF-FeatureSource...my-code-do
n%27twork.-p9272778s16610.html

 

Simon Pelicon

 

www.sl-king.com



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Farah
Sent: Wednesday, June 20, 2007 7:20 AM
To: 'MapGuide Users Mail List'
Subject: RE: [mapguide-users] Save user drawn polygon to an existing
layer

 

Hi Brad,

 

Nope, Im saving back to the sdf feature source. Im not using an RDBMS. 

 

Regards

Farah

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brad Nesom
Sent: Wednesday, June 20, 2007 7:49 AM
To: 'MapGuide Users Mail List'
Subject: RE: [mapguide-users] Save user drawn polygon to an existing
layer

 

Is it an RDBMS? Do you need a commit?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Farah
Sent: Tuesday, June 19, 2007 8:41 AM
To: 'MapGuide Users Mail List'
Subject: [mapguide-users] Save user drawn polygon to an existing layer

 

Hi Folks,

 

I am trying to draw a polygon on the map and then save it as a feature,
back to a layer of the map ,which exists in the library. I am able to
draw the polygon on map,  get its coordinates, create an MgPolygon type
, create the corresponding properties and Insert the polygon in the
layer. I do a client side refresh after the layer is updated. However,
the new polygon does not apear on the map. I am attaching my code (in
jsp) which does the above. Is there anything extra that I need to do so
as to show the feature on map? 

 

Thanks and Regards

Farah Iqbal


Disclaimer by Mail Administrator - Yukthi 

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