Tagged Questions

MochiWeb is an Erlang library for building lightweight HTTP servers.

learn more… | top users | synonyms

9
votes
2answers
1k views

When to use gen_server in Erlang/OTP applications

Having read Joe Armstrong's book and watched Kevin Smith screencasts I've built a simple OTP application comprised of a single gen_server and single supervisor, bundled together as an OTP application. ...
6
votes
1answer
631 views

Erlang : Tuple List into JSON

I have a list of tuples which are http headers. I want to convert the list to a JSON object. I try mochijson2 but to no avail. So I have the following : ...
5
votes
3answers
266 views

Detecting HTTP close using inet

In my mochiweb application, I am using a long held HTTP request. I wanted to detect when the connection with the user died, and I figured out how to do that by doing: Socket = Req:get(socket), ...
5
votes
3answers
2k views

Where does Nitrogen get the best performance - yaws, mochiweb, or inets?

The Nitrogen project web page declares equal support for yaws, mochiweb, and inets, but with which of these web servers is it going to perform the best? I.e. for a large scale application with mostly ...
5
votes
2answers
604 views

Mochiweb Port 80

I am attempting to run BeepBeep through Mochiweb on Port 80. It works if I type sudo ./start_server.sh. Are there any security risks with running Mochiweb like this? If so how to remedy? Thanks!
4
votes
1answer
373 views

JSON-encode a list using mochiweb

I need to JSON-encode a list using mochiweb. How do I get the following: List = ["This is message 1.", "This is message 2.", "This is the last message"] ...
4
votes
1answer
257 views

Long Polling in Mochiweb - How to tell if client aborts request?

I have a basic mochiweb polling loop that looks like the following, except it does other things instead of printing to the console and eventually returns: blah() -> io:format("Blah") blah() ...
4
votes
1answer
2k views

mochijson2 or mochijson

I'm encoding some data using mochijson2. But I found that it behaves strange on strings as lists. Example: mochijson2:encode("foo"). [91,"102",44,"111",44,"111",93] Where "102", "111", ...
3
votes
1answer
374 views

Webmachine with http and https?

What is the recommended way of getting https working with webmachine? I see that there is an example for getting mochiweb working with https and http. I just can seem to translate that to webmachine. ...
3
votes
1answer
205 views

Reading in Erlang the body of a HTTP request as it is received

I've been looking into Mochiweb, but I can't find a way to read the body while I'm receiving the request through the socket. I'm not limited to Mochiweb, any other HTTP library would be good for me. ...
3
votes
2answers
634 views

Erlang Facebook Example

Does anyone know of an example facebook app (or facebook connect app) done in Erlang? I'm looking for something that includes the whole process. Specifically I don't seem to find anything on user ...
2
votes
1answer
122 views

XForwardedSupport for https play! support on Heroku failing

I am deploying an app on Heroku and trying to determine whether the request coming in is secure (request.secure). This is initially returning false on heroku because nginx handles the SSL work and ...
2
votes
1answer
150 views

how do we efficiently handle time related constraints on mnesia records?

i am writing records into mnesia which should be kept there only for an allowed time (24 hours). after 24 hours, before a user modifies part of them, the system should remove them automatically. ...
2
votes
2answers
327 views

Erlang: How do I allow more than 1024 connection with Mochiweb?

I tried to increase file descriptors max limit on GNU/Linux: $ ulimit -n 999999 and I'm starting the server with -env ERL_MAX_PORTS 4096. Whenever I'm using test util, after 1012-1024 opened ...
2
votes
4answers
2k views

Getting started with mochiweb and Webmachine?

Mochiweb and webmachine are very promising applications when you see how those who have found they're way around them are using it. I need to be directed to where I can find beginners' tutorials on ...
2
votes
2answers
729 views

Mochiweb's Scalability Features

From all the articles I've read so far about Mochiweb, I've heard this over and over again that Mochiweb provides very good scalability. My question is, how exactly does Mochiweb get its scalability ...
2
votes
2answers
1k views

Decode JSON with mochijson2 in Erlang

I have a var that has some JSON data: A = <<"{\"job\": {\"id\": \"1\"}}">>. Using mochijson2, I decode the data: Struct = mochijson2:decode(A). And now I have this: ...
2
votes
3answers
444 views

Mochiweb mnesia requests

I'm trying to link Mochiweb with my ejabberd mnesia db and am unable to do any mnesia transactions in my controllers. I test my controllers without the mnesia transactions and they work fine. I am ...
2
votes
1answer
338 views

what this error means? [Erlang, mochiweb, MySQL]

