What is allowPost allowPut?

2009-04-18 Thread Rick
Hi,
I'm new to Restlet  I was going through tutorials  found that POST uses 
acceptRepresentation method, PUT uses storerepresentation, etc.
 
But then at one place in the examples folder, I found that the code is 
having allowPost  allowPut methods  it does not have any such 
acceptRepresentation or storerepresentation methods, but still the example 
works properly for post or put requests.

 Can any one please explain why these standard methods are not needed in 
this example of chapter 8?

Thanks!

--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=1776223


RE: Re: post in putUser Bookmark throws error

2009-04-18 Thread webpost
yes...it does not have acceptrepresentation method. But then why it has been 
implemented as PUT rather than POST? User creation should always be POSt, 
right? PUT is always used for Updates, right??

Thanks!

--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=1771723


bug? - AccessControlException on Restlet GAE module

2009-04-18 Thread keke
Hi,

Does anybody else get AccessControlException when using restlet-gae?

Everything goes well, unless I need to use GAE's authentication feature.
After a successful login (on development env), I got following exception:
java.security.AccessControlException: access denied
(javax.security.auth.AuthPermission modifyPrincipals)
at java.security.AccessControlContext.checkPermission(Unknown
Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at
com.google.appengine.tools.development.DevAppServerFactory$CustomSecurityManager.checkPermission(DevAppServerFactory.java:76)
at javax.security.auth.Subject$SecureSet.add(Unknown Source)
at java.util.Collections$SynchronizedCollection.add(Unknown Source)
at
org.restlet.engine.servlet.ServletCall.getSubject(ServletCall.java:345)
at
org.restlet.engine.http.HttpRequest.getClientInfo(HttpRequest.java:231)

Can I just use a mock Subject in gae env?


Cheers,
Keke
-
We paranoid love life

--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=1790594

Re: bug? - AccessControlException on Restlet GAE module

2009-04-18 Thread keke
Can I simply return null in ServletCall.getSubject, because in GAE
application usually relies on GAE's authentication.

Cheers,
Keke
-
We paranoid love life


On Sat, Apr 18, 2009 at 10:25 PM, keke iamk...@gmail.com wrote:

 Hi,

 Does anybody else get AccessControlException when using restlet-gae?

 Everything goes well, unless I need to use GAE's authentication feature.
 After a successful login (on development env), I got following exception:
 java.security.AccessControlException: access denied
 (javax.security.auth.AuthPermission modifyPrincipals)
 at java.security.AccessControlContext.checkPermission(Unknown
 Source)
 at java.security.AccessController.checkPermission(Unknown Source)
 at java.lang.SecurityManager.checkPermission(Unknown Source)
 at
 com.google.appengine.tools.development.DevAppServerFactory$CustomSecurityManager.checkPermission(DevAppServerFactory.java:76)
 at javax.security.auth.Subject$SecureSet.add(Unknown Source)
 at java.util.Collections$SynchronizedCollection.add(Unknown Source)
 at
 org.restlet.engine.servlet.ServletCall.getSubject(ServletCall.java:345)
 at
 org.restlet.engine.http.HttpRequest.getClientInfo(HttpRequest.java:231)

 Can I just use a mock Subject in gae env?


 Cheers,
 Keke
 -
 We paranoid love life


--
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447dsMessageId=1791082