Re: [mapguide-users] Fdo Provider PostGreSql 12

2020-03-16 Thread diordonezr
Thanks a lot Jackie.

It works smoothly with Postgresql 12 x64 in Windows 10.



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Error using quickplot - TCPDF ERROR: [Image] Unable to get image:

2020-03-04 Thread diordonezr
Thanks a lot Gordon.. it finally worked.

The solution was to grant full permissions to IIS_IUSRS (Windows 10)



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Adding a LOGO - Company credits Top Bar

2020-03-04 Thread diordonezr
Thanks for your help.. it certainly works in that way.

Cheers



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

[mapguide-users] Adding a LOGO - Company credits Top Bar

2020-02-28 Thread diordonezr
Hello all.

is there any tool to add a LOGO in Top tool bar ? Any suggestion ?

 



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

[mapguide-users] Is there a Mapguide live application Gallery ?

2020-02-28 Thread diordonezr
Is there a Mapguide live application Gallery ?


Thanks for your comments.



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] MapGuide Open Source 4.0 Preview 1 available

2020-02-12 Thread diordonezr
Totally agree -- 64 bit on LINUX.. even better on Ubuntu/Docker ;-)



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Suggested approach to consume EnumerateResources (C#)

2020-02-07 Thread diordonezr
Wonderful..

It works neatly, thanks for your help

// Assuming $resourceService has already been initialized.
MgResourceIdentifier mgResourceID = new
MgResourceIdentifier("Library://");
MgByteReader mgByteReader =
resourceService.EnumerateResources(mgResourceID, -1, string.Empty);
string echoBbyteReader = mgByteReader.ToString();

// Create an instance of the XmlSerializer.
XmlSerializer serializer =
new
XmlSerializer(typeof(OSGeo.MapGuide.ObjectModels.Common.ResourceList));

using (XmlReader reader = XmlReader.Create(new
StringReader(echoBbyteReader)))
{
OSGeo.MapGuide.ObjectModels.Common.ResourceList resData;
// Call the Deserialize method to restore the object's
state.
resData =
(OSGeo.MapGuide.ObjectModels.Common.ResourceList)serializer.Deserialize(reader);
}





--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Suggested approach to consume EnumerateResources (C#)

2020-02-07 Thread diordonezr
I cannot find Resource List in Object Models.

The closest topic I found was

OSGeo.MapGuide.ObjectModels.Common.ResourceDataList





--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

[mapguide-users] Suggested approach to consume EnumerateResources (C#)

2020-02-06 Thread diordonezr
Hi There.

What is the suggested approach to consume the resulting XML from
EnumerateResources in C# ?

So far I have succesfully retrieved the full list of resources and the
xmlDoc is ready.
Is there any way to process that XML in a friendly manner ? perhaps
serialization with XSD or MaestroAPI ?

Thanks for your comments

Diego


// Assuming $resourceService has already been initialized.
   MgResourceIdentifier mgResourceID = new
MgResourceIdentifier("Library://");
   MgByteReader mgByteReader =
resourceService.*EnumerateResources*(mgResourceID, -1, string.Empty);
   string echoBbyteReader = mgByteReader.ToString();

   XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.LoadXml(echoBbyteReader);



--
Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users