securitycentric.com
SecurityCentric.com - Blogs
http://www.securitycentric.com/blogs.cfm
Http:/ blogs.msdn.com/shawnfa/default.aspx. Http:/ www.411-spyware.com. ABQORDIA - Thoughts on security and society. Http:/ abqordia.blogspot.com/. ABQORDIA - Thoughts on security and society. Adobe Product Security Incident Response Team (PSIRT). Working to help protect customers from vulnerabilities in Adobe software. Http:/ blogs.adobe.com/psirt/. Adobe Product Security Incident Response Team (PSIRT). Advanced Perimeter Systems Blog. Http:/ www.aps-perimeter-security.com/blog/index.htm. Http:/ billpst...
myjavaroom.blogspot.com
Java Room: December 2009
http://myjavaroom.blogspot.com/2009_12_01_archive.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Friday, December 11, 2009. JBoss Seam Excel Implementation - Part 2. In my previous post JBoss Seam Excel Implementation. Library. For futher information please refer to. In the examples below show how to use Formulas and Format Masks in Excel worksheet. 1) Formulas: Dynamic Sum of Selected Cells. Javaxn...
myjavaroom.blogspot.com
Java Room: Hibernate Batch Processing and Bulk Update/Delete
http://myjavaroom.blogspot.com/2010/01/hibernate-batch-processing-and-bulk.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Wednesday, January 6, 2010. Hibernate Batch Processing and Bulk Update/Delete. Last few days, I was working on a system, which require a housekeeping function to clean the system database. According to the hibernate documentation :. Statement execution which are performed through EJB-QL ". In my database...
myjavaroom.blogspot.com
Java Room: Using "IN" clause in EJB-QL
http://myjavaroom.blogspot.com/2010/01/using-in-clause-in-ejb-ql.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Monday, January 25, 2010. Using "IN" clause in EJB-QL. In the below example, the query return NO results. The EJB-QL cannot understand multiple input parameters. String ejbql = "SELECT task FROM Task task WHERE task.role IN (:=roles)";. Query query = entityManager.createQuery(ejbql);. QuerysetParameter("...
myjavaroom.blogspot.com
Java Room: Seam and Drools integration in jBPM
http://myjavaroom.blogspot.com/2010/01/seam-and-drools-integration-in-jbpm.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Thursday, January 7, 2010. Seam and Drools integration in jBPM. Recently I am developing a workflow collaboration system which will using JBoss Rules in. JBPM process definition. The example below is documented during my testing and understanding of Drools integration with jBPM in Seam Framework. Drools:...
myjavaroom.blogspot.com
Java Room: October 2009
http://myjavaroom.blogspot.com/2009_10_01_archive.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Friday, October 30, 2009. Implementation of JFrame Component in SSO Environment without JNLP. Implementation of JFrame Component in SSO Environment without JNLP. After implemented CAS SSO in my JBoss Seam web application, the dynamic generated JNLP used to launch. Java print component is not working.
myjavaroom.blogspot.com
Java Room: Troubleshooting for CAS SSO and JBoss SSL Configuration
http://myjavaroom.blogspot.com/2009/12/troubleshooting-for-cas-sso-and-jboss.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Friday, December 4, 2009. Troubleshooting for CAS SSO and JBoss SSL Configuration. Command errors found during CAS SSO implementation on JBoss. Redirect Loop after login to CAS server. At sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:285). At com.sun.net.ssl.internal....At com.su...
myjavaroom.blogspot.com
Java Room: November 2009
http://myjavaroom.blogspot.com/2009_11_01_archive.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Sunday, November 15, 2009. CAS SSO Configuration using JDBC Authentication in JBoss. The CAS SSO and JBoss-4.2.3.GA integration is very simple. Rename the cas-3.3.x.war to cas.war. Configure the CAS SSO authentication using JDBC authentication(refer to the steps below). Configure the Password Encoder.
myjavaroom.blogspot.com
Java Room: JBoss Seam Excel Implementation
http://myjavaroom.blogspot.com/2009/10/microsoft-excel-spreadsheet-in-jboss.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Monday, October 26, 2009. JBoss Seam Excel Implementation. 2) Configure DocumentStore servlet in web.xml. Servlet-name Document Store Servlet /servlet-name. Servlet-class org.jboss.seam.document.DocumentStoreServlet /servlet-class. Servlet-name Document Store Servlet /servlet-name. Xmlns:f="http:/ java&#...
myjavaroom.blogspot.com
Java Room: January 2010
http://myjavaroom.blogspot.com/2010_01_01_archive.html
My R&D notes to record the difficulties and solution I found during my web application development in J2EE, Java, JBoss, Seam, CAS SSO, JBoss Rules, Lucene, iText, Remoting, Ajax, JSF, Richfaces and etc. Tuesday, January 26, 2010. Injected Seam Component is NULL in EntityQuery. Public class UserTaskList extends EntityQuery {. Private User authenticatedUser;. System.out.println("authenticatedUser = " authenticatedUser);. SetEjbql(ejbql.toString() ;. Factory(value="taskList", scope=ScopeType.EVENT). System...