Top "Nancy" questions

Nancy is a lightweight web framework for the .Net platform, inspired by Sinatra.

Unable to map an HttpHandler to a "path/*" wildcard mapping

So I've been trying to map an http module to a sub-path of an MVC3 site. It should be pretty …

asp.net iis-7 httphandler webdev.webserver nancy
Benefits of using NancyFx?

There is yet another framework for making HTTP calls called NancyFx. My question is what are the benefits of using …

c# asp.net rest nancy webhttp
Returning a string containing valid Json with Nancy

I receive a string that contains valid JSON from another service. I would like to just forward this string with …

c# json nancy
Get url parameters in NancyFx

I am using NancyFx to build a web API, but I am facing some problems when getting parameters from the …

nancy
Nancy (C#): How do I get my post data?

I'm using Corona SDK to post data to my C# server: headers["Content-Type"] = "application/x-www-form-urlencoded" headers["Accept-Language"] = "en-US" local body = "…

c# lua coronasdk nancy
Self hosted OWIN and urlacl

I've created a self hosted Nancy/SignalR application self-hosted in OWIN using Microsoft.Owin.Host.HttpListener and Microsoft.Owin.Hosting …

signalr acl nancy self-hosting owin
How to serve static content in Nancy

I'm having trouble serving up static content such as JavaScript in Nancy. For example using the self hosting sample I …

nancy
Registering dependencies within TinyIOC for use in NancyFX

I have another newbie question regarding registering additional dependencies within TinyIoc for use within NancyFX. I am continuing to get …

nancy tinyioc
How should I handle authentication with Nancy?

I started coding a LoginModule for Nancy, but it occurred to me that possibly I need to perform authentication a …

c# authentication nancy
Respond with both body and status code in Nancy

I'm new to Nancy and I want to return both a custom HttpStatusCode and a body (content). If I return …

nancy