Tagged Questions

The Nitrogen Web Framework is a framework for building full-stack Erlang web applications.

learn more… | top users | synonyms

12
votes
4answers
2k views

What is your experience with Nitrogen on Erlang?

I've been checking out the Nitrogen Project which is supposed to be the most mature web development framework for Erlang. Erlang, as a language, is extremely impressive. However, with regards to ...
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 ...
4
votes
1answer
413 views

How to connect Nitrogen with Couchdb using Ecouch

I don't understand how to make a connection with nitrogen and couchdb using ecouch, because I have a error on this connection CAUGHT ERROR: error-undef [{ecouch,db_info,["test_suite_db"]} I put ...
4
votes
2answers
167 views

Unflash a message with Nitrogen

I have a login page for my Nitrogen based web app. If user authentication fails I wf:flash a message to the user to let them know. However if the user continues to supply bad credentials these flash ...
3
votes
2answers
72 views

How to use html lists in Nitrogen

I would like to create an html list in Nitrogen but can't figure out how to do it. Basically I want to output: <ul> <li>One</li> <li>Two</li> </ul> I found ...
3
votes
1answer
69 views

Counting number of Hits on yaws web application

if i have a web application running from a yaws web server, how would i count the number of hits from users to my site? I have tried to use rudimentary methods of counting the number of lines in the ...
3
votes
2answers
219 views

Nitrogen - Dynamically creating Events

I am a beginner with Erlang/Nitrogen. I am toying with a bidding system back by a mnesia db. On my index page I have the following code and the various items and their properties get created ...
3
votes
0answers
275 views

Nitrogen (Erlang web framework) file upload and validators on other form elements

I have an #upload element together with a #textarea element. When a user presses the button to upload the file the #textarea also gets posted and I can receive it with wf:q/1 in the ...
3
votes
1answer
224 views

How to get Peer IP Address in Nitrogen

Is is there a built in function in nitrogen framework to get Peer IP address? If not, is there a way to get the IP address of peer which is making to request to Nitrogen App
2
votes
0answers
184 views

Mnesia Fragmentation and replication: resultant availability and reliability

