Re: [mapguide-users] can't launch weblayout in browser

2009-03-03 Thread Zac Spitzer
try mapguide 2.0.2, your using firefox 3 right and a older version of mapguide

btw, it's always helpful to state which software versions your using :)

z

On Tue, Mar 3, 2009 at 5:52 PM, DYUTI dyuti152...@yahoo.com wrote:

 hi all
          i can't launch the web layout in browser.while clicking on preview
 button this error has occurred

                            httpd.exe has generated errors and will be
 closed by windows
                             You will need to restart the program.

 but i got the map for the same application in fusion.Any one having any idea
 ? pls help me..


 thanks and regards
 dyuti
 --
 View this message in context: 
 http://n2.nabble.com/can%27t-launch-weblayout-in-browser-tp2413781p2413781.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 -
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


Re: [mapguide-users] Polygon are not recorded in feature

2009-03-03 Thread Kenneth Skovhede, GEOGRAF A/S

The UpdateFeatures call does not throw exceptions,
even if the call fails, try to examine the return value,
and search the mailing lists for the exact description.

Regards, Kenneth Skovhede, GEOGRAF A/S



Micho Gar skrev:

Hi all,

I have a code that should save the polygons in the feature source 
after using the Digitize. In principle I do not give any error, but 
when reviewing the shp the polygon don´t appear. I leave with you the 
code because I don´t see anything bad.


MgUserInformation userInfo = new MgUserInformation(sessionId);
MgSiteConnection siteConnection = new MgSiteConnection();
siteConnection.Open(userInfo);

MgResourceService resourceService = 
(MgResourceService)siteConnection.CreateService(MgServiceType.ResourceService);
MgFeatureService featureService = 
(MgFeatureService)siteConnection.CreateService(MgServiceType.FeatureService);


MgResourceIdentifier zonasFeatureId = new 
MgResourceIdentifier(Library://ConectorGPS/Datos/poligonosZonas.FeatureSource);
MgFeatureCommandCollection zonasComando = new 
MgFeatureCommandCollection();


//Abrimos el mapa
MgMap mapa = new MgMap();
mapa.Open(resourceService, mapName);

//creamos la geometria
MgGeometryFactory geometryFactory = new MgGeometryFactory();
MgCoordinateCollection coordinateCollection = new 
MgCoordinateCollection();
//MgLinearRingCollection interiorRingCollection = new 
MgLinearRingCollection();

MgAgfReaderWriter geometryReaderWriter = new MgAgfReaderWriter();

int count = xCollection.length;
for(int i=0; icount;i++)
{
Double x = Double.valueOf(xCollection[i]);
Double y = Double.valueOf(yCollection[i]);
MgCoordinate  coordinate = geometryFactory.CreateCoordinateXY(x,y);
coordinateCollection.Add(coordinate);
}
MgLinearRing exteriorRing = 
geometryFactory.CreateLinearRing(coordinateCollection);

MgPolygon polygon = geometryFactory.CreatePolygon(exteriorRing,null);
MgByteReader geom = geometryReaderWriter.Write(polygon);

//creamos una coleccion de propiedades y la insertamos
MgPropertyCollection propiedades = new MgPropertyCollection();
propiedades.Add(new MgGeometryProperty(Geometry, geom));
propiedades.Add(new MgStringProperty(ID, zona1));
zonasComando.Add(new MgInsertFeatures(zonasCapa, propiedades));

featureService.UpdateFeatures(zonasFeatureId, zonasComando, false);

//capturamos la capa para salvar el mapa y refrescar
MgLayerBase zonasCapa = mapa.GetLayers().GetItem(zonasCapa);
zonasCapa.SetVisible(true);
zonasCapa.ForceRefresh();
mapa.Save(resourceService);   
out.println(finish);



Thanks

--
# michogar
# Analista Programador SIG
# Ubuntu Linux Counter 462666



Cuenta una leyenda que si reproduces un DVD de Windows Vista original 
al revés se oye a Bill Gates entonando cantos satánicos... Pero eso no 
es lo peor... Si lo reproduces del derecho... ¡Se instala!.



It has a legend that if you play an original Windows Vista DVD 
backwards to hear Bill Gates Satanic chanting songs ... But that's not 
the worst ... If you play it right ... It installs!.



___
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] Polygon are not recorded in feature