I made a comet chat server with Erlang and Mochiweb. And I run the "./start-dev.sh" to start the server. But after about 1 month I got the following error: =ERROR REPORT==== 26-Sep-2009::09:21:06 === ...
1
vote
1answer
108 views

Erlang Design Advice regarding HTTP services

I'm new to Erlang but I would like to get started with an application which feels applicable to the technology due to the concurrency desires I have. This picture highlights what i want to do. ...
1
vote
2answers
261 views

Information on 64 bit Erlang? [closed]

Qn 1: What is 64-bit Erlang? , How different is it from 32-bit Erlang? and where can some one find 64-bit Erlang? Qn 2: What are the main performance advantages gained when we move an Erlang ...
1
vote
3answers
363 views

How to test a mochiweb application?

I would like to do high level testing of my mochiweb app, like it is possible to do in Python with WebTest, in Django with the test client and in Ruby on Rails with functional or integration testing. ...
1
vote
3answers
246 views

How to use application:get_env() in Erlang/OTP?

I created a mochiweb instance src/ |-- Makefile |-- room.erl |-- myserver.app |-- myserver.erl |-- myserver_app.erl |-- myserver_deps.erl |-- myserver_sup.erl |-- ...
1
vote
1answer
149 views

Starting two mochiweb servers with a single script file

I have a basic web server that I generated from the mochiweb framework. To start it I use the start.sh script that the framework automatically generates. Everything works fine and the server starts ...
1
vote
1answer
207 views

Mochiweb : Reading a file as it is uploaded

I want to be able to read a file just as it is being uploaded by the user, i.e. I want to read the incoming stream of bytes from the user's browser.. Is that possible with Mochiweb? If not, where do I ...
1
vote
0answers
184 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
3answers
311 views

Mochiweb Log files

Anyone know where Mochiweb logs files by default? I'm running it along with the Beepbeep framework.
1
vote
1answer
360 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 ...
1
vote
2answers
929 views

Exception error: undefined function in Mochiweb/Erlang

After seeing this article, I have been tinkering with mochiweb. While trying to replicate what's done in the article - basically setting up a mochiweb server, having two erlang nodes, and then calling ...
0
votes
1answer
9 views

CouchDB/MochiWeb SSL error

I used CouchDB 1.1.1 with self-signed certs fine for some time. Then, I purchased a SSL cert (in PFX form) for my domain. I converted it to .CER and .KEY via OpenSSL, as described here: How can I ...
0
votes
2answers
83 views

Destroying a Data Structure when program doesnot need it anymore — Erlang

Certain functions that manipulate Tuples in Erlang, result into copies of new tuples after the operation. In most cases, the program is no longer interested in the old tuple copy from which a new one ...
0
votes
1answer
55 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
91 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 ...
0
votes
2answers
226 views

function_clause error in Couchdb 1.1.0 after updating from 1.0.1

I have errors when updating document in Couchdb 1.1.0 after updating it from 1.0.1 Response looks like this: stdClass Object ( [error] => unknown_error [reason] => function_clause ) When ...
0
votes
1answer
82 views

Confused about Nitrogen listen IP address

Am running Nitrogen 2.0.X on Windows 7 Home Premium, HP Pavilion Entertainment PC Laptop. Nitrogen starts with inets and i have failed to change or dictate the IP address of the webserver. Once it ...
0
votes
3answers
147 views

Erlang/Mochiweb newbie question abt clients communication

Everytime the client/browser connects to Mochiweb server, it creates new process of Loop, doesn't it? So, if I want to transfer a message from one client to another (typical chat system) I should use ...
0
votes
3answers
182 views

How to pattern match structures returned by mochijson2?

I've just started tinkering with Erlang and am building a very simple test web application which is just intended to show my twitter timeline. I'm using webmachine to write the app and erlyDTL to ...
0
votes
0answers
145 views

Mining the Social Web (Facebook, Twitter,YouTube,MySpace,Google,Amazon e.t.c) in Erlang/OTP? [closed]

has anyone written or have access to libraries in Erlang that connect to Cloud services such as those of Amazon, Facebook or Youtube (which he can share)?
0
votes
1answer
275 views

Streaming Results from Mochiweb

I have written a web-service using Erlang and Mochiweb. The web service returns a lot of results and takes some time to finish the computation. I'd like to return results as soon as the program finds ...
0
votes
1answer
207 views

Mochiweb debug (like ejabberd debug)

I was wonderng if anyone knows of a way to get into Mochiweb like ejabberd does when you run /sbin/ejabberdctl debug?