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

I'm using ServiceStack to write a REST based service, but as part of the authentication, I need to authorize cross-domain, but cookies can't be read cross-domain, so even though my JSON POST to the authenticate service succeeds and returns the SetCookie results, it will never see that cookie as it can't see it.

Question is, is there any other way around this, maybe I can provide the same value via a request header or something?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can pass cookies in a cross domain request if both the client and the receiver allow it. Have a look at this link here

share|improve this answer

You can use HTTP BasicAuth HTTP Headers with your Ajax Request, the server will need to have the BasicAuthProvider() enabled, e.g:

Plugins.Add(new AuthFeature(
    () => new CustomUserSession(), //Use your own typed Custom UserSession type
    new IAuthProvider[] {
        new BasicAuthProvider(), //Sign-in with Basic Auth
        //... other providers
    }));

Though note that BasicAuth is just an Base64 encoded version of your UserName/Password so this should ideally happen over SSL.

See this answer for how to add BasicAuth headers using jQuery.

share|improve this answer
I'm sure this is the correct way to do this, but I ended up just using the withAuth flag to set the cookie cross domain. That was the easiest way for me while still keeping my existing authorization provider. – thedesertfox Dec 6 '12 at 21:45
Cool, yeah there's plenty of options - the path of least resistance is the best choice :) – mythz Dec 6 '12 at 21:50

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.