2009-03-03 Thread Ivan Milicevic
MIcho,

 

Please, open http://gis.supranet.hr/mapguide/mapagent/index.html click on 
Resource-GetResourceContent

 

Maybe your feature source is set to rtead only. I had the same problem in past 
couple of days.

 

From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Micho Gar
Sent: Monday, March 02, 2009 6:44 PM
To: MapGuide Users Mail List
Subject: [mapguide-users] Polygon are not recorded in feature

 

Hi all, 
 
I have a code that should save the polygons in the feature source after using 
the Digitize. In principle I do not give any error, but when reviewing the shp 
the polygon don´t appear. I leave with you the code because I don´t see 
anything bad.

MgUserInformation userInfo = new MgUserInformation(sessionId);
MgSiteConnection siteConnection = new MgSiteConnection();
siteConnection.Open(userInfo);

MgResourceService resourceService = 
(MgResourceService)siteConnection.CreateService(MgServiceType.ResourceService);
MgFeatureService featureService = 
(MgFeatureService)siteConnection.CreateService(MgServiceType.FeatureService);

MgResourceIdentifier zonasFeatureId = new 
MgResourceIdentifier(Library://ConectorGPS/Datos/poligonosZonas.FeatureSource);
MgFeatureCommandCollection zonasComando = new MgFeatureCommandCollection();

//Abrimos el mapa
MgMap mapa = new MgMap();
mapa.Open(resourceService, mapName);

//creamos la geometria
MgGeometryFactory geometryFactory = new MgGeometryFactory();
MgCoordinateCollection coordinateCollection = new MgCoordinateCollection();
//MgLinearRingCollection interiorRingCollection = new MgLinearRingCollection();
MgAgfReaderWriter geometryReaderWriter = new MgAgfReaderWriter();

int count = xCollection.length;
for(int i=0; icount;i++)
{
Double x = Double.valueOf(xCollection[i]);
Double y = Double.valueOf(yCollection[i]);
MgCoordinate  coordinate = geometryFactory.CreateCoordinateXY(x,y);
coordinateCollection.Add(coordinate);
}
MgLinearRing exteriorRing = 
geometryFactory.CreateLinearRing(coordinateCollection);
MgPolygon polygon = geometryFactory.CreatePolygon(exteriorRing,null);
MgByteReader geom = geometryReaderWriter.Write(polygon);

//creamos una coleccion de propiedades y la insertamos
MgPropertyCollection propiedades = new MgPropertyCollection();
propiedades.Add(new MgGeometryProperty(Geometry, geom));
propiedades.Add(new MgStringProperty(ID, zona1));
zonasComando.Add(new MgInsertFeatures(zonasCapa, propiedades));

featureService.UpdateFeatures(zonasFeatureId, zonasComando, false);

//capturamos la capa para salvar el mapa y refrescar
MgLayerBase zonasCapa = mapa.GetLayers().GetItem(zonasCapa);
zonasCapa.SetVisible(true);
zonasCapa.ForceRefresh();
mapa.Save(resourceService);
out.println(finish);


Thanks

-- 
# michogar
# Analista Programador SIG
# Ubuntu Linux Counter 462666



Cuenta una leyenda que si reproduces un DVD de Windows Vista original al revés 
se oye a Bill Gates entonando cantos satánicos... Pero eso no es lo peor... Si 
lo reproduces del derecho... ¡Se instala!.


It has a legend that if you play an original Windows Vista DVD backwards to 
hear Bill Gates Satanic chanting songs ... But that's not the worst ... If you 
play it right ... It installs!. 

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


[mapguide-users] Teleatlas Multinet stylesheet ??

2009-03-03 Thread Ludovic Gnemmi

Hi list, i have to work with Telatlas dateset to produce google like styled
map.  I was wondering if someone had already worked on the rendering of
layers comming fromTeleatlas Multinet Database product.  Is there any
stylesheet for Mapguide? Any help would be very welcome.
Ludovic
-- 
View this message in context: 
http://n2.nabble.com/Teleatlas-Multinet-stylesheettp2414470p2414470.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


Re: [mapguide-users] MgRenderingService RenderMap problem

2009-03-03 Thread Satu

I have to save the map after create, so I can see the map when I use the
rendering service.

-- 
View this message in context: 
http://n2.nabble.com/MgRenderingService-RenderMap-problem-tp2384773p2414391.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


Re: [mapguide-users] asp.net example of loading a webmapservice layer

2009-03-03 Thread stoff

Hi,

I have a new and an old problem :

First I am still looking for a solution about transparency 
Do I have to configure it in the layerdefinition.xml AND in the called URL(
... ?service=wmstransparent=true)?

Second problem: 

Loading of the wms layer works fine. But in the legend.aspx
BuildLayerDeifinitionData-Function there is an encoding-problem in the row
doc.LoadXML(layerDefString). He finds a char code 65279 as first Charakter
 strange, because loading of the layerdefinition works fine, and there
is no charakter like this in the xml-file ...
Is there a posibility to use explicitly UTF-8 Encoding within the mapguide
resource-classes?  


Best regards,

Christoph


-- 
View this message in context: 
http://n2.nabble.com/asp.net-example-of-loading-a-webmapservice-layer-tp2328300p2414541.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


Re: [mapguide-users] asp.net example of loading a webmapservice layer

2009-03-03 Thread Stefan Dalakov

First :
In my case it was enough to define it in the configuration file for the 
WMS datasource


 SchemaMapping provider=OSGeo.WMS.3.1 name=WMS 
xmlns=http://fdowms.osgeo.org/schemas;

   complexType name=ByggType
 RasterDefinition name=Image
   FormatPNG/Format
*Transparenttrue/Transparent
*BackgroundColor0xFF/BackgroundColor
   Timecurrent/Time
   Elevation0/Elevation
   SpatialContextEPSG:32632/SpatialContext
   Layer name=VERANDA
 Style/
   /Layer
   Layer name=TAKSPRANG
 Style/
   /Layer
.


Stefan Dalakov

stoff wrote:

Hi,

I have a new and an old problem :

First I am still looking for a solution about transparency 
Do I have to configure it in the layerdefinition.xml AND in the called URL(

... ?service=wmstransparent=true)?

Second problem: 


Loading of the wms layer works fine. But in the legend.aspx
BuildLayerDeifinitionData-Function there is an encoding-problem in the row
doc.LoadXML(layerDefString). He finds a char code 65279 as first Charakter
 strange, because loading of the layerdefinition works fine, and there
is no charakter like this in the xml-file ...
Is there a posibility to use explicitly UTF-8 Encoding within the mapguide
resource-classes?  



Best regards,

Christoph


  


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


[mapguide-users] Help for a newbie :)

