Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
590 views

Disabling ASP.NET HttpHandler response caching

Background I'm in the midst of comparing the performance of NancyFx and ServiceStack.NET running under IIS 7 (testing on a Windows 7 host). Both are insanely fast - testing locally each framework ...
9
votes
3answers
2k views

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 simple as I understand it, but it has not been working. The module is setup like so: <handlers> ...
5
votes
1answer
216 views

Force ASP.NET MVC3 handler to ignore .cshtml and .vbhtml URLs and just pass them through

It seems that MVC3 has a priority handler for .cshtml and .vbhtml file extensions and tries to locate them in the default folder. When requesting these URLs: domain.com/test.cshtml ...
4
votes
1answer
142 views

Remote access to a Nancy Self Host

I am creating a Nancy Module that will eventually be hosted inside of a Windows Service. I am currently running it inside of a WPF test application. To start the Nancy hosting, I am using ...
4
votes
1answer
353 views

Blank responses using Nancy self host + TopShelf

I am trying to use Nancy (using the Self Hosting with Razor views nuget packages) inside of a Topshelf service. I am hosting it on http://localhost:8585/, and it works just fine while I'm in debug ...
3
votes
1answer
220 views

Nancy with Razor: Views are cached, making development really hard

I'm new to Nancy and Razor (and MVC). If I make a change to a view I have to restart the application somehow (change web.config, restart dev server etc) for the change to take affect. I think the ...
3
votes
3answers
530 views

Nancy Self Host blank response with Razor view [closed]

Resolved in Nancy 0.6 I'm trying to get self-hosted Nancy to return a razor view and I can't get it to work. The sample in the Nancy source code uses a web project, but the page they have doesn't ...
2
votes
2answers
189 views

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 Nancy but also set the content-type to "application/json" which will allow me to remove ...
2
votes
2answers
160 views

Test driving Nancy Modules

Ok - I love NancyFx. Writing a web application with that few lines is just amazing! But how do you test drive your NancyModules on the unit level? Please note that I am aware of the excellent ...
2
votes
1answer
88 views

Spark Model Methods crash in IF statement

I am using some methods from my viewdata model in Spark, but it doesn't work properly. I thought it was working previously, but it appears to be crashing. Am I doing something wrong that I am unaware ...
2
votes
1answer
164 views

Nancy Self Host doesn't call Module?

I am working on adding Nancy Framework to my C# console application (followed the very short tutorial here and it loads a blank page when I go to http://localhost:1234 so I know it is starting, but it ...
1
vote
1answer
67 views

Model validation with NancyFX

I'm really get used with ASP.NET MVC approach: annotate model with corresponding attributes, MVC does validate it and updates ModelState.Errors, ModelState is available on View, so it is possible to ...
1
vote
1answer
74 views

User information in Nancy

I'm knocking together a demo app based upon Nancy.Demo.Authentication.Forms. I'm implementing Claims and UserName in my UserIdentity:IUserIdentity class and, as per the demo, I've got a UserModel ...
1
vote
1answer
313 views

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 different way. Is there an accepted way of doing auth in Nancy? I am planning two ...
1
vote
1answer
108 views

Nancy test fails because of missing modulePath for FakeNancyModule

I get the following when I try to test a Nancy module: StructureMap Exception Code: 205 Missing requested Instance property "modulePath" for InstanceKey "Nancy.Testing.Fakes.FakeNancyModule" ...
1
vote
1answer
224 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
1answer
146 views

Simple C++ Web Framework?

I have been using Nancy's Web Framework for my C# application and it has been extremely simple to use and does an excellent job providing the functionality I need. Do any simple Frameworks exist on ...
0
votes
1answer
67 views

problems using nancy to handle requests for subfolder in mvc 3 app

I am trying to set up nancy to handle requests to the /api url in my mvc 3 app. I have set up 2 nancy routes in my ApiModule Get["/"] = _ => "Hello"; // returns "Hello" as expected ...
0
votes
1answer
153 views

How to use Session with the Nancy Razor ViewEngine

I'm using the RazorViewEngine for NancyFx and I would like to have a ViewBag like object where I can store dynamic properties. Although not ideal, I decided that Session state would suffice for my ...
0
votes
0answers
47 views

HTTPHandler Request.FilePath is not complete

I'm trying to add NancyFX to an existing asp.net website. I've written a small test assembly and put it in my asp.net site's "Bin" folder then registered NancyFX in my web.config as follows: ...
0
votes
1answer
140 views

How to implement security in REST calls in .NET using NANCY and RESTsharp?

How do I add a security layer to my REST application, I am both in control of my server and client, I am using NANCY as a server and RESTsharp as client. I have hard time understanding how to make ...
0
votes
1answer
50 views

Get the OS/Platform in Nancy

Is there an equivalent of the 'Platform' in Nancyfx? In as asp.net I can do the following: Request.Browser.Platform
0
votes
1answer
43 views

Do I need to register dependencies for ALL my NancyModules when testing just one route?

Do I need to register dependencies for ALL my NancyModules when testing just one route, or is there a way to JUST register dependencies that apply to the module I want to work with? I'm using the ...
0
votes
1answer
75 views

Nancy test doesn't find route in other assembly

I have the following spec (using Machine.Specifications or mSpec): public class when_a_user_logs_in_successfully { static Browser _browser; static BrowserResponse _response; Establish ...
0
votes
1answer
209 views

Problems with Razor view engine in Self-hosted Nancy Console App

Some I'm running a slightly modified version of the Nancy Web Framework self hosting demo, Nancy.Demo.Hosting.Self. I've modified it to include the Nancy's Razor view engine, Nancy.ViewEngines.Razor. ...
0
votes
1answer
86 views

Capture all url segments after the initial match with Nancy

I would like to have nancy rule that matches/captures all url segments after the initial match. For example I would like to do this: have a url like: /views/viewname/pageid/visitid/someother and a ...
0
votes
1answer
31 views

Nancy RequiresClaims failure returns a 403. How do I use this?

If a module requires a claim, and the user does not have the claim a 403 response is returned. eg: this.RequiresClaims(new[] { "SuperSecure" }); or this.RequiresValidatedClaims(c => ...
0
votes
2answers
270 views

Returning a Json file with Nancy for use in Jquery

I have a file that contains some JSON with an extension of .json. I am using Nancy to serve the file as follows: Get["/schema/{file}"] = parameters => { return ...
0
votes
2answers
124 views

What is a JSON Data Source?

I am working on a C# console application using the Nancy Framework and the Spark view engine, and I am trying to replicate something from another project. However, I am very inexperienced with both ...