[mapguide-users] Re: current win-setup does not work

2010-04-21 Thread stoff

Hi,

I solved the installer problem by downloading with another machine(mac) ... 
It's strange, that I did not get the rigth download file within windows with
three different browsers!

Now the installer quits here:
http://n2.nabble.com/Installation-error-tp3858392p3858392.html

Arrgh...

Looking forward to a running MGOS...but still optimistic!

Stoff




-- 
View this message in context: 
http://n2.nabble.com/current-win-setup-does-not-work-tp4911515p4935671.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Tom Chadwin

Thanks for that information, Praveen, but I cannot get it to hook onto the
right event properly, and I'm beyond the limit of my Javascript knowledge
here. ajaxmappane.templ has the function RequestMap() which was where I
placed my code, and which worked. However, I can see no corresponding
OnRequestMap onto which I could hook my function. RequestMap always seems to
be called directly, rather than being assigned as a variable, so I cannot
copy it and append my function. Or I might be totally misunderstanding how
this all works.

Can anyone else tell me if there is a way to hook my own function onto the
RequestMap() function without hacking the original function itself?

Thanks

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936176.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Ivan Miličević
Look at this link: 
http://trac.osgeo.org/mapguide/wiki/CodeSamples/JavaScript/AJAXViewerEventHooking


-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Tom Chadwin
Sent: Wednesday, April 21, 2010 12:31 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Re: Viewer API GetLayer() and base layers


Thanks for that information, Praveen, but I cannot get it to hook onto the
right event properly, and I'm beyond the limit of my Javascript knowledge
here. ajaxmappane.templ has the function RequestMap() which was where I
placed my code, and which worked. However, I can see no corresponding
OnRequestMap onto which I could hook my function. RequestMap always seems to
be called directly, rather than being assigned as a variable, so I cannot
copy it and append my function. Or I might be totally misunderstanding how
this all works.

Can anyone else tell me if there is a way to hook my own function onto the
RequestMap() function without hacking the original function itself?

Thanks

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936176.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Tom Chadwin

That's the page Praveen pointed me towards, and which I was trying to use as
a model. However, the two events it shows you how to hook into are the
completion of the loading of the map, and OnSelectionChaged. I need to hook
into RequestMap(), which is a function, not an event of any kind, as far as
my limited understanding tells me.

Unless someone can give me a technique to achieve that, I'll go back to
hacking the original function, and am aware of the problem of losing that
customization when upgrading MapGuide.

One other issue I have is caching of my xmlhttp request. I can work around
this by adding a random parameter to the query, but realize this is a hack.
I am now experimenting with adding cache control headers on the server side.
Does anyone know of the best way to achieve this (fully cross-browser
compatible)?

Thanks

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936267.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Ivan Miličević
For ajax request, adding Math.Random() or timestamp is world wide known method 
:)

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Tom Chadwin
Sent: Wednesday, April 21, 2010 12:53 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Re: Viewer API GetLayer() and base layers


That's the page Praveen pointed me towards, and which I was trying to use as
a model. However, the two events it shows you how to hook into are the
completion of the loading of the map, and OnSelectionChaged. I need to hook
into RequestMap(), which is a function, not an event of any kind, as far as
my limited understanding tells me.

Unless someone can give me a technique to achieve that, I'll go back to
hacking the original function, and am aware of the problem of losing that
customization when upgrading MapGuide.

One other issue I have is caching of my xmlhttp request. I can work around
this by adding a random parameter to the query, but realize this is a hack.
I am now experimenting with adding cache control headers on the server side.
Does anyone know of the best way to achieve this (fully cross-browser
compatible)?

Thanks

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936267.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Tom Chadwin

Well, the following seems to get rid of caching:

header(Expires: 0);
header(Last-Modified:  . gmdate(D, d M Y H:i:s) .  GMT);
header(cache-control: no-store, no-cache, must-revalidate);
header(Pragma: no-cache);

But this seems like overkill. Does anyone have definitive information on
best practice for eliminating caching of xmlhttp requests?

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936353.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread SriRam007

One problem came...

Actually i have two application in my system

In 1st app I was accessing formFrame by parent.parent.frames[2]

But now after the changes in the framesettaskbar.templ file 

frameset name=mainFrameset rows=*,%s frameborder=0 border=0
frameset id=mainappFrame name=mainappFrame cols=*,%s
frameborder=0 border=0
frameset id=maparea name=maparea rows=%s,*,0,0,0
frameborder=0 border=0
frame id=tbFrame name=tbFrame %s noresize scrolling=no
frame id=mapFrame name=mapFrame
src=%s?MAPDEFINITION=%sTYPE=%sSHOWLEGEND=%sSHOWPROP=%sINFOWIDTH=%sLOCALE=%sHLTGT=%sHLTGTNAME=%sSHOWSLIDER=%s%s
scrolling=no border=3