2009-03-03 Thread ashaman

Hello all,

I'm investigting the use of mapguide open source for my company, i'm an I.T.
analist, and I'm having an issue with the initial setup.

From the getting started guide, I can do the following steps without issue:

1. Download and install the MapGuide Server and MapGuide Web Server
Extensions.

2. Download and extract the sample application.

3. Download the sample data.


But at step 4 something falls appart. Here's the verbage for step 4:

4. Load the sample data using the Site Administrator application.
Open a web browser to the following URL:
http://localhost:8008/mapguide/mapadmin/login.php.
Login using the user id Administrator and the default password admin.
When you see the
Manage Servers page appear, select Load Packages in the left navigation
bar. Select the radio
button next to Sheboygan.mgp and click Load Package.


I can log into the site, no problems there. But I don't see Load Packages in
the left navigation bar. What I do see is Manage Packages. I click that, and
I do see Load Packages at the bottom of the page, but I don't see
Sheboygan.mgp in the list, the list is actually blank. At the top of the
page is  'Make Package', but I can't seem to get that to work either. I
don't know what to type in for the folder name.

In directory C:\Program Files\MapGuideOpenSource2.0\Server\Packages I have

myresourcepackagemanifest.xml

there also exists sub directory :C:\Program
Files\MapGuideOpenSource2.0\Server\Packages\Library\Samples\Sheboygan

but I don't actually see an .mgp file anywhere

Thanks in advance!

Marc








-- 
View this message in context: 
http://n2.nabble.com/Help-for-a-newbie-%3A%29-tp2415739p2415739.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


RE: [mapguide-users] Help for a newbie :)

2009-03-03 Thread ravinder.singh
Hi,

