Re: Defining a Jetty realm in hosted mode

2012-03-22 Thread TimD
Your jetty-web.xml is the same as mine, apart from missing the contextPath 
and war definitions. If I remove these I still get the same problem.

On Wednesday, March 21, 2012 7:24:36 PM UTC, Paul Stockley wrote:

 Create a jetty-web.xml file under your war/WEB-INF folder 

 Mine is defined as follows 

 ?xml version=1.0? 
 !DOCTYPE Configure PUBLIC -//Mort Bay Consulting//DTD Configure//EN 
 http://jetty.mortbay.org/configure.dtd; 
 Configure class=org.mortbay.jetty.webapp.WebAppContext 
  Get name=securityHandler
   Set name=userRealm
   New class=org.mortbay.jetty.security.HashUserRealm
 Set name=namedefault/Set
 Set name=configc:\ocs\jettyusers.properties/Set
   /New
 /Set
 /Get 
 /Configure 

 my jettyusers.properties file contains the username, password and roles 
 for each user e.g.

 pstockley: test, nirvana_tester



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Hg1Nc_WcnigJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-21 Thread Paul Stockley
Create a jetty-web.xml file under your war/WEB-INF folder 

Mine is defined as follows 

?xml version=1.0? 
!DOCTYPE Configure PUBLIC -//Mort Bay Consulting//DTD Configure//EN 
http://jetty.mortbay.org/configure.dtd; 
Configure class=org.mortbay.jetty.webapp.WebAppContext 
 Get name=securityHandler
  Set name=userRealm
  New class=org.mortbay.jetty.security.HashUserRealm
Set name=namedefault/Set
Set name=configc:\ocs\jettyusers.properties/Set
  /New
/Set
/Get 
/Configure 

my jettyusers.properties file contains the username, password and roles for 
each user e.g.

pstockley: test, nirvana_tester

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/hWgPbLWhDPMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

login-config 
auth-methodBASIC/auth-method 
/login-config

I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: myRealm  

It would be nice to have basic authentication working in hosted mode.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/yuGZD8ptnu8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
Sorry, that Jetty warning should have read:

Starting Jetty on port  
   [WARN] Unknown realm: Default


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/FGTuIE-wRKQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, I mean GWT Eclipse Plugin 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

login-config 
auth-methodBASIC/auth-method 
/login-config

I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: Default  

It would be nice to have basic authentication working in hosted mode.

On Friday, March 16, 2012 1:38:43 PM UTC, TimD wrote:

 I am using GWT 2.5.1 in Eclipse Indigo. I am trying to configure basic 
 authentication in hosted mode and I'm running into the following 
 warning when I launch my app: 

 Starting Jetty on port  
[WARN] Unknown realm: myRealm 

 When I try to access the app URL I get: 

 HTTP ERROR: 404 

 NOT_FOUND 

 RequestURI=/myApp.html 

 Powered by jetty:// 

 The following is in my web.xml: 

 login-config 
 auth-methodBASIC/auth-method 
 realm-namemyRealm/realm-name 
 /login-config 

 I have also created the following jetty-web.xml that sits next to 
 web.xml: 

 ?xml version=1.0? 
 !DOCTYPE Configure 
 PUBLIC -//Mort Bay Consulting//DTD Configure//EN 
 http://jetty.mortbay.org/configure.dtd; 
 Configure class=org.mortbay.jetty.webapp.WebAppContext 
 Set name=contextPath/myWebApp/Set 
 Set name=war 
 SystemProperty name=jetty.home default=. / 
 /webapps/myWebApp 
 /Set 
 Get name=securityHandler 
 Set name=userRealm 
 New 
 class=org.mortbay.jetty.security.HashUserRealm 
 Set name=namemyRealm/Set 
 Set 
 name=configfullyQualifiedPathToMyRealm.properties/Set 
 /New 
 /Set 
 /Get 
 /Configure 

 Without the fully qualified path to the realm properties file I get an 
 exception, so I know that it's now reading the config without error. 

 Why is the realm not being set?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/tQP4sAjExtQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Defining a Jetty realm in hosted mode

2012-03-18 Thread TimD
I should clarify, it's GPE 2.5.1 (GWT 2.4).

The following login-config in the web.xml works fine in Tomcat:

login-config 
auth-methodBASIC/auth-method 
/login-config

I don't actually want to have to define a Jetty realm, but with the above 
web.xml I get the following warning when I launch my app: 

Starting Jetty on port  
   [WARN] Unknown realm: Default  

It would be nice to have basic authentication working in hosted mode.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/mVnzAonQld4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Defining a Jetty realm in hosted mode

2012-03-17 Thread Patrick Tucker
Did you tell it which files are protected?  This also goes in the web.xml

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/0CJaUmgcDl0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Defining a Jetty realm in hosted mode

2012-03-16 Thread TimD
I am using GWT 2.5.1 in Eclipse Indigo. I am trying to configure basic
authentication in hosted mode and I'm running into the following
warning when I launch my app:

Starting Jetty on port 
   [WARN] Unknown realm: myRealm

When I try to access the app URL I get:

HTTP ERROR: 404

NOT_FOUND

RequestURI=/myApp.html

Powered by jetty://

The following is in my web.xml:

login-config
auth-methodBASIC/auth-method
realm-namemyRealm/realm-name
/login-config

I have also created the following jetty-web.xml that sits next to
web.xml:

?xml version=1.0?
!DOCTYPE Configure
PUBLIC -//Mort Bay Consulting//DTD Configure//EN
http://jetty.mortbay.org/configure.dtd;
Configure class=org.mortbay.jetty.webapp.WebAppContext
Set name=contextPath/myWebApp/Set
Set name=war
SystemProperty name=jetty.home default=. /
/webapps/myWebApp
/Set
Get name=securityHandler
Set name=userRealm
New class=org.mortbay.jetty.security.HashUserRealm
Set name=namemyRealm/Set
Set 
name=configfullyQualifiedPathToMyRealm.properties/Set
/New
/Set
/Get
/Configure

Without the fully qualified path to the realm properties file I get an
exception, so I know that it's now reading the config without error.

Why is the realm not being set?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.