frame id=queryFrame name=queryFrame noresize src= Added a 
new
frame

frame id=formFrame name=formFrame noresize src=%s
frame id=scriptFrame name=scriptFrame
src=../viewerfiles/blank.html noresize
/frameset

I have to access formFrame like this : parent.parent.frames[3]
Or I can access by its name : parent.parent.formFrame 

Finally I got that accessing by index can be dangerous better to access by
its name


Now i changed every where because i know where ever i have used (In my Other
application)

I dont have any idea about SetUp

I think what ever i m changing inside the templ file i have to place it in
our client machine after installation MGOS (Inside the same path ie.
MapGuide\Web\www\viewerfiles in our client's Server machine ) And
Viewerfiles are same for all the projects.

But if client will have another project and If there somebody has accessed
by it index then problem may come.


Is there any solution for this problem

Please rectify me if m wrong

thanks

-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936362.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] Re: Viewer API GetLayer() and base layers

2010-04-21 Thread Tom Chadwin

Math.random is what I was using - if it's the best way, I'll go back to it.

Thanks

Tom
-- 
View this message in context: 
http://n2.nabble.com/Viewer-API-GetLayer-and-base-layers-tp4792901p4936382.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread Ivan Miličević
If you have more than one project on one mapguide server you should add frames 
dynamically.

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of SriRam007
Sent: Wednesday, April 21, 2010 1:21 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] RE: Display the Query Result in a separate popup 
window


One problem came...

Actually i have two application in my system

In 1st app I was accessing formFrame by parent.parent.frames[2]

But now after the changes in the framesettaskbar.templ file 

frameset name=mainFrameset rows=*,%s frameborder=0 border=0
frameset id=mainappFrame name=mainappFrame cols=*,%s
frameborder=0 border=0
frameset id=maparea name=maparea rows=%s,*,0,0,0
frameborder=0 border=0
frame id=tbFrame name=tbFrame %s noresize scrolling=no
frame id=mapFrame name=mapFrame
src=%s?MAPDEFINITION=%sTYPE=%sSHOWLEGEND=%sSHOWPROP=%sINFOWIDTH=%sLOCALE=%sHLTGT=%sHLTGTNAME=%sSHOWSLIDER=%s%s
scrolling=no border=3

frame id=queryFrame name=queryFrame noresize src= Added a 
new
frame

frame id=formFrame name=formFrame noresize src=%s
frame id=scriptFrame name=scriptFrame
src=../viewerfiles/blank.html noresize
/frameset

I have to access formFrame like this : parent.parent.frames[3]
Or I can access by its name : parent.parent.formFrame 

Finally I got that accessing by index can be dangerous better to access by
its name


Now i changed every where because i know where ever i have used (In my Other
application)

I dont have any idea about SetUp

I think what ever i m changing inside the templ file i have to place it in
our client machine after installation MGOS (Inside the same path ie.
MapGuide\Web\www\viewerfiles in our client's Server machine ) And
Viewerfiles are same for all the projects.

But if client will have another project and If there somebody has accessed
by it index then problem may come.


Is there any solution for this problem

Please rectify me if m wrong

thanks

-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936362.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread SriRam007


I my first post for this topic I have mentioned that how I was trying to add
dynamically but some error was showing



 
var newFrame1 = document.createElement(frame); 
newFrame1.id = newFrame1; 
newFrame1.name = newFrame1; 
newFrame1.src = /mapguide/MyApp/query/QueryPopup.aspx; //This is the
popup page where i want to display the Query Result 

var frameset = parent.parent.maparea; // Here I m getting the framesret. 
frameset.cols = null; 
frameset.rows = %s,*,0,0,150; 
frameset.appendChild(newFrame1); 
frameset.appendChild(); //Error :: htmlfile: Invalid argument

 

Please give me some soln, where i did wrong 

thanks
-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936463.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread Ivan Miličević
This might be helpful.

http://stackoverflow.com/questions/1353215/javascript-dynamically-add-frame-to-frameset


-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of SriRam007
Sent: Wednesday, April 21, 2010 1:44 PM
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] RE: Display the Query Result in a separate popup 
window