Every thing is fine except you don't have Sheboygan.mgp, so you download
it from the map guide site and just copy and paste this into C:\Program
Files\MapGuideOpenSource2.0\Server\Packages folder.
Then when you click on Manage Packages in server admin ,you will find
the Package  there this time. Now you have to click on Load Package Link
just above in the header of grid. It will take some time to upload the
package.


Thanks  Regards,
Ravinder

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of ashaman
Sent: Tuesday, March 03, 2009 8:44 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Help for a newbie :)


Hello all,

I'm investigting the use of mapguide open source for my company, i'm an
I.T.
analist, and I'm having an issue with the initial setup.

From the getting started guide, I can do the following steps without
issue:

1. Download and install the MapGuide Server and MapGuide Web Server
Extensions.

2. Download and extract the sample application.

3. Download the sample data.


But at step 4 something falls appart. Here's the verbage for step 4:

4. Load the sample data using the Site Administrator application.
Open a web browser to the following URL:
http://localhost:8008/mapguide/mapadmin/login.php.
Login using the user id Administrator and the default password
admin.
When you see the
Manage Servers page appear, select Load Packages in the left
navigation
bar. Select the radio
button next to Sheboygan.mgp and click Load Package.


I can log into the site, no problems there. But I don't see Load
Packages in
the left navigation bar. What I do see is Manage Packages. I click that,
and
I do see Load Packages at the bottom of the page, but I don't see
Sheboygan.mgp in the list, the list is actually blank. At the top of the
page is  'Make Package', but I can't seem to get that to work either. I
don't know what to type in for the folder name.

In directory C:\Program Files\MapGuideOpenSource2.0\Server\Packages I
have

myresourcepackagemanifest.xml

there also exists sub directory :C:\Program
Files\MapGuideOpenSource2.0\Server\Packages\Library\Samples\Sheboygan

but I don't actually see an .mgp file anywhere

Thanks in advance!

Marc








-- 
View this message in context:
http://n2.nabble.com/Help-for-a-newbie-%3A%29-tp2415739p2415739.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

*%CRLF%This
 message and any attachments are solely for the intended recipient and may 
contain Birlasoft confidential or privileged information. If you are not the 
intended recipient,any disclosure,copying, use, or distribution of the 
information included in this message and any attachments is %CRLF%prohibited. 
If you have received this communication in error, please notify us by reply 
e-mail at (administra...@birlasoft.com) and permanently delete this message and 
any attachments. Thank 
you.%CRLF%*%CRLF%
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] window open

2009-03-03 Thread Mark Pendergraft
How are the points uniquely identified?  Could you send a copy of your
SDF file, or write out the schema for your feature?
-Mark

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of DYUTI
Sent: Monday, March 02, 2009 8:02 PM
To: mapguide-users@lists.osgeo.org
Subject: RE: [mapguide-users] window open


hi all.
thank u mark u r absolutely correct a new window opened.now i have
to
get the  info corresponds to each point in the layer from the database.I
connect it with database but while clicking on each point the same
information is displaying.

Anybody having any idea regarding this...
plss help me

thanks and regards
dyuti

Mark Pendergraft wrote:
 
 The link feature points to a local path, so your url needs to be
