Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get playframework to allow non-origin calls? I have tried adding a @Before method to a controller, but that never gets called by an ajax client.

@Before 
public static void setCORS()
{
    Http.Response.current().accessControl("*", "GET,PUT,POST,DELETE", true);
}

I am trying to setup a test API server for client developers to test against, but that seems to require disabling the Origin restriction.

Has anyone else got this working? or accomplished this in a different way?

UPDATE: I found this article on the topic http://javathought.wordpress.com/2011/12/04/cross-origin-resource-sharing-with-play-framework/

share|improve this question
Are you trying to call play-project from a different domain or the other way around? – Subir Kumar Sao May 25 '12 at 4:56
I am trying to call play from another domain. Specificly, I am setting up a test play on a hosted server and a web client being developed on a local desktop. I am trying to setup a development environment. – darren May 26 '12 at 6:04

2 Answers

up vote 1 down vote accepted

Check what your browser is trying to do, it may send an OPTION request first to check what is allowed, this is called "preflight request".

Also, setting Access-Control-Allow-Origin to * only works without credentials.

share|improve this answer
This is a good page to read through, developer.mozilla.org/en/http_access_control – nylund May 26 '12 at 10:32
Thank you nylund. Is there a way to get Play to put these headers on every call? The options check is coming back as a 404, likely because the GET, PUT, POST, DELETE calls are routed but not the OPTIONS verb. – darren May 26 '12 at 16:54
You have to add an OPTION route to your routes.conf file, you could use wildcards to cover as much as you like if it makes sense in your app. – nylund May 28 '12 at 7:07

Using a custom router can solve this.

For example using: https://github.com/teamon/play-navigator

val rget = GET on "foo" to App.foo
val gpost = POST on "foo" to App.foo
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.