I my first post for this topic I have mentioned that how I was trying to add
dynamically but some error was showing



 
var newFrame1 = document.createElement(frame); 
newFrame1.id = newFrame1; 
newFrame1.name = newFrame1; 
newFrame1.src = /mapguide/MyApp/query/QueryPopup.aspx; //This is the
popup page where i want to display the Query Result 

var frameset = parent.parent.maparea; // Here I m getting the framesret. 
frameset.cols = null; 
frameset.rows = %s,*,0,0,150; 
frameset.appendChild(newFrame1); 
frameset.appendChild(); //Error :: htmlfile: Invalid argument

 

Please give me some soln, where i did wrong 

thanks
-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936463.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread SriRam007

Ok I m trying

thanks
-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936581.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] RE: Display the Query Result in a separate popup window

2010-04-21 Thread SriRam007

Finally Done,


Thank u Sir

I did as below

var body = parent.parent.frames['maparea'];//To get the maparea Frameset
var elem = parent.parent.frames['maparea'].document.createElement(frame);
//Here created a new frame

elem.src = full path;
body.appendChild(elem); 

thanks
-- 
View this message in context: 
http://n2.nabble.com/Display-the-Query-Result-in-a-separate-popup-window-tp4929403p4936720.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] Re: Internet Explorer likes localhost but not servername

2010-04-21 Thread GordonL

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0;
.NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR
3.5.30729)
Timestamp: Wed, 21 Apr 2010 13:11:11 UTC


Message: Syntax error
Line: 163
Char: 9
Code: 0
URI: http://nwmappub2/mapguide/fusion/lib/ApplicationDefinition.js


-- 
View this message in context: 
http://n2.nabble.com/Internet-Explorer-likes-localhost-but-not-servername-tp4931528p4936855.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] Re: Internet Explorer likes localhost but not servername

2010-04-21 Thread Zac Spitzer
keep going, you have more information to investigate before you
post to a mailing list, you have to dig yourself far enough to provide
the root problem, then if you can't find the solution, ask...

try with real developer debug friendly browser like firefox with firebug

follow through the errors and find the root cause

On 21 April 2010 23:13, GordonL gordon.luck...@arrowgeomatics.com wrote:

 Webpage error details

 User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0;
 .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR
 3.5.30729)
 Timestamp: Wed, 21 Apr 2010 13:11:11 UTC


 Message: Syntax error
 Line: 163
 Char: 9
 Code: 0
 URI: http://nwmappub2/mapguide/fusion/lib/ApplicationDefinition.js


 --
 View this message in context: 
 http://n2.nabble.com/Internet-Explorer-likes-localhost-but-not-servername-tp4931528p4936855.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] Run MGOS with IIS on another port

2010-04-21 Thread stoff

Hi,

I am working on my development machine and there is allready running on port
80 an apache to establish a testenvironment of trac,subversion etc.
It is an requirement to use IIS for the new asp.net/MGOS application, so I
decided to install IIS paralell working on port 81.

No I am not sure how to configure the MGOS to use port 81 as well. Can
anybody help me? I found port configurations in the webconfig.ini within
2810,2811, 2812 ... but dont know how to get it running.
It is not possible to login to the siteadministrator because of this
misconfiguraton probably. He tolds me:

Fatal error: Call to undefined function MgInitializeWebTier() in
C:\Programme\OSGeo\MapGuide\Web\www\mapadmin\login.php on line 70

Here is my port situation attached:
http://n2.nabble.com/file/n4937189/ports.txt ports.txt 

Thanks in advance,

Stoff

-- 
View this message in context: 
http://n2.nabble.com/Run-MGOS-with-IIS-on-another-port-tp4937189p4937189.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] Re: Internet Explorer likes localhost but not servername

2010-04-21 Thread GordonL

thanks, I wish I could use FireBug, but it works great in FireFox, the issue
is solely with Internet Exporer..developer tools are really weak compared to
FireBug.
-- 
View this message in context: 
http://n2.nabble.com/Internet-Explorer-likes-localhost-but-not-servername-tp4931528p4937230.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] Re: Internet Explorer likes localhost but not servername

2010-04-21 Thread Zac Spitzer
ok, i know your pain

then whats the around the code at the error message?

also fidder is a great tool to debug with as well

On 22 April 2010 00:19, GordonL gordon.luck...@arrowgeomatics.com wrote:

 thanks, I wish I could use FireBug, but it works great in FireFox, the issue
 is solely with Internet Exporer..developer tools are really weak compared to
 FireBug.
 --
 View this message in context: 
 http://n2.nabble.com/Internet-Explorer-likes-localhost-but-not-servername-tp4931528p4937230.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] Re: Internet Explorer likes localhost but not servername

