Tagged Questions

Resources OpenRasta Site OpenRasta GitHub Project OpenRasta Documentation Wiki

learn more… | top users | synonyms

9
votes
3answers
2k views

Getting started with OpenRasta

Hi can anyone suggest ways of getting started with OpenRasta? Perhaps articles, tutorials, sample apps & documentation?
7
votes
3answers
948 views

Authentication with OpenRasta

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 ...
4
votes
3answers
942 views

What is better for REST API? WCF Web API (Preview 4) or OpenRasta or something else?

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 ...
4
votes
1answer
342 views

Using Spark or Razor viewengine with OpenRasta

has anyone used Spark or Razor view engine with OpenRasta framework? or any suggestion on the view engine other than the build in WebForms ?
4
votes
1answer
314 views

OpenRasta unit testing

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 ...
4
votes
3answers
689 views

Does OpenRasta support Mono?

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 ...
3
votes
2answers
95 views

OpenRasta - Encoding Errors as JSON rather than HTML

I notice OpenRasta.Core has an HtmlErrorCodec which is responsible for rendering a the server error page sent out when a handler throws an Exception. When I make an JSON Ajax request to an exception ...
3
votes
1answer
148 views

Custom Authentication OpenRasta

Hi I´m building an application that has a token based authentication ex: http://www.host.com/resource?token=589437534 I was going write an interceptor or something like that, but I imagine that ...
3
votes
1answer
137 views

OpenRasta - Incorrect status code returned when the resource uri is incorrect

I'm using OpenRasta framework in a .net service and I've a method as below in the handler public OperationResult Delete(int Id) { // Do some operation and get an entity return new ...
3
votes
1answer
430 views

Can the OpenRasta, ServiceStack and RestCake API's be used on frameworks other than .NET?

I know these API's are used for doing something easier than WCF (in terms of config and performance) for .NET, but I wanted to know if these API's can be used on other frameworks too? Thanks, ...
3
votes
0answers
56 views

OpenRasta Framework for component (or composite) based web application

we are trying to build a more loosely coupled composite based web application, and looking at various options and frameworks. The idea is like when the user browse to a page, the uri will be ...
3
votes
1answer
190 views

OpenRasta DI PerRequest lifetime problem

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<IRepository, ...
3
votes
1answer
135 views

Can you post a file, and a resource at the same time in OpenRasta?

Is it possible to upload a file, and post meta data (in the post body) at the same time in OpenRasta? and if so, do you have an example of how to do this?
3
votes
1answer
263 views

In OpenRasta, how do I configure a URI where I get “the remainder of the path” as a single string?

Normally in OpenRasta there is some configuration like this: ResourceSpace.Has.ResourcesOfType<Customers>() .AtUri("/customers/region/{region}") ... // and so on ... where the ...
3
votes
1answer
1k views

openrasta xml request being returned as json

I have a very simple OpenRasta app with a Home resource with a single string property of Title (straight from the OpenRasta community doc example). I've set up both XML and JSON data contracts for ...
3
votes
3answers
1k views

Get Image as stream or byte array using OpenRasta

Would anyone be able to give me a quick pointer as to how I can get an OpenRasta handler that returns a byte array. To be exposed in the ResourceSpace without it being a JSON or XML object. i.e. I ...
2
votes
1answer
57 views

OpenRasta - Providing Filter, Sorting and Paging for List Resources

We are creating a REST API using OpenRasta and apart from regular GET, POST, PUT and DELETE on all resources, we are also providing GET on resources with plural names. So a consumer of the API can ...
2
votes
4answers
80 views

Is there an OpenRasta like REST framework for Java?

The circumstances force me to start writing a java based server and I am looking for a REST framework for Java. I really like the way OpenRasta works - a REST framework for .NET, so my question - does ...
2
votes
1answer
67 views

Issue with Openrasta's Get methods' precedence in resource handler

I am new to openRasta framework. I have a resource called Project.I have 2 different types of GET to be done on this resource as i need different info on these two GETs.My configuration is like this ...
2
votes
1answer
120 views

Does OpenRasta supports HEAD HTTP Method?

I'm trying to configure an OpenRasta resource to respond a HTTP HEAD operation. I already tried to use UriName, different method names and signatures, but I couldn't find a solution yet. This is the ...
2
votes
1answer
46 views

Ignoring property in a class for response resource - Openrasta

I'm using Openrasta framework. I've simple POCO which is used in my API and this will be sent as ResponseResource to client. It looks like below: Public class User { Public int Id { get; set; } ...
2
votes
1answer
147 views

OpenRasta bad request does not return as JSON

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 ...
2
votes
2answers
174 views

Consuming OpenRasta services

Following advice on here, I am looking at whether to replace WCF with OpenRasta. In Visual Studio, how do I consume an OpenRasta in the same way as I would a WCF/ASMX service e.g. Add a service ...
2
votes
1answer
421 views

REST API with OpenRasta and ASP.NET MVC

REST API Questions: 1) Does anyone know any good tutorial that shows how to do form based authentication with OpenRasta? 2) How difficult would it be to convert REST API from MVC to OpenRasta in ...
2
votes
2answers
469 views

