Nancy is a lightweight web framework for the .Net platform, inspired by Sinatra. Nancy aims to deliver a low ceremony approach to building light, fast web applications.

learn more… | top users | synonyms

0
votes
0answers
9 views

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 Things work perfectly fine locally but as soon as I try to ...
1
vote
1answer
39 views

Splat equivalent in Nancy

I'm trying to match all routes in a Nancy module. Sinatra uses splat parameters, e.g get '/download/*.*' do # matches /download/path/to/file.xml params[:splat] # => ["path/to/file", "xml"] end ...
1
vote
1answer
32 views

NancyFx how to remove the tumbeast from errors

I do like the NancyFX error custom page. Unfortunately an exigent customer prefer not to see the green monster besides the error. Is there some way to just remove the image from the almost perfect ...
1
vote
1answer
36 views

nancy razor first time setup - route not found 404

Steps I took to setup project: created new asp.net project Install-Package Nancy.Viewengines.Razor added Views/hello.cshtml (simple hello world html) added MainModule.cs hit ctrl-F5 (it returns the ...
-1
votes
0answers
40 views

Web-Based File Manager without PHP [closed]

I currently use the Nancy Framework as the web front-end for my C# application. I would like to add a web-based file manager to allow the end user to manage (edit/delete/etc) their files for the ...
1
vote
1answer
55 views

Nancy : use array of data from POST request

I need to send an array of object from my web application to my Nancy web service in order to update my database. Sending just an object, it works fine : in my web method, I get the data using ...
2
votes
1answer
36 views

NancyFx not reaching module using Owin Hosting

I am trying to create a really simple NancyFx project using OWIN hosting. Nancy appears to be running because I get the 404 that comes with Nancy by default, but none of my modules are ever reached. ...
1
vote
1answer
39 views

Nancy- 0.17, startIndex cannot be Larger than that of String

I upgraded to NancyFx v0.17. I now get the following error when I hit a view with a model in it. [ArgumentOutOfRangeException: startIndex cannot be larger than length of string. Parameter name: ...
0
votes
2answers
39 views

Different HttpStatusCode for different clients in Nancy

After navigate to http://localhost:57645 code below returns 200 (OK) for "Dev HTTP Client" and 500 (InternalServerError) for "Chrome Browser". public class SampleModule : Nancy.NancyModule { ...
3
votes
1answer
79 views

How to display my 404 page in Nancy?

I need to display my 404 error page in Nancy like this if (ErrorCode == 404) { return View["404.html"]; } How to do it?
0
votes
2answers
36 views

NancyFx and TinyIoC provide single instance to module

Iv got a fairly simlpe question. Im using Nancy with a windows form (passed through the constructor (autoresolve)). If i let nancy resolve automatically every module it creates a new instance of the ...
0
votes
1answer
42 views

Testing Custom Bootstrappers in Nancy

So I have a CustomBootstrapper, which does a lot of application initialization, including IoC registration and Quartz scheduler setup. The modules also heavily rely on the SuperSimpleViewEngine. Now ...
0
votes
1answer
33 views

Nancy Module Autodiscovering not Working after ILMerge

Whe i run my Nancy selfhosted Application in Visual Studio everything works as expected but when i use ILMerge to create a allInOne.exe I just get 404s on every Url. Thats the ILMerge command: ...
0
votes
1answer
70 views

cant start nancy self host without admin rights

my app uses Nancy Selfhosting. When i launch it without admin rights i get a System.Net.HttpListenerException "Access Denied". Heres the code: static void Main(string[] args) { var ...
1
vote
1answer
113 views

Long polling with Nancy Async Beta

Normally I would use SignalR to handle any data pushing but in this case I'm using a self-hosted instance of Nancy Async Beta on the server end. I've heard its still possible to use SignalR in this ...
1
vote
1answer
46 views

Elmah Filter for Nancy MVC Framework

I'm using Nancy MVC and Nancy.Elmah. Currently, there's a bug in Nancy that raises an exception for requests with accept headers of "*". Here's the Elmah log: System.ArgumentException inputString ...
0
votes
1answer
31 views

Nancyfx executes the route but does not return a result. (Running on Raspberry pi Mono)

Im currently running Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-5) on my raspberry pi. I compiled the nancyfx monorelease configuration from master branch. The application starts as expected ...
2
votes
1answer
46 views

Nancy Views Internal Server Error

I'm hosting Nancy in my Console Application, and when I try to call a view(for example "Login.html") the page gives me error 500. This is the code: public sealed class LoginModule : NancyModule { ...
1
vote
1answer
33 views

Nancys Html.RenderContext.Context.CurrentUser thowing exception

I'm trying out Nancy for the first time (really liking it so far) and have run in to some problems. When I'm calling Html.RenderContext.Context.CurrentUser I get the following error: Errors: [CS0012] ...
2
votes
2answers
83 views

Is it possible to bind simple Request data to a method call in NancyFX?

I am sending some simple user details to a Nancy module. I am taking advantage of Nancy's model binding feature to harvest the user details from the request and pass them to my UserService.Add(...) ...
0
votes
1answer
71 views

Nancy - Unable to resolve type: NHibernate.ISession

My CustomBootstrapper looks like below public class CustomBootstrapper : DefaultNancyBootstrapper { protected override NancyInternalConfiguration InternalConfiguration { get { ...
2
votes
2answers
70 views

Is it possible to enable CORS using NancyFX?

I have an API service made with NancyFX, and a couple of front-end developers creating an SPA JS client against this API. We would like to test the client side code against the published server ...
0
votes
1answer
47 views

MonoDevelop: Failed to load http handler

I am running MonoDevelop on OS X to develop an ASP.NET web application using Nancy. I downloaded the nancy.dll file and referenced it from my web project. Inside the web.config I added the line: ...
0
votes
1answer
32 views

Is there a way to list all available routes in a Nancy application?

I'm implementing an API via a web service, using Nancy. I'd like to have a /help or /docs page that programmatically lists all of the available routes, so that I can provide API users with ...
0
votes
1answer
49 views

NancyFX, extension method for HtmlHelpers<T> is not recognised in Razor view

I am trying to create an extension method for HtmlHelpers<T> using NancyFX. The code is something like this public static IHtmlString DropdownList<T>(HtmlHelpers<T> htmlHelper, ...
0
votes
1answer
51 views

JSON Schema Validation in NancyFX

I am trying get a REST API up and running using NancyFX, and so far it looks really cool, and exactly what the doctor prescribed! There is one thing I can't really find anywhere. I would like to ...
0
votes
0answers
51 views

Nancy Route defining optional parameter

I want to handle below Get request in Nancy Module . http://localhost:9988/myapp/home/admin where /admin is optional parameter value. For this I have defined route like below. ...
1
vote
1answer
40 views

How to create the session and set the UserBean in session

I am new to Nancy and .NET framework. here I am running in a panic situation. I have written my own Bootstrapper to enable CookieBasedSessions in project.Here are tasks i have to perform. Once ...
0
votes
1answer
29 views

Nancy 640 X 480 screen resolution

I am having requirement of supporting the nancy bases website in 640 X 480.I am very new to Nancy. I want to know that is there any way to provide this kind of support . if yes, How we can archive ...
0
votes
0answers
121 views

Can I use a Nancy razor @section inside an @Html.Partial(..)?

I am successfully using the Nancy Razor engine. I have a _Master.cshtml Layout which defines a razor @section for my javascript and others for my @Html.Partial() and CSS files. This all works fine. ...
-1
votes
1answer
132 views

How to get real error messages in Nancy on Mono?

I can't figure out how to get actual 500 errors to be written into the response body. All I get is the Nancy 500 error page with JavaScript button to show the error. Since this is all happening behind ...
0
votes
2answers
93 views

ConfigurableBootstrapper error when Posting using Nancy.Testing.Browser

I have a simple NancyModule that has a Post declared: Post["/Car/New"] = args => { Car newCar = this.Bind<Car>(); newCar = _carRepos.CreateNewCar(newCar); return ...
0
votes
1answer
38 views

Nancy C# simulate WS

I'm trying to use the Framework to Nancy C # to an MVC application running on internal control target (eg, read the serial port and send a response), without having to have IIS installed or having to ...
1
vote
2answers
107 views

Nancy Module Unit Testing. Exception in unit test

Can't find reason why test isn't work. Has anybody known why it happen? Difference between these two tests is ony in views. In first it is ".html" page and in second it is ".liquid". In my project I ...
0
votes
1answer
59 views

Why doesn't `DefaultNancyBoostrapper` find my NancyModule

I'm just getting my feet wet in Nancy. I was really excited to see the Testing process in the Wiki, but when I tried the following I couldn't get it work pass the tests at first. Using VS2010 ...
1
vote
1answer
129 views

Razor Compilation Error using NancyFX

I am creating a black jack program in C# utilizing Nancyfx and the Razor view engine in Visual Studio 2012. Visual studios Intelisense works but I get these Razor compiling errors. I have tried ...
0
votes
1answer
100 views

Request.Url has wrong port information

My web application is using Nancy, and is hosted in Asp.Net, in Azure. In development, I am using IIS Express, and Azure's Compute Emulator. In production, the homepage opens in http://mydomain/test ...
1
vote
0answers
72 views

Sequence contains more than one element an NancyBootstrapperBase class

I can't figure out why this exception was threw... I have a unit test: [Test] public void Should_return_status_ok_when_route_exists() { // Given var bootstrapper = new ...
0
votes
0answers
29 views

How do I generally process a route parameter that is present in every route

I am writing a service using NancyFX 0.16.1. Each route in this service follows the same pattern: /{subscriptionId}/* I would like to capture the subscriptionId param, use it to fetch a ...
0
votes
1answer
107 views

Nancy / TinyIoC “works on my machine” issue

So I have this webapp that I've been developing over the last half year or so. Recently I discovered that NancyFx had been upgraded to 0.16 on nuget and went to upgrade (from 0.12). Things went fine, ...
0
votes
0answers
175 views

Merits Web API over Nancy [closed]

It seems like Nancy has been receiving all if the praise for being more flexible, etc than Web API. Can anyone speak to the areas in which web API is stronger or in which cases someone might opt to ...
0
votes
0answers
44 views

Does anyone know of an ajax comet server written in Nancy? [closed]

I need a comet server for an application I am working on and would really like to use Nancy. Does anyone know if one already exists using the Nancy framework?
0
votes
1answer
46 views

Nancy basic auth password change causes authentication to fail

I have created a self-hosting site using Nancy and Owin. I used Nancy.BasicAuthentication for authentication. Everything works fine until I change the current logged in user's password. Once the ...
0
votes
1answer
85 views

Omit null values in json response from Nancy FX

I am trying to create a REST service using Nancy FX in a C# environment. I can easily do a Response.AsJson and it all looks good. But I want the response to omit any properties that are null. I have ...
0
votes
1answer
181 views

Nancy: is there a Server.MapPath(“~/”) equivalent?

I can't seem to find an equivalent in Nancy for System.Web.HttpContext.Current.Server.MapPath() in the Nancy framework. I just want to load a textfile relative to the application service. I see ...
0
votes
1answer
123 views

Getting Cannot access a closed Stream when unit testing Nancy

I am getting "Cannot access a closed Stream" when unit testing a Nancy web app. My module is as follow: public class MainModule : NancyModule { public MainModule() { Get["/{Name}"] = ...
0
votes
0answers
126 views

NancyFx TinyIoc Configure request container not resolving types

I'm creating a Nancy application and using an existing NHibernate backend that follows the UOW pattern, I have registered everything in my ConfigurationApplicationContainer method and it works to ...
0
votes
0answers
46 views

Getting [ERR!] as output when trying to use the Nancy SuperSimpleViewEngine to render partials

The example I'm using is litterally the one from their example page here: https://github.com/NancyFx/Nancy/wiki/The-Super-Simple-View-Engine So I have my files set up with index.sshtml and ...
1
vote
2answers
64 views

Shared resources Visual Studio 2010

So I have a solution which contains 4 projects, a "Core" Project which is the actual application (as a class library), and 3 wrapper projects, "Console", "WinForm" and "Service" which basically wraps ...
1
vote
2answers
118 views

How to make an image handler in NancyFx

I'm struggling to output an Image from byte[] out of my database in NancyFX to a web output stream. I don't have sample code close enough to even show at this point. I was wondering if anyone has ...

1 2 3 4