2010-04-21 Thread GordonL

I think its around line 1199 in fusion.js:


if(appDefUrl){
var xhr = new XMLHttpRequest(); 
var mapAgentUrl = getAgentUrl(); 
xhr.open(GET, mapAgentUrl +
?OPERATION=GETRESOURCECONTENTVERSION=1.0.0LOCALE=enCLIENTAGENT=MapGuide+DeveloperRESOURCEID=
+ appDefUrl + FORMAT=text%2Fxml, false); 
xhr.send(null); 
var appDefXML = xhr.responseXML.documentElement;


this seems to bonk here..

gordon

-- 
View this message in context: 
http://n2.nabble.com/Internet-Explorer-likes-localhost-but-not-servername-tp4931528p4937369.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] Run MGOS with IIS on another port

2010-04-21 Thread Jason Birch
The port the webserver is running on shouldn't be relevant to MapGuide.

Based on your description, that error is more likely because you have
another version of PHP installed on your development machine, and it is
being seen (php.ini, path to extensions, etc) in preference to the one
bundled with MGOS.  Create a PHP file in the same location containing only a
call to phpinfo() ( ?php phpinfo(); ? ) and see what it shows.

Because of the way that the path to php.ini is set, you can not have two
installations of the same version of PHP running on the same Windows machine
at the same time if one of them is running an ISAPI module.  It may be
possible to set the IIS version to run as a CGI, remove a PHP registry
setting, and ensure your other version of PHP has its INI location set
explicitly (I think there is an Apache configuration directive you can use).

Jason

On 21 April 2010 07:10, stoff wrote:


 I am working on my development machine and there is allready running on
 port
 80 an apache to establish a testenvironment of trac,subversion etc.
 It is an requirement to use IIS for the new asp.net/MGOS application, so I
 decided to install IIS paralell working on port 81.

 It is not possible to login to the siteadministrator because of this
 misconfiguraton probably. He tolds me:

 Fatal error: Call to undefined function MgInitializeWebTier() in
 C:\Programme\OSGeo\MapGuide\Web\www\mapadmin\login.php on line 70


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


[mapguide-users] RE: Change initial slider location

2010-04-21 Thread Tom Chadwin

OK, I found it at last, I think, though whether this is the best way or not,
I don't know - it seems to be pretty much hard-coded to me. In
ajaxmappane.templ, find the function ResizeMapSpace(). For my requirement
(change initial slider position to top left), change:

sscalex = mapDevW - 51, sscaley = 1;

to:

sscalex = 0, sscaley = 1;

Hope this helps - thanks for all the guidance

Tom
-- 
View this message in context: 
http://n2.nabble.com/Change-initial-slider-location-tp4930794p4937824.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] Migrating a repository

2010-04-21 Thread _Jon_


Hello,

I have a version 1.1 repository that I wish to migrate to 2.1.  Is there
anything special that i need to do, or can I just make a package in 1.1 and
load it in 2.1?  A long time ago, I thought that I read something about a
significant change that required a more in-depth migration process when
moving from 1.1.  There was even an official how to migrate document at
some point, but I can't seem to find any reference to it any more on this
list or on the osgeo mapguide site.  Thank you for any information that you
can provide.

Best Regards,

Jon



-- 
View this message in context: 
http://n2.nabble.com/Migrating-a-repository-tp4937838p4937838.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] RE: MapGuide assistance

2010-04-21 Thread Jon Cotey
Hi Stefano,

 

Thank you kindly for your offer.

 

It definitely sounds like you are a person with experience in some of the 
things we would be interested in asking about.

 

We are starting this in our US facilities, so the times are kind of whacked. We 
have team members in Ohio, Arizona and California who would like very much to 
have a live-meeting teleconference with you. 

Might you have approx. 1/2hr to 1hr to speak with us this coming Monday or 
Tuesday?

Please let me know.

 

Thank you,

Jon Cotey

 

1oz Clarity = 1lb Production

 

ü P Please consider the environment before printing this e-mail.

 

 

-Original Message-
From: mapguide-users-boun...@lists.osgeo.org 
[mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Bracco Stefano
Sent: Tuesday, April 20, 2010 11:53 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] RE: MapGuide assistance

 

Jon,

 

It is depending a lot in what you want to do with your MapGuide / CAD 
environment.

I'm coming from the Energy world (nuclear before, sustainable now), and I can 
tell that it was a nightmare just to explain the benefits to implement MapGuide 
and GIS software.

Now I work on several projects, one is related to Solar Power implementation 
and high power efficiency.

We have something like 40/50 people using our systems.

For licenses depends a lot on what you want to implement, we connected MapGuide 
to Oracle, but this can be useless in your case, depending your data, or can be 
an advantage.

In terms of staff we have one person, but it depends how much things you want 
to do: MapGuide is easy to install and maintain in my opinion, the difficult is 
to provide integration with Web GIS and implement additional functionalities 
because you don't have out-of-the-box solutions.

Another matter we discussed internally was the integration with CAD which is 
sometimes difficult to explain to people and it is also true that CAD people 
don't care about GIS and GIS people don't care about CAD most of the times, but 
a conversion of a CATIA File to DWF can be sometimes difficult to be integrated 
in a MapGuide server where you already serve 100 layers. It is more difficult 
when you want to mix the Product LifeCycle Management Platform with the GIS, 
which can be also useful if you have a complex network and a very complex 
system in your hands.

We started installing MapGuides and testing the different features, then I 
moved to build something more complex and looking for integration tools, most 
of them are free of charge and you do not have any license restriction, now we 
are able to use it, also if I think we have to improve processes and 
functionalities.

It took one year, now we are going to integrate part of this work with Local 
Government to exchange data, and this is another step. In the meanwhile we 
needed to create a common catalog to store information about where we stored 
the data, because we had several MapGuide systems and there was no clever way 
to search for spatial data stored into MapGuide servers.

I stress the fact that technically seems to be complex, but it is not true. The 
major complexity is to seat and to understand from your stakeholders where they 
want to go.

 

Just a brief idea of what is the direction you could move.

 

Stefano

 

 

 

-Original Message-

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

Sent: Tuesday, 20 April, 2010 23:01

To: mapguide-users@lists.osgeo.org

Subject: [mapguide-users] RE: MapGuide assistance

 

 

What my company is really interested in is getting in touch with some companies 
who have implemented MapGuide. Especially Electrical Utilities and/or Solar 
Power.

We are wanting to question them on a number of items:

•System requirements

•Number of users

•License types  quantities

•Staff required to maintain

•Road blocks to implementation

•Current difficulties

•Etc

You know, just the basics.

 

 

 

--

View this message in context: 
http://n2.nabble.com/MapGuide-assistance-tp4932822p4933690.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

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


[mapguide-users] Connecting to WMS using Mapguide Studio

2010-04-21 Thread Krishna . Sista
Hello list,

I created a MXD(using ArcMap) which contains the Raster SDE dataset and 
published on to server ABC  as a mapservice( enabled WMS capability to the 
service). I would like to connect the WMS service from the MapGuide studio 
2010 (which is on different server). I tried googling and found you have 
to use ‘http://localhost:8008/mapguide/mapagent/mapagent.fcgi? ‘and pass 
the service and other  parameters to the link . According to my 
understanding the above link works when the layers are on the same server 
as the map guide server. But in my case the services are on different 
server and are created using Arcgis server. From the Site administrator I 
tried to configure the WMS service by specifying the server name (server 
which contains the WMS service) and the script name. But I am not sure how 
to connect from Mapguide studio to the WMS service. I would appreciate if 
somebody could shed some light.

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


[mapguide-users] Re: Run MGOS with IIS on another port

2010-04-21 Thread stoff

Thanks, Jason! 

I will try ... and report.

Best regards,

Stoff
-- 
View this message in context: 
http://osgeo-org.1803224.n2.nabble.com/Run-MGOS-with-IIS-on-another-port-tp4937189p4941084.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] Migrating a repository

2010-04-21 Thread Jason Birch
This is probably what you were looking for:

http://trac.osgeo.org/mapguide/wiki/1.2to2.0MigrationInstructions

Not sure if you can jump directly to 2.1 using the same procedure or not.

You could also do the package unload/load procedure, as lng as your
data isn't too large, but you'll only be migrating the Library, and
will lose any security settings, etc, from the Site repository.

Jason

On 2010-04-21, _Jon_ jri...@langan.com wrote:


 Hello,

 I have a version 1.1 repository that I wish to migrate to 2.1.  Is there
 anything special that i need to do, or can I just make a package in 1.1 and
 load it in 2.1?  A long time ago, I thought that I read something about a
 significant change that required a more in-depth migration process when
 moving from 1.1.  There was even an official how to migrate document at
 some point, but I can't seem to find any reference to it any more on this
 list or on the osgeo mapguide site.  Thank you for any information that you
 can provide.

 Best Regards,

 Jon



 --
 View this message in context:
 http://n2.nabble.com/Migrating-a-repository-tp4937838p4937838.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