Following the solutions to the question i asked recently about mnesia fragmentation, I still have a number of challenges. Consider the following scenario (The question I am asking is based on what ...
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
1answer
251 views

Working with Emails (POP3, IMAP, SMTP e.t.c) in Erlang?

How can one handle email related communications pragmatically in Erlang/OTP? Using bash, python or Perl scripts, its possible for one to send out emails. However, in Erlang, i have not yet found an ...
2
votes
0answers
285 views

running and testing ejabberd on localhost?

I have installed ejabberd on my HP pavilion (Entertainment laptop running windows 7), during the installation i was prompted to enter the server domain. Since i wanted to experiment on it, i entered ...
2
votes
1answer
244 views

Including the Erlang client library from Riak in Nitrogen

i'm just starting up with a web app using nitrogen and everything is going well. But i also want my app to interface with a riak db that i set up and i'm having some trouble. I'm confused as to ...
2
votes
3answers
219 views

How to keep track of a process per browser window and access it at each event in Nitrogen?

In Nitrogen, the Erlang web framework, I have the following problem. I have a process that takes care of sending and receiving messages to another process that acts as a hub. This process acts as the ...
2
votes
1answer
368 views

What is the correct usage of the Nitrogen Auth API?

Just wanting to confirm the usage of the Nitrogen Authentication and Authorization API. The description of the API is: wf:user() -> User or 'undefined' Return the user value that was previously ...
1
vote
2answers
68 views

HMAC SHA256 hex digest of a string in Erlang, how?

I am trying to interact with third party real time Web messaging System created and maintained by Pusher.com. Now, i cannot send anything through the API unless i produce an HMAC SHA256 hex digest of ...
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
1answer
107 views

Validation in erlang using nitrogen

I'm trying to do something simple with nitrogen in erlang. I have successfully set validation on text fields: wf:wire(submit, desk, #validate{ validators=[ #is_required{text="Required"} ]}), where ...
1
vote
2answers
235 views

How do I use Nitrogen as a GUI frontend for an Erlang app?

I have got a basic server-side Erlang app (not fully OTP'd yet) which I start on a command-line. I want to turn it into an interactive system using a browser as GUI with Nitrogen (version 2.0.4). The ...
1
vote
2answers
203 views

Starting nitrogen (erlang)

I need some help starting nitrogen 2.1 This document (http:// nitrogenproject.com/doc/index.html) tells me to run ./deps/get_mochiweb.sh - but the deps folder contains no such script ls ...
1
vote
1answer
145 views

Nitrogen session

In all my nitrogen pages i use the following semantic : main() -> case wf:user() /= undefined of true -> main_authorized(); false -> wf:redirect_to_login("/login") end. When the ...
1
vote
2answers
93 views

How to route translated URLs to a module with nitrogen

I used to develop in English, but this time, the webApp i'm building is only for people in my city, which is in France. In nitrogen, when you call "/user/login", nitrogen calls user_login:main(). I ...
1
vote
1answer
379 views

How can an ejabberd newbie setup a fully functioning ejabberd server?

i am completely new to ejabberd. I have downloaded the installation for both windows and linux (Ubuntu). Somewhere on the web i had seen a demo of how to install and set it up but the installation was ...
1
vote
1answer
259 views

Nitrogen Project COMET

Would Nitrogen Project's COMET be comparable to ejabberd's xmpp in stability and amount of open connections it can hold? I'm interested in seeing how much of a load Nitrogen can hold. If anyone has ...
1
vote
0answers
142 views

Couchdb and Nitrogen

How to add Key/value pairs to existing couchdb document through nitrogen web framework? ecouch:doc_update(DBName,DocId,DocValue) is not returning true when I was trying to implement.
1
vote
1answer
103 views

How do I get pages like src/pages/myrootpage.erl to show up at http://mysite.org/myrootpage using nitrogen?

Nitrogen does not seem to like pages being at the root url path, only addon paths like /web/ is there some way to get pages to show up at the root url like /mypage ?
1
vote
1answer
66 views

Two quick consecutive calls to wf:insert_bottom end up in the reverse order

Using Nitrogen, the Erlang web framework, I have the following method that receives messages and adds them to the bottom of an html element: receive_messages() -> receive Message -> ...
1
vote
2answers
220 views

Are events always run in the same process in Nitrogen?

I'm taking about event function in Nitrogen, the Erlang web framework, in a web module that is run when you get a postback. Does event always run in the same process for the same web client (that is, ...
1
vote
1answer
178 views

How do you unwire an action in Nitrogen?

In Nitrogen, the Erlang web framework, you wire actions like this: wf:wire(send_message, #event { type=click, postback=send_message }) but if after that you run wf:wire(send_message, #event { ...
0
votes
2answers
82 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
2answers
70 views

Using Apache mod-proxy with Erlang Nitrogen

I have a CentOS box running a number of web applications and I use Apache to proxy requests to the various applications. All of them are working except an Erlang Nitrogen application which I can't ...
0
votes
0answers
79 views

Mnesia Backup in large systems

In our setup, we found that issuing the following backup call with mnesia:backup_checkpoint(Name, Opaque, [Mod]) is more expensive as compared to this one: (mnesia:backup(Opaque, [Mod])). The issue is ...
0
votes
1answer
116 views

lists:append/2 versus erlang:'++' /2, appending to end of list Versus appending to its Head

Of the two given pairs of comparisons, Which one (of each pair) is more expensive to System Resources in Erlang: Qn1: lists:append(L1,L2) versus erlang:'++'(L1,L2) Qn2 Writing to the head of a list ...
0
votes
1answer
39 views

OTP14B02 configure error

I have tried to install OTP14B02 on OpenSolaris and i get the following error at calling ./configure: muzaaya@opensolaris:~/Desktop/software and data/otp_src_R14B02# ./configure Ignoring the ...
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
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
100 views

Nitrogen: changing targetID breaks lightbox

I'm using Nitrogen & lightbox. I'm looking for some guidance after spending way too long trying to understand why a working example breaks as soon as I change the targetID of a lightbox. The ...