OpenRasta w/ .Net 4.0 running under Win 7 64 with IIS7.5

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 ...
2
votes
1answer
159 views

Using codec file extensions with OpenRasta returns 404

When using codec uri file extensions with OpenRasta, OR can't resolve the uri and returns a 404. Without the file extension all works ok. The codecs are defined for the object resource and I'm using ...
2
votes
2answers
770 views

OpenRasta - Scott Littlewoods Basic Authentication working example

I'm testing out the feasibility of using OpenRasta as a viable alternative to ASP.NET MVC. However, I've run into a stumbling block regarding authentication. Let me be clear, "Open Digest ...
2
votes
1answer
431 views

How to Explicitly Specify Method Bindings in OpenRasta?

I'm having a lot of difficulty with OpenRasta's URL routing, especially when it comes to PUT requests. Let's say I have a hypothetical UserContact handler, and I need to expose it with the following ...
2
votes
1answer
214 views

OpenRasta return list via JsonDataContractCodec

Suppose I have a resource like below: namespace OpenRastaApp.Resources { public class Foo { public string Bar { get; set; } } } a handler like: namespace OpenRastaApp.Handlers { ...
2
votes
2answers
356 views

Is it possible to install and use OpenRasta without IIS? If so, how?

Is it possible to install and use OpenRasta without IIS? If so, how?
2
votes
1answer
152 views

Can OpenRasta run alongside an existing Web App?

Is there a preferred way to configure an ASP.net solution so that OpenRasta can run alongside an existing application asp.net application. I'm interested in what the process would be for a request ...
2
votes
1answer
350 views

In OpenRasta is it possible to Pattern match multiple key/value pairs?

Is it possible in OpenRasta to have a Uri pattern that allows for an array of values of the same key to be submitted and mapped to a handler method accepting an array of the query parameters. ...
2
votes
1answer
449 views

OpenRasta - Pass parameters to custom Codec

I've created a new custom JSON codec for OpenRasta which works fine. I need to pass arguments to the codec's write method when the handler is executed but cannot find any documentation on how to do ...
1
vote
1answer
15 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 ...
1
vote
2answers
46 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 ...
1
vote
1answer
36 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. ...
1
vote
1answer
28 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): ...
1
vote
1answer
60 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.
1
vote
1answer
52 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
vote
1answer
39 views

Openrasta: Swap instance in dependency resolver

Suppose I register some instance in OpenRasta's dependency resolver using resolver.AddDependencyInstance(IInterface, instance, DependencyLifetime.Singleton) Now if I want to swap that instance ...
1
vote
1answer
25 views

OpenRasta CreatedResourceUrl use

I am sending the following response from server : return new OperationResult.Created { CreatedResourceUrl = getURI(newDuplicateKfEntity), ResponseResource = newDuplicateKfEntity }; My question is ...
1
vote
1answer
83 views

Writing PDF content on response stream in openrasta

I want to render a pdf in Iframe. So if I do a GET request to http://localhost/pdf/2, it should return PDF content in the response stream. The other way can be redirecting user to full URL of the PDF ...
1
vote
0answers
35 views

wildcard mapping support in openrasta 2.1?

according to the answer to this question: In OpenRasta, how do I configure a URI where I get "the remainder of the path" as a single string? Openrasta should support wildcards in it's uri ...
1
vote
1answer
119 views

How to support Partial Updates (PATCH) in REST

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 ...
1
vote
1answer
129 views

OpenRasta + OpenWrap?

I'm new to both OpenWrap and OpenRasta. Not really that interested in Openwrap other than that seems to be the way to get OpenRasta. Anyways i've installed openwrap and followed the following tutorial ...
1
vote
1answer
226 views

General architecture for backend?

We are trying to be forward looking in our architecture choice on some of the new systems we are designing. Pretty much we want to architecture back end system that no matter what interface we decide ...
1
vote
2answers
136 views

OpenRasta: Uri seems to be irrelevant for handler selection

When registering two handlers for the same type, but with different URIs, the handler selection algorithm doesn't seem to check the uri when it determines which handler to use. If you run the program ...
1
vote
1answer
75 views

Logging of OpenRasta exceptions in IIS

How can I enable logging of any exceptions that occur in my handlers, or codecs etc. in IIS? When googling for that, I found a couple of different ways on how to setup tracing. One of those actually ...
1
vote
1answer
45 views

Access to MethodInfo in OperationInterceptor

I created a couple of custom attributes that I attach to my methods in the handlers. The custom attributes are more than mere 'taggers' like e.g. 'RequiresAuthenticationAttribute'. A simplified ...
1
vote
2answers
352 views

Is the OpenRasta Project Actively Developed [closed]

What's up with OpenRasta is it dead project? If I go to http://openrasta.org/download.html and try to do the: o add-wrap openrasta-full I receive the following: \# OpenWrap Shell 1.1.0.35 \# ...

1 2 3