i am trying to understand how IIS 7.5 handles POST and PUT request.
I am writing a RESTful service using OpenRasta framework. The POST operation works without any problem, but the PUT operation for the same URL does not. It returns error like the…
I want to implement the partial updates for my resource as i have large resource and want to update the partial information from it.I have gone through the following links but not
able to figure out whether to use HTTP POST or PATCH methods.
HTTP…
I'm trying to use OpenRasta for a simple RESTful service. This service needs to be secured with either http Basic authentication or (preferably) Digest.
Looking around the net, there are tens of webpages writing how wonderful OpenRasta is and that…
I see in this question that WCF Web API is still in preview and I've just started looking at OpenRasta.
Though OpenRasta looks more mature than WCF Web API, I'm still a bit confused. Or please suggest if there is any other better framework for…
I'm using OpenRasta 2.0.3214.437 in an ASP.NET 4 web application. I'm registering a custom dependency in the internal container using:
ResourceSpace.Uses.CustomDependency(DependencyLifetime.PerRequest);
This works perfectly…
Although Mono support is not a big deal for us, I figured OpenRasta supported it cause it has some commit messages about it..
Well, I tried to build it on Mono and got Ambiguous type references(after manually creating like 10 obj directories.) So I…
I have a site that is being polled rather hard for the JSON representation of the same resources from multiple clients (browsers, other applications, unix shell scripts, python scripts, etc).
I would like to add some caching such that some of the…
I'm looking for projects, reference apps, examples, so on, for reference, with code, of course. Not simple helloworlds, do you know any? thanks in advance.
I've built a service using OpenRasta. I'm validating resources in a operation interceptor. If validation fails a BadRequest is returned with an ErrorResource as JSON. The ErrorResource contains a list of error messages. On my local machine the…
I am trying to follow along with the getting started OpenRasta application. https://github.com/openrasta/openrasta-stable/wiki/Building-Your-First-OpenRasta-Website
I am using .Net4 under windows 7 64 bit, and I am targeting IIS 7.5. I have set my…
I’m about to start work on an OpenRasta project (an xml over http web service). OpenRasta looks great but unfortunately worked examples seem few and far between on the internet. Looking at the test side of the project, if my handlers are returning…
I comparing the above frameworks, and note in ServiceStack that it can output different formats, not just JSON, or XML, but CSV, SOAP, Text and HTML. However, when I compare this with OpenRasta and Nancy, in their documentation, I don't find this…
Is there a way to change how the DataContractJsonSerializer serializes dates?
Currently, it'll convert a date to something like:
{
"date": "/Date(1260597600000-0600)/"
}
I want to convert it into human readable date format.
I am building a RestApi…