OpenRasta is an open-source MVC framework that can run on .net 2.0 and above, built from the ground-up to enable ReSTful scenarios.

learn more… | top users | synonyms

1
vote
0answers
38 views

Authorization Header Or RequiresAuthentication Attribute

I am using OpenRasta for building my REST API and want to enable the Authentication for selected number of methods in Handler. So i have put RequiresAuthentication attribute for those methods. I have ...
0
votes
0answers
45 views

DataContractJsonSerializer Date Serialization

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 ...
1
vote
0answers
74 views

Extra Request On 301 Moved Permanently Response

I am building a REST API method which return 301 Moved Permanently if my resource identifier gets updated and 204 Modified in other case. But after getting 301 Moved Permanently same request gets ...
0
votes
0answers
48 views

OpenRasta Intermittent 500 Error and now Timeouts

I've taken on an OpenRasta project, with the task of expanding to include more features and services. I have successfully added in the additional features which all work, most of the time, but from ...
0
votes
1answer
145 views

OpenRasta Unit Test Response HTTP Error 415

I have inherited a project from my predecessor which uses OpenRasta to host a webservice for my OpenSource colleagues to access for their applications. This is my first foray into OpenRasta I've added ...
2
votes
0answers
47 views

Measuring response time in open rasta

What is the best way to do this? I was thinking about something like: public void Initialize(IPipeline pipelineRunner) { pipelineRunner .Notify(CaptureRequestStartTime) ...
0
votes
1answer
78 views

OpenRasta Unit Testing GET results in 404 error

I've completed my implementation of my first OpenRasta RESTful webservice and have successfully got the GET requests I wish for working. Therefore I've taken some 'inspiration' from Daniel Irvine ...
3
votes
1answer
116 views

Server side caching in openrasta

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 ...
0
votes
1answer
76 views

Deserializer the respond stream from web failed

I need to convert my web application to phone application. I was succeed to deserializer the request respond into the generic list on my web app, but I haven't figure out how to do it on the phone ...
2
votes
0answers
83 views

OpenRasta resource registration with codecs for three different MIME types and extensions

In OpenRasta, how am I supposed to register resources with three different codecs and access these codecs through a regular web browser by appending an extension to the URL? The following doesn't seem ...
0
votes
2answers
56 views

OpenRasta AsJsonDataContract() Dictionary

I am using OpenRasta provide an API for my .NET application. I have a problem with the format of the JSON it produces when using Dictionaries. I have the following config: ...
3
votes
2answers
106 views

OpenRasta URI Maps to Wrong Method and returns inconsistent http status codes

I'm using OpenRasta framework in a .net service and I have two methods as below in the handler public OperationResult Get(int Number) { // Do some operation and get an entity return new ...
0
votes
2answers
49 views

Openrasta Validators Issue

I am facing a strange issue with Validators in OpenRasta.I have entry in my configuration file for Validator ResourceSpace.Uses.CustomDependency<IValidator<Customer>, ...
0
votes
0answers
43 views

openrasta overload operation

guys. In my handler I need to have two methods for same url, but with different signature. Like this: [HttpOperation(HttpMethod.POST, ForUriName = "Register")] public object Register(Registration ...
0
votes
0answers
60 views

Openrasta content negotiation through URL parameter?

is there a way to content negotiate using the url parameter in Openrasta? I am trying to do something like... /search?q={query}&p={page}&format={xml|json} As shown above, I would like to ...
0
votes
0answers
317 views

How to debug “Invalid URI: The hostname could not be parsed.” on Azure?

Sporadically, we get errors like the following in our Azure Web-Role deployed OpenRasta based app. 17:54:23.4493,0634750879800000000,MyWebRole_IN_1,[error] ...
0
votes
1answer
86 views

OpenRasta: Can I use a generic handler for versioning resources gracefully?

We have an OpenRasta service, and we'd like to use media types to version our resources. We'll have a different set of DTOs for each new version, distinguishable by namespace. For each version of the ...
1
vote
1answer
148 views

Dictionary Serialization DeSerialization Issue

I am using OpenRasta framework for REST API implementation. I have field in class which is of the type Dictionary<string, string> .I am testing this using REST Console(Google Chrome Plugin). ...
2
votes
0answers
147 views

OpenRasta IIS6 Intermittent HTTP 404

Background I have an API built with OpenRasta that serves JSON-encoded data to an HTML/AJAX enabled interface. Problem When hosted with IIS 6, I'm experiencing intermittent 404 errors when a ...
4
votes
1answer
238 views

OpenRasta Mocking HttpContext in Unit Tests

Currently i am writing a unit tests for my handler methods using NUnit.I have used HttpContext.Current in one of my Controller Methods which throws NULL reference exception at HttpContext.Current when ...
1
vote
1answer
65 views

Accessing encoded stream in OpenRasta

I have a need to access the encoded stream in OpenRasta before it gets sent to the client. I have tried using a PipelineContributor and registering it before KnownStages.IEnd, tried after ...
1
vote
0answers
89 views

Error build open rasta castle windsor

I try to build OpenRasta Castle Windsor. Firstly, I clone Openrasta Castle Github Repository. And I execute make.bat from command prompt. But I got these error: ...
1
vote
1answer
104 views

Memory leaks in OpenRasta service when using StructureMap DI

We are using OpenRasta for a service to serve up binary resources (images and PDFs mostly). Some of these are relatively large (5-75MB). We were encountering issues with performance, and, using the ...
3
votes
1answer
94 views

In OpenRasta, is it wrong to configure potentially ambiguous URIs?

Using OpenRasta and given the following 2 handlers: public class HelloWorldHandler1 { public string GetHelloWorld(string test, string test2) { return "Hello.World!"; } } public ...
0
votes
1answer
76 views

OpenRasta DI issues using StructureMap

I'm trying to use StructureMap with OpenRasta. My Configuration class implements IDependencyResolverAccessor. Here's my code to configure the container: container.Configure(x => { ...
2
votes
1answer
79 views

How to use StructureMap with OpenRasta

How do I use StructureMap with OpenRasta? Can I use it in place of the internal dependency resolver, or is it only possible to use it in conjunction with the built-in DI (i.e. for my own app's ...
0
votes
2answers
204 views

In OpenRasta, how should you handle codec errors or exceptions?

My scenario is this: A client application executes a HTTP POST against an endpoint exposed by OpenRasta. The body of the request contains an error that causes a problem in the codec - which is a ...
2
votes
1answer
120 views

OpenRasta overwriting Content-Length header in HEAD responses

I'm creating a pretty simple HTTP service using OpenRasta. For HEAD requests, the HTTP 1.1 spec states that HEAD requests should have the Content-Length set to "the size of the entity-body that would ...
0
votes
1answer
211 views

PUT/POST Key/Value collection to OpenRasta

How should an OpenRasta handler be implemented such that it can accept a URL-template based ID together with a dictionary, Hashtable or NameValueCollection (I don't care which one)? My URL-template ...
3
votes
1answer
118 views

Versioning of media types in OpenRasta

What is the proper way to version media types in openrasta? Up to this point on one of our rest api's we specified custom media types with the version number in them: ...
0
votes
0answers
80 views

OpenRasta with a default Index.html page?

I'm working on a site that will use OpenRasta to deliver JSON data, and then use a think JavaScript client to perform all the interactions. What we'd like to do is have an index.html page get ...
0
votes
1answer
68 views

OpenRasta project keeps throwing InvalidOperationException

This happens when the project is running... when we are on a page (for example /Project) everything renders fine... but at random time (I can't figure out when it happens) it just gets thrown. This ...
2
votes
1answer
127 views

NTLM authentication for OpenRasta

Following from my previous question regarding OpenRasta authentication, I'd like to know if NTLM authentication can be configured for OpenRasta service that is running as executable outside IIS. ...
0
votes
1answer
120 views

Response issue with RESTful API using OpenRasta

I am implementing RESTful API using OpenRasta.I am sending a ajax request in the following manner. $.ajax("login", { type: "post", data: JSON.stringify(authData), ...
0
votes
1answer
72 views

Adding an openwrap reference

I feel like this is a stupid question, but I'm following the tutorial for OpenWrap found here: http://codebetter.com/sebastienlambla/2010/10/20/creating-a-new-project-with-openwrap/ In the Writing ...
0
votes
1answer
154 views

Intermittent “No Default Instance defined for PluginFamily” exceptions using StructureMap with OpenRasta

This question is picking up from the following thread on the (now read-only) OpenRasta Google Group: ...
1
vote
1answer
264 views

ELMAH - How to log HTTP request body and HTTP request header with error log?

I'm logging errors by specifically signalling errors ErrorSignal.FromCurrentContext().Raise(exception); How do I add request body and headers in the errors details. I'm just using the email ...
2
votes
2answers
546 views

Orchard CMS : Creating module for OpenRasta, problems with dependency injection

I'm trying to create an Orchard CMS module that enables a RESTful web service using OpenRasta for a given route (/openrasta/* for example). I need to get to the Orchard ContentManager to get the ...
0
votes
1answer
136 views

OpenRasta Dependency Injection tear-down

Is there a mechanism in the dependency injector in OpenRasta that tears down the instance of an object that is created? Regardless the dependency lifetime. I tried looking through the source, but ...
0
votes
0answers
173 views

OpenRasta Basic Authentication in VB.Net

To ask the question is to answer it. I was looking for OpenRasta code samples in VB.Net and could not find what I was looking for. Based on C# code and the excellent Basic Authentication sample of ...
1
vote
1answer
112 views

PKI authentication for OpenRasta

I'm looking at implementing PKI authentication ( 2 way SSL requiring x.509 certificates) for OpenRasta service. Any ideas on how to go about this? Thanks
0
votes
1answer
161 views

Overloading Post Handler Methods for a Collection Resource

I'm using OpenRasta 2.0.3.0. I have a collection resource called ListOfActivity, and two distinct types of activity, FileUploadActivity and CommentActivity. Both activity classes inherit from ...
1
vote
1answer
269 views

Openrasta Data Serialization Issue

I am currently using openRasta to build Rest Api.I am observing strange behavior while sending Ajax requests.Sometimes request is successful sometime it fails and it gives following exception. ...
0
votes
1answer
212 views

Implementing simple CRUD with OpenRasta and Web Forms

I've been asked to look into OpenRasta as an alternative to MVC ASP.NET at work, and as a starting point I'm trying to replicate the Movies tutorial from the MVC ASP.NET website. I really like the ...
1
vote
1answer
63 views

Wire format for OpenRasta array bindings (urlencoded and multipart/formdata)

The wire format for binding arrays and dictionaries in OpenRasta seems to be ":index" like this: class X { public int[] Data { get; set; } } which serializes to (with two array items 5 and 12): ...
0
votes
1answer
234 views

RESTful way of File Uploading

I want to implement file upload in RESTful way using openrasta but not able to find proper way to implement it.There are few ways like using Ajax file upload or using Iframe which i could find. Can ...
0
votes
1answer
111 views

Passing an object as a parameter in openrasta get method

Is it possible for an OpenRasta handler to have accept a resource as a parameter. For a URI of (for example) "/search/" could I pass something like: public class SearchRequest { public string Term ...
0
votes
1answer
71 views

How OpenRasta internally works?

So far I only found documentation about how to use OpenRasta and the great functionality it provides, but Is there some kind of documentation or diagrams that helps to understand its internal ...
2
votes
1answer
121 views

Where can I get OpenRasta Latest Source Code?

Where is the latest version (where development is going on) of OpenRasta code ? In OpenRasta-Core and openrasta-hosting-aspnet repositories, I don't see any commits since Sept 2011.
3
votes
1answer
153 views

any OpenRasta reference applications or examples?

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.

1 2 3