MochiWeb is an Erlang library for building lightweight HTTP servers.

learn more… | top users | synonyms

0
votes
2answers
1k views

Simple JSON request with cURL to Mochiweb

I have a very simple 'hello world' Mochiweb server (I just started my introduction into it), which takes a JSON request and sends it back: 'POST' -> case Path of ...
1
vote
1answer
91 views

An error with Erlang router

I try to make a comet-server using Mochiweb like there. If I do it from erlang shell, it's alright. But If try to start 1st node with mochiweb from command line: erl -pa ebin edit deps/*/ebin -boot ...
1
vote
1answer
247 views

Erlang Front-End Admin Panel

We're looking for a framework in which we can assign multiple roles to different users and allow those users to in turn manipulate certain data (based on their role). We have an ejabberd backend and ...
1
vote
1answer
480 views

How to enable active sockets in a Mochiweb application?

Does anyone know how to enable active instead of passive sockets in a Mochiweb application. Specifically, I am trying to adapt ...
0
votes
1answer
229 views

Can not connect to websocket server using websocket4net

I have a mochiweb as websocket server; connectivity using javascript from Chrome browser as ws client went smooth (open, send message, close). However, when I tried to connect from C# using ...
0
votes
1answer
90 views

Does mochiweb can play m3u8 stream?

I use lighttpd to play http live stream, it works well. I want to use mochiweb to play it in order for high performance, is it feasible ?
0
votes
1answer
148 views

How does one set the auto-logout time in mochiweb?

I'm looking at the source code for mochiweb and seeing numbers that test cookie expiration time that look nothing like the behavior of the server that I've inherited. mochiweb has 111 and 86417 (a ...
0
votes
1answer
186 views

non-http in mochiweb

I am using mochiweb for a server that may also get a TCP connction to which the client sends a simple string (without a newline, the string is not http). Mochiweb uses HTTP sockets and therefore fails ...
1
vote
0answers
81 views

erlang error_logger handler disappeared unexpectly

I have a mochiweb based application. I specified -kernel error_logger '{file, "mylog.log"}' while starting the application, after running for a while, error_logger won't output anything. When the ...
0
votes
0answers
85 views

Mochiweb + web2py/apache

I'm still figuring out how all the gritty details of a server works. I am using web2py and automatically deploying it (with the web2py install scripts) with apache and wsgi. Ideally on the same ...