Welcome to the Seam(less) Application Starter Project
This is a simple "starter" project called myseamless. The goal of this project is to
give you a simple application structure to start your Seam(less) application development. It contains
everything you need to make your application - seamless.
Message Trace Log
try
{
var type = $("messagetype").value;
var args = $('messageargs');
var value = args.value;
var message = {};
if (value.charAt(0)=='{')
{
message = eval('('+value+')');
}
else
{
message = {message:value};
}
hakano.util.MessageBroker.queue({type: type, data: message});
}
catch (e)
{
alert (e.stack);
}