Tagged Questions

Happstack is a fast and flexible Haskell web framework.

learn more… | top users | synonyms

6
votes
1answer
135 views

What software is recommended for authentication using the Happstack web dev kit?

Last week three of us spent two days trying to build a simple web application using Happstack. One of our concerns is authentication, and it appears there was once a Happstack.Auth package that looks ...
5
votes
1answer
129 views

Using values not from the application monad with Heist templates

I'm trying to write an application server using Happstack, Heist, and web-routes, but am having trouble figuring out how to let splices access values that don't originate from my application's monad ...
4
votes
1answer
123 views

Newbie question on syntax and type signature in Haskell/HappStack

Why is it that I can't do z = x? but I can do this? y s = x s I'm a Haskell newbie This is what I've been trying in GHCi: Prelude> import Happstack.Server Prelude Happstack.Server> let x ...
3
votes
2answers
106 views

Reducing redundancy in happstack tutorial code

The happstack tutorial provides the following sample: main :: IO () main = simpleHTTP nullConf $ msum [ do methodM GET ok $ "You did a GET request.\n" , do methodM POST ...
3
votes
2answers
299 views

Happstack-state concept and docs?

I'm starting making Haskell web server. I've decided to start with Happstack and Happstack-state. And I'm feeling hard to understand concept and attribute of Happstack-state. Is it a new kind of ...
2
votes
1answer
43 views

How to create JSON Rest API with Happstack? JSON body?

I'm trying to create a JSON REST api using Happstack. It should allow POSTS with a JSON body. How can I do this? All the functions in happstack's API seem to look things up based on parameter name. It ...
2
votes
1answer
110 views

How to create a Database Monad Stack in Happstack?

I want to create a Happstack application with lots of access to a database. I think that a Monad Stack with IO at the bottom and a Database Write-like monad on top (with log writer in the middle) will ...
2
votes
2answers
192 views

Can any Haskell web server run Python CGI apps?

I need a web server developed using Haskell to run an old Python CGI application. Any suggestion is appreciated!
2
votes
1answer
90 views

Is there a way to refactor some of this Happstack form code?

I'm trying to get the GET and the POST from the Happstack tutorial into one handler function so it's always together, which I've kind of achieved, but it seems ugly. login :: ServerPart Response ...
2
votes
2answers
117 views

Using html files as templates in happstack

I can find plenty of documentation on using blitz and other compiletime templating libraries with happstack but I would like to know how to use html files as templates.
2
votes
3answers
940 views

Haskell Web Framework

I'm creating simple web application using haskell.First I used snap in front and I was able to run the application.But I want to add user input to the application.I couldn't find a way to get user ...
2
votes
2answers
185 views

Is there a good way to QuickCheck Happstack.State methods?

I have a set of Happstack.State MACID methods that I want to test using QuickCheck, but I'm having trouble figuring out the most elegant way to accomplish that. The problems I'm running into are: ...
2
votes
2answers
374 views

Problems trying out happstack-tutorial

I've been reading about Happstack and decided to give it a shot. I'm running xubuntu 9.10 and got to this page in the tutorial which told me to do cabal install in the tutorial folder. When I did ...
2
votes
2answers
297 views

What is MACID?

I've recently found the HAppS and Happstack projects, and the latter notes that one of its missions is to "leverage use of MACID". What exactly is MACID ?
1
vote
1answer
65 views

Ctrl+C doesn't work in Windows Haskell/happstack

Pressing Ctrl+C (or +Z or anything else) - does not terminate a haskell application (or happstack app) in windows command line (or power shell). Currently I have to close the window, and then open a ...
1
vote
1answer
67 views

Catch exceptions in Happstack

I got an exception (used Prelude.head on an empty list) that made all the http-request after that return a 502/505 exception (and the happstack app prints "HTTP request failed with: send resource ...
1
vote
1answer
60 views

HappStack event files

I am developing a game and chose Happstack for the persistence part. I find it quite easy to use, i made a quick example for myself to understand it: getAllObjects :: MonadIO m => m [Thing] ...
1
vote
2answers
101 views

How to exit from Hackstack Server App?

I'm creating a Happstack server application, but I don't know how to end the application . If I have: main = do printf "begin server" simpleHTTP nullConf myHomepage printf "end server" I can ...
1
vote
1answer
155 views

Haskell Monads msum in HappStack

From http://happstack.com/docs/crashcourse/HappstackState.html When I run the server, the peek counter increases by 1 when I peek 2 when I do not peek The relevant code in question is: handlers ...
0
votes
1answer
29 views

Run HAppStack app withot cabal

I'm trying out HAppStack. I installed HAppStack and created a project: happstack new project web. New folder 'web' created with project guestbook under it. So now I want to run it. The only way I ...
0
votes
1answer
36 views

Finding a working Happstack / Heist example

I would like to start using Haskell to build web sites, and think that Happstack, Heist, and Web-routes would be a good combination. Unfortunately, I cannot find working code. The crash course ...
0
votes
4answers
145 views

Why is web routing not always automated?

What is the purpose of manual web routing? Why doesn't everyone just automatically map between URLs and module/method/function names? I would argue that you can start with fully automatic mapping, ...