Wednesday, January 28, 2009

MQ Port Scan v1.0.0

Hi ,
MQ Port Scan v1.0.0 version released , there main intention is we can scan a range of ports for given Queue manager, MCA at particular IP address ,and makes successfull connection. The input is Ipaddress or host name so that it can search ports of particular IP for successful connection.
check it out link
http://www.capitalware.biz/open_source.html

Servlet 3.0 Public Review Updates

Hi,
Servlet 3.0 came to public review , Here are some highlights

1) Annotation based notations
for ex:
@WebServlet(name="k",urlPatterns="kk",initParams={"l"})
public class newServlet extensd HttpServlet
{

}
you can have filter also have annotation @ServletFilter
instead of having Entries in web.xml file.

2)Asynchronous Support:
Servlet can wait for a particular resources(JDBC,WebService etc) asychronously.
3)Secuirty Feature:
HttpServletRequest and HttpServletResponse having feature like Login ,when ever request comes automatically forwading to Login Page and as like Logout feature.

Tuesday, January 27, 2009

Eclipse Modelling Framework(EMF)

Hi ,
There is a open source framework called Eclipse Modelling Framework(EMF). EMF is basis for so many IBM websphere products. Through this framework we can develop a graphical model ,so that we can generate code from that model.If any change occurs we can easily modify the graphical item and regenerate code. As good example is we can create UML models and can generate the code.

check the link
http://www.ibm.com/developerworks/library/os-ecemf1/

Thursday, January 22, 2009

JBOSS RESTEasy 1.0 GA Released

Hi ,

JBOSS RESTEasy 1.0 GA is a framework for developing the RESTFUL web services in java .It is having feature with integration of spring framework also.Its supports o specification of JAX-RS.


check it out here

 http://www.jboss.org/resteasy/


Tuesday, January 20, 2009

Which Framework to use?

Hi ,

There are lot of web frameworks availiable in the world.So which frame work to use mainly depends on the type of application.As Java developer i prefer Spring frame work.Because it has many dynamic components such as AOP(Aspect Oriented Programming),Dependecy framework when compared to typestary,strurts frameworks.In Spring you have advantage of what you want you use and left it out what u dont want !!

Even Now Spring comes with OSGI implementation,etc like todays world there lot of dynamic things are coming to Spring , One more point is u can integrate with other frameworks also important feature of Spring !!

check it @ www.springsource.org

Wednesday, January 14, 2009

Spring Sorurce tm server

Hi ,

Till now we have seen so many web servers like tomcat etc and application servers ex weblogic,websphere.Difference you knows tomcat is very light and very fast container ,but only problem is not behaves like an application server. Now "Spring Source tc Server" is a tomcat server with all capabilities like what it does for weblogic,websphere etc ,very fast .we can deploy all the ear files into new tomcat server.Now is it require any websphere or weblogic or any other application servers?
Now this product is going to be in Market .Let us warm welocme another light weight product !!!

Here is the link check it out

http://www.springsource.com/products/suite/tcserver

Monday, January 12, 2009

Jar Analyzer

hi,

Jar Analyzer tool is dependency management tool , what it does for us is ,

it will go through directory of ur jars,and analysis the dependecy between


different jars and tell us the relationship ,duplicates between jars in a map.

Check it out Here

www.code.google.com/p/jaranalyzer/