Syndicate content

shlomo 08/03/2010 - 08:39
HI, For a client I am using the following configuration: 1-An OpenDS server version 2.2 2-An...

there is a list of C# Programming Tools from MSDN(!) site

http://msdn.microsoft.com/en-us/vcsharp/aa336818.aspx

 

It refers to open source as well as MS products.

Mono, NUnit, NAnt in the list.

 

Particulary it lists alternative IDEs - SharpDevelop  and QuickSharp

igorz 24/02/2010 - 13:43

I need a recommendation on "light" in-memory database for small groovy web-application.

 

Thanks!

liya 03/03/2010 - 14:23

Hi
We have a customer request for secured JMX monitoring ,a nd they are very strict on security.
the requirenments are:
JMX agaent can be accessed from the local machine only using tools like Nagios or jmxterm.
should be password protected.
should not expose any open post on the local network.

if we configure JMX with jmi connector and password authentication the the rmi port is available on the local network and a clever hacker can break it. of course one solution can be to block this port with a local firewal or some other way to block the port for access from outside the machine.

if we use the Attach API to start and access the JMX agent the password authentication is not available.

so the question is: what is the way to enablr JMX monitoring from the local machine only with password authentication and no port exposed to the local network.

Thanks.

shalom 07/03/2010 - 16:54

http://ptrthomas.wordpress.com/2009/01/14/seam-jsf-vs-wicket-performance-comparison/

 

The blog post compares the performance and memory footprint of Wicket vs JSF+Seam by implementing one of seam examples in Wicket. 

 

Bottom line: Wicket is a clear winner.

 

The author has other implementations, including for tapestry, grails and wicket with groovy / scala: http://code.google.com/p/perfbench/ (anyone up to writing a django implementation?)

 

Regarding Scala vs. Java, here's the same wicket page in Scala and Java:

ittayd 04/03/2010 - 23:31

Has anybody tried this annotation. I can't get it to work.

Despite some complaints from other people, official response on the problem - it work, there are unit tests... or can not reproduce...

 

tigor 25/02/2010 - 15:03
/**
 * Hello world!
 *
 */
public class App 
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
    }

    public int add(int x, int y) {
        return x+y;
    }
}

 

hagzag 09/03/2010 - 18:57

I am writing Grails application and using Acegi plugin for grails application.

Acegi security seems to be determined to create SQL statement using "username" as a name of the field responsible for a username. In addition Acegi adds a few more "predefined" fields.

How can i specify different name for a username field ? and other fields ?

Thanks

tigor 08/03/2010 - 14:37

 I gave last week a talk on Non-relational databases in general & Cassandra in particular. Focussed on the advantages & cost/implications, to assist organizations in making a smart choice.

 

Posted the slides here:

http://www.slideshare.net/dibau_naum_h/nonrelational-databases-3328461

 

The last couple of slides contain links for great resources for further learning.

udib 08/03/2010 - 11:39
No explanations needed - just watch this video if you can spare the time ... (video embedded in full post view)
hagzag 06/03/2010 - 10:09

 Sometimes, during nightly build, packaging or deployment there's a need to retrieve remote files or control a remote machine. Doing this through ssh is tricky. A common tool to use is 'expect', but it is unixy and requires knowing Tcl.

 

The enchanter tool (http://code.google.com/p/enchanter/) can be used instead. From the site:

ittayd 04/03/2010 - 10:58
ssh