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

I want to host the ServiceStack authentication providers on the root of a domain (domain.com) and have the authentication work for the entire domain (sub1.domain.com, sub2.domain.com).

Is it possible to replace the default implementation of ICookies with my own so I can set domain in the cookies?

I am seeing that HttpResponseWrapper instantiates the default implementation so I am guessing no.

Is there another approach?

share|improve this question

1 Answer

up vote 1 down vote accepted

I addressed my issue with the following pull request.

In Web.config, you can specify the domain for your cookies. ServiceStack was overwriting this value, but now ServiceStack will leave it alone if it is specified.

<configuration>
  <system.web>
    <httpCookies domain=".domain.com" />
  </system.web>
</configuration>
share|improve this answer
Recent versions of service stack allow you to set a domain using the endpoint host config. endpointHostConfig.RestrictAllCookiesToDomain = "domain.com"; – jeffgabhart May 6 at 17:49

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.