1
私は私のアプリのセキュリティ制約ました:Google App Engineで使用する領域を定義するにはどうすればよいですか?
2009-06-15 10:25:実行時に
<security-constraint>
<display-name>users</display-name>
<web-resource-collection>
<web-resource-name>all</web-resource-name>
<description/>
<url-pattern>/secured</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
<http-method>HEAD</http-method>
<http-method>PUT</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
<http-method>DELETE</http-method>
</web-resource-collection>
<auth-constraint>
<description>Have to be a USER</description>
<role-name>USERS</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
</login-config>
<security-role>
<description/>
<role-name>USERS</role-name>
</security-role>
がどんなに領域 "USERS" がない42.536は:: WARN:要求/セキュアに失敗しました - 領域がありません
- Googleアプリケーションエンジンで領域を定義する方法はありますか?
- jetty.xmlを使用していますか?それはGAEによって運営されていますか?