RE: [mapguide-users] Newbie Question

2007-12-17 Thread Flisch, Alan
I've gone with the PHP version for now. Thanks! -Original Message- From: Kenneth, GEOGRAF A/S [mailto:[EMAIL PROTECTED] Sent: 17 December 2007 10:43 To: MapGuide Users Mail List Subject: Re: [mapguide-users] Newbie Question The API is very close to being equvalent in all

Re: [mapguide-users] Newbie Question

2007-12-17 Thread Kenneth, GEOGRAF A/S
The API is very close to being equvalent in all three supported languages. It should not cause you much trouble to convert from PHP/.Net to Java. I have not used the JSP extensions, but I have a sense that the PHP extensions are more "natural" than the .Net extensions. Regards, Kenneth, GEOGRA

RE: [mapguide-users] newbie question about security

2007-11-08 Thread dorra2007
= true; > string next_raw_InvokedByURL = > raw_InvokedByURL.Value.Replace("SOMENEWNAMEHERE_WHEREIWISHTOGO", > "THISISHOWIGOTHERE"); ; > > this.Response.Redirect(next_raw_InvokedByURL); > } > } > catch

RE: [mapguide-users] newbie question about security

2007-11-08 Thread Jonio, Dennis (Aviation)
dByURL.Value.Replace("SOMENEWNAMEHERE_WHEREIWISHTOGO", "THISISHOWIGOTHERE"); ; this.Response.Redirect(next_raw_InvokedByURL); } } catch (MgException ex) { } } } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beh

Re: [mapguide-users] newbie question about security

2007-11-08 Thread Kenneth, GEOGRAF A/S
Once the user is authenticated and the session is created, the server will not ask for credentials again. You can of course provide your own login box. You can then call the CreateSession to test if the credentials are valid. You cannot change the identity of the current session. This means tha

Re: [mapguide-users] newbie question about security

2007-11-08 Thread dorra2007
All users acess the same map (and layout), but the difference between users consists in the temporary layers loaded, according to his parameters stored in a database. So, I am wondering if there is a mapguide security API that manages users in this way, or a security and login code ready for use.I

Re: [mapguide-users] newbie question about security

2007-11-06 Thread James Card
On Tue, 06 Nov 2007 03:38:30 -0800, dorra2007 <[EMAIL PROTECTED]> wrote: I wish to know how to assign a user account to a layer (or layer definition), so that when he wish access this layer, he will be promted for a user name and password. The workaround we used for this was to assign secur

Re: [mapguide-users] newbie question about security

2007-11-06 Thread Kenneth, GEOGRAF A/S
It does not work quite that way. Upon acces, the server will reuse a previously established identity, or ask credentials for a new one. Once an identity has been established, a session is created. Using the session token, the user may access any resources they are granted access to. Trying to