Tagged Questions
1
vote
1answer
153 views
ServiceStack always Default Redirect to /metadata even when Default.cshtml present
I have a ServiceStack project with ServiceStack Razor added. Any time I try and navigate to the root of the site, I'm getting redirected to /metadata.
This does not happen on my dev machine, only ...
1
vote
3answers
247 views
ServiceStack.Razor ViewPageBase.Href not resolving app path on AppHarbor
I have a very basic html form being rendered in a ServiceStack.Razor ViewPage:
<form action="@Href("~/subfolder/someservice")" method="POST">
<input...>
...
</form>
It ...
1
vote
2answers
155 views
AppHarbor pre-compile of ServiceStack.Razor based website failing
I am trying to deploy what is currently a very simple web app based on ServiceStack.Razor to AppHarbor, but it is failing on the asp.net precompile step:
Microsoft (R) ASP.NET Compilation Tool ...
1
vote
1answer
193 views
PooledRedisClientManager throws with Appharbor Redis URL
I am trying out Redis on Appharbor in an MVC4 application. I am using the ServiceStack C# client for Redis. Everything was working when using the RedisClient from ServiceStack.Redis. However, because ...
3
votes
1answer
407 views
Authenticated ServiceStack.Redis.PooledRedisClientsManager
How do I specify a username and password for the Redis hostname when instantiating a PooledRedisClientManager?
var _redis = PooledRedisClientManager("my.redishost.com:1234");
I specifically need to ...
3
votes
1answer
378 views
How to configure SSL on AppHarbor with ServiceStack.net web services
I am developing a set of web services using ServiceStack.net. I plan to host these services on Appharbor. I am fairly new to appharbor and cloud hosting in general.
I see that there is an interface ...
7
votes
1answer
938 views
How can I implement ServiceStack.net rest call over HTTPS?
I would like to authenticate users of my servicestack.net rest services using basic auth over HTTPS.
Can anyone explain how the https portion of this would work or point me in the right direction? ...