Active Posts

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

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

HI,
For a client I am using the following configuration:
1-An OpenDS server version 2.2
2-An OpenLDAP client (the Novel libraries)

Both are very easy to use.

There is a need to query the LDAP server for information such as password expiration time, number of failed logins etc. This information is readily available by using a command line interface which is provided by OpenDS : https://docs.opends.org/wiki/Diff.jsp?page=HowToManageUserAccounts&r1=20...

For instance to get the failure time one would invoke:

 

<code>
manage-account get-authentication-failures-times \
--targetDN "uid=kvaughan,ou=People,dc=example,dc=com" \
--hostname localhost --port 1389 \
--bindDN "cn=Directory Manager" --bindPassword password

 

shlomo 08/03/2010 - 08:39

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

 

Thanks!

liya 03/03/2010 - 14:23

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

I need something that creates symbolic link aka shortcut on Windows.

Code below creates symbolic link on Linux

<code>

Runtime.getRuntime().exec("ln -s <target> <link>");

</code>

 

Some windows installations can contain linkd.exe/shortcut.exe/xxxlink.exe but some don't.

I need something that will surely work on all. may be JNI and C/C++.

 

 

yuri 09/12/2009 - 14:24

 A recent study measured the productivity of using Python+Django vs. C#+ASP.NET, in terms of user-stories per week. The results are that 1 Django developer is equivalent to 2 ASP.NET developers, productivity-wise:

http://kurtgrandis.com/blog/2010/02/24/python-django-vs-c-asp-net-produc...

 

The Django team that participated in the benchmark, BTW, had no prior experience with Django, which probably implies that the difference can be even higher.

 

 

udib 25/02/2010 - 13:34

Good news for those of you who love working with Notepad++ and work with Subversion!

No need to switch to Explorer for simple SVN actions anymore - there is a Subversion plugin for Notepad++ that should work under Windows XP, Vista, and 7. Both 32 bit and 64 bit operating systems are supported.

Find more information and download it from here

liya 28/02/2010 - 20:36
ALM, svn

Reducing RSL file size

In case you are using third-party libraries you’ll never know if they heard about eclipse's build-release or -debug=false (The compiler excludes the debugging information) but what you can do is extract the SWC file and run the Optimizer on the SWF file. That will reduce those libraries size.

arik 22/12/2008 - 12:33