Friday, June 19, 2009

Important links related to Java

Command to start netbeans with reserved memory space(RAM)
-netbeans -J-Xms256m -J-Xmx512m


XML Tutorial
- http://www.devguru.com/Features/tutorials/XML/beginning_xml.html

CVS tutorial
-http://ximbiot.com/cvs/wiki/index.php?title=CVS--

XML TUTORIAL
- http://odl-skopje.etf.ukim.edu.mk/uml-help/

Managed Bean to Managed Bean Communication in JSF...
import com.sun.faces.util.Util;
import javax.faces.context.FacesContext;
import javax.faces.el.ValueBinding;

FacesContext ctx = FacesContext.getCurrentInstance();
ValueBinding binding= Util.getValueBinding("#{planDetailBean}"); // EL that gets instance of another bean
MBean mbean = (MBean) binding.getValue(ctx);
mbean.details(objectId.getId());

HTML QUICK GUIDE
-http://www.pagetutor.com/common/barebones/barebone.html

KILLING AN APPLICATION USING ITS PID
list all processes(pid) run by the particular user, using this command-
ps -u
kill the application using the above pid, The command is-
kill

LEARN AJAX IN 20 MINS
-http://www.sematopia.com/?p=34

AJAX-JSF
-https://bpcatalog.dev.java.net/ajax/jsf-ajax/

AJAX-JSF Example
-http://www.oracle.com/technology/pub/articles/cioroianu_jsfajax.html

CORE JAVASITE WITH SLIDES
-http://www.ldodds.com/lectures/intro2java/

GOOD LINKS FOR JAAS
-http://manuals.sybase.com/onlinebooks/group-eag/eag0400e/eassec/@Generic__BookTextView/6046;pt=6419

http://java.sun.com/j2se/1.4.2/docs/guide/security/jaas/JAASRefGuide.html
http://dev2dev.bea.com/lpt/a/221
http://www.pramati.com/docstore/1270002/index.htm

J2EE IMPORTANT LINK
-http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/DEA2eTOC.html

Servlet Filter example with code
-http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html

J2EE Documentation
-http://java.sun.com/javaee/5/docs/api/

NETBEANS TUTORIAL
-http://www.javapassion.com/sdwest2006netbeans/

LDAP - lightweight directory access protocol
PAM - Pluggable Authenticatin Module

http://www.oracle.com/technology/sample_code/tech/java/j2ee/javacookbook/index.html
https://bpcatalog.dev.java.net/ajax/jsf-ajax/