Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-26 Thread Andrea Aime
On Tue, Jun 26, 2012 at 2:51 AM, cheesybiscuits thomaschrist...@gmail.comwrote: I think I have a legitimate reason to ask the same question so hopefully there is an easy way to do this. I'm writing a .NET application that uses GeoServer and relies on Windows Authentication. I need to use

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-26 Thread christian . mueller
Hi The GeoServer 2.2.x security subsystem allows proxy authentication. Is it possible for you to add a http header attribute with the user name (password is NOT required) Christian Zitat von cheesybiscuits thomaschrist...@gmail.com: I think I have a legitimate reason to ask the same

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-26 Thread Andrea Aime
On Tue, Jun 26, 2012 at 12:16 PM, christian.muel...@nvoe.at wrote: Hi The GeoServer 2.2.x security subsystem allows proxy authentication. Is it possible for you to add a http header attribute with the user name (password is NOT required) Ah, interesting. Is this documented? Don't see it

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-26 Thread christian . mueller
No, it is not documented at the moment. I am working on it. There are a lot of security features not documented at the moment. (And a lot of core code with missing configuration panels on the GUI). I am unsure about the 2.2.0 RC1 and where to commit my documentation changes. Is trunk ok ?.

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-26 Thread Andrea Aime
On Tue, Jun 26, 2012 at 1:03 PM, christian.muel...@nvoe.at wrote: No, it is not documented at the moment. I am working on it. There are a lot of security features not documented at the moment. (And a lot of core code with missing configuration panels on the GUI). I am unsure about the 2.2.0

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2012-06-25 Thread cheesybiscuits
I think I have a legitimate reason to ask the same question so hopefully there is an easy way to do this. I'm writing a .NET application that uses GeoServer and relies on Windows Authentication. I need to use GeoServer's role-based security but I can't ask the user to login using a GeoServer

[Geoserver-users] Getting JSESSIONID whithout authentication

2010-09-24 Thread Axt, Sven
Hi All, I am accessing an unprotected WFS in a Grails project from OpenLayers with goovy HTTPBuilder. It works as expected, but it seems every time sending a WFS request to Geoserver JSESSIONID has to be provided. And here comes my problem: To obtain a JSESSIONID I have to send a request to a

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2010-09-24 Thread Andrea Aime
On 24/09/2010 12:29, Axt, Sven wrote: Hi All, I am accessing an unprotected WFS in a Grails project from OpenLayers with goovy HTTPBuilder. It works as expected, but it seems every time sending a WFS request to Geoserver JSESSIONID has to be provided. And here comes my problem: To obtain a

Re: [Geoserver-users] Getting JSESSIONID whithout authentication

2010-09-24 Thread Axt, Sven
Thank you Andrea! I misled myself with some old docs. Its straight forward: def http = new HTTPBuilder(http://127.0.0.1:8080;) //providing authentication if neccessary http.auth.basic 'admin','geoserver' //building and sending the WFS-Request http.headers.'Content-Type'=application/xml;