local.
 Just to illustrate that it works, try a full link like this 
 http://mapguide.osgeo.org/ click here 
 
 I think in the end, your link will be something like this
 ../../open.php
 
 -Mark
 
 -Original Message-
 From: mapguide-users-boun...@lists.osgeo.org
 [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of DYUTI
 Sent: Wednesday, February 25, 2009 3:00 AM
 To: mapguide-users@lists.osgeo.org
 Subject: RE: [mapguide-users] window open
 
 
 hi ..
 thank u mark..
  i think this will be easy for me rather than the previous one.I tried
 that
 but nothing happens.Can u please give more info about that?Shall i
make
 any
 changes in www/fusion/widget/maptip.js .
 
 Mark Pendergraft wrote:
 
 Somebody please correct me if I'm wrong, but I just downloaded
Maestro
 and it appears that you can provide a link to display in the maptip.
 
 Open the layer in Maestro, and on the right you will see a box named
 Link.  Use an expression similar to this one:
 Concat(
Concat('
 http://www5.kingcounty.gov/kcgisreports/property_report.aspx?PIN='
 ,  PIN),  ' View Property Report for Parcel' 
 )
 
 To create a link in the maptip.  This expression strings together a
 url
 with a variable PIN which is the Parcel Identification Number.
 
 -Mark
 
 -Original Message-
 From: mapguide-users-boun...@lists.osgeo.org
 [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of DYUTI
 Sent: Monday, February 23, 2009 9:22 PM
 To: mapguide-users@lists.osgeo.org
 Subject: RE: [mapguide-users] window open
 
 
 hi
 thank u mark.
 i chose this route because i'm using mapguide maestro.can i use
popup
 maptip with a link to window in maestro? someone told me it can be
 used
 
 with studio only.
 
 thanx regards
 dyuti
 
 Mark Pendergraft wrote:
 
 What you have looks pretty good, except that you will need to create
 a
 box that covers your point for the mgPolygon.
 
 First you need to create a MgCoordinateCollection to populate a
 MgLinearRing, then you use
 $geometryFactory-CreatePolygon(mgLinearRing,
 nothing);
 
 Take a look at this function.  It uses MgGeometryFactory, and a
 MgPoint
 to create a box that surrounds the point supplied.  The function
 returns
 a MgPolygon
 
 Private Function GetBoundingBox(ByVal geomFact As
 MgGeometryFactory,
 ByVal point As MgPoint) As MgPolygon
 
 Dim pgon As MgPolygon
 Dim coordColl As New MgCoordinateCollection

 coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
 - 5, point.Coordinate.GetY + 5))

 coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
 + 5, point.Coordinate.GetY + 5))

 coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
 + 5, point.Coordinate.GetY - 5))

 coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
 - 5, point.Coordinate.GetY - 5))

 coordColl.Add(geomFact.CreateCoordinateXY(point.Coordinate.GetX
 - 5, point.Coordinate.GetY + 5))
 
 Dim linRing As MgLinearRing =
 geomFact.CreateLinearRing(coordColl)
 pgon = geomFact.CreatePolygon(linRing, Nothing)
 
 Return pgon
 
 End Function
 
 You can create a MgPoint by doing the following:
 
 Dim geomFact As New MgGeometryFactory
 Dim coord As MgCoordinate =
 geomFact.CreateCoordinateXY(X,
 Y)
 
 ' create the actual mggeometry
 Dim point As MgPoint = geomFact.CreatePoint(coord)
 
 
 The LayerResourceId  schema can be obtained like so:
 
 ' get the layer to search
 Dim layer as MgLayer =
 Map.GetLayers().GetItem(your_layer_name_here)
 
 ' Get the layer resource identifier
 Dim LayerResId As New
 MgResourceIdentifier(layer.GetFeatureSourceId())
 
  ' get the layer default schema
  Dim layerSchema as string =
 layer.GetFeatureClassName
 
 
 As a side note.  Everytime you assign a value to the
MgFeatureReader,
 you will need to close it immediately afterwards.  This has screwed
 me
 a
 few times.
 
 After you get the point, you can use the MgFeatureReader to
 getString(),
 or getInteger(), etc 

RE: [mapguide-users] can't launch weblayout in browser

2009-03-03 Thread Dave Wilson
Check your apache error log. It's possible you are experiencing issues with PHP 
that Apache can't handle.

Dave

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Zac Spitzer
Sent: Tuesday, March 03, 2009 1:06 AM
To: MapGuide Users Mail List
Subject: Re: [mapguide-users] can't launch weblayout in browser

try mapguide 2.0.2, your using firefox 3 right and a older version of mapguide

btw, it's always helpful to state which software versions your using :)

z

On Tue, Mar 3, 2009 at 5:52 PM, DYUTI dyuti152...@yahoo.com wrote:

 hi all
          i can't launch the web layout in browser.while clicking on preview
 button this error has occurred

                            httpd.exe has generated errors and will be
 closed by windows
                             You will need to restart the program.

 but i got the map for the same application in fusion.Any one having any idea
 ? pls help me..


 thanks and regards
 dyuti
 --
 View this message in context: 
 http://n2.nabble.com/can%27t-launch-weblayout-in-browser-tp2413781p2413781.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 -
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] Installation problems, MapguideOS on CentOS

2009-03-03 Thread Timoteus

I have been trying to install Mapguide OS on CentOS after a recommendation of
Zac
( see:
http://zacster.blogspot.com/2008/04/build-notes-for-mapgude-20-on-centos.html
)

I have downloaded all the required software that was mentioned in 
BuildingAndConfiguringMGOSOnLinux.pdf 
( see : http://mapguide.osgeo.org/2.0/documentation.html)

After extracting mapguideaptinstaller-2.0.0.2.tar.gz  I executed  sudo
./build_apt.sh -with-tomcat
( see: http://mapguide.osgeo.org/download/releases/2.0.2 )
This keeps resulting in the following error:
undefined reference to `apr_os_uuid_get'

I found the error back on Zacs blog, but it does not really state the
solution.

Who can help me out here?
I really want to get this going.
-- 
View this message in context: 
http://n2.nabble.com/Installation-problems%2C-MapguideOS-on-CentOS-tp2419034p2419034.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] Change Colour on Layer

2009-03-03 Thread ajid

Change Colour on Layer

  LineSymbolization2D
LineStyleSolid/LineStyle
Thickness2/Thickness
Colordaa520/Color  that line i wanna change the value (get
value from database)*.mdb
UnitPoints/Unit
SizeContextDeviceUnits/SizeContext
  /LineSymbolization2D

Anyone can help me??

-
::: PublicVisitor :::
www.myguidepages.com
-- 
View this message in context: 
http://n2.nabble.com/Change-Colour-on-Layer-tp2420133p2420133.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


Re: [mapguide-users] Change Colour on Layer

2009-03-03 Thread Zac Spitzer
did you try using the column name?


On Wed, Mar 4, 2009 at 2:18 PM, ajid ah_...@yahoo.com wrote:

 Change Colour on Layer

  LineSymbolization2D
            LineStyleSolid/LineStyle
            Thickness2/Thickness
            Colordaa520/Color  that line i wanna change the value (get
 value from database)*.mdb
            UnitPoints/Unit
            SizeContextDeviceUnits/SizeContext
          /LineSymbolization2D

 Anyone can help me??

 -
 ::: PublicVisitor :::
 www.myguidepages.com
 --
 View this message in context: 
 http://n2.nabble.com/Change-Colour-on-Layer-tp2420133p2420133.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 -
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


Re: [mapguide-users] Change Colour on Layer

2009-03-03 Thread ajid

my mdb file name status then field name color
what i need to write  on  Colordaa520/Color ??



-
::: PublicVisitor :::
www.myguidepages.com
-- 
View this message in context: 
http://n2.nabble.com/Change-Colour-on-Layer-tp2420133p2420155.html
Sent from the MapGuide Users mailing list archive at Nabble.com.

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


RE: [mapguide-users] can't launch weblayout in browser

2009-03-03 Thread DYUTI

hi...
   its solved..as zac said i changed the version
thaxregards
dyuti

Dave Wilson wrote:
 
 Check your apache error log. It's possible you are experiencing issues
 with PHP that Apache can't handle.
 
 Dave
 
 -Original Message-
 From: mapguide-users-boun...@lists.osgeo.org
 [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Zac Spitzer
 Sent: Tuesday, March 03, 2009 1:06 AM
 To: MapGuide Users Mail List
 Subject: Re: [mapguide-users] can't launch weblayout in browser
 
 try mapguide 2.0.2, your using firefox 3 right and a older version of
 mapguide
 
 btw, it's always helpful to state which software versions your using :)
 
 z
 
 On Tue, Mar 3, 2009 at 5:52 PM, DYUTI dyuti152...@yahoo.com wrote:

 hi all
          i can't launch the web layout in browser.while clicking on
 preview
 button this error has occurred

                            httpd.exe has generated errors and will be
 closed by windows
                             You will need to restart the program.

 but i got the map for the same application in fusion.Any one having any
 idea
 ? pls help me..


 thanks and regards
 dyuti
 --
 View this message in context:
 http://n2.nabble.com/can%27t-launch-weblayout-in-browser-tp2413781p2413781.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 -
 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
 
 

-- 
View this message in context: 
http://n2.nabble.com/can%27t-launch-weblayout-in-browser-tp2413781p2420671.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