Categories
Archives
- January 2012
- December 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- December 2010
- November 2010
- August 2010
- January 2010
- December 2009
- August 2009
- July 2009
- June 2009
- May 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- April 2008
- March 2008
- February 2008
- December 2007
- November 2007
- October 2007
- September 2007
Category Archives: Troubleshoot
java.io.NotSerializableException
I was getting this error today during writing a program java.io.NotSerializableException: com.xxxx.xxx.xxx.thunderhead.Project at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1156) at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326) at java.util.ArrayList.writeObject(ArrayList.java:570)
Posted in Java, Troubleshoot
Leave a comment
How to read Blue Dump’s (BSOD) Minidump file
From couple of weeks in my brother’s machine he was getting Blue Dump screen with message “DRIVER_IRQL_NOT_LESS_OR_EQUAL”. Today to investigate I asked him to pass me the minidump files. Minidump are file that windows write for debugging purpose at below … Continue reading
XStream: Cannot parse date
I was sending date “06-14-2011″ in XML request, during it’s processing i got this parse error Cannot parse date 06-14-2011 com.thoughtworks.xstream.converters.basic.DateConverter.fromString(DateConverter.java:97) this is because Xstream by default don’t handle MM-dd-yyyy format. So we need to add one in order to … Continue reading
Mainframe CICS DB2 : java.lang.NoClassDefFoundError: com/ibm/crypto/provider/IBMJCE
I was trying to access Mainframe () DB2 using standalone application with “com.ibm.db2.jcc.DB2Driver” driver where I encountered the below error java.lang.NoClassDefFoundError: com/ibm/crypto/provider/IBMJCE Problem was that ibmjceprovider.jar was missing from my classpath and java.security file I added the jar file and … Continue reading
Posted in Articles, DB2, Java, Troubleshoot
Leave a comment
DB2 SQL error: SQLCODE: -204, SQLSTATE: 42704
SQLCODE -204 is "object does not exist". I was getting this error while executing a query, this was happening because I was using the SCHEMA name of Q7 database and executing the query inside Q0 db. means not able to … Continue reading
Posted in DB2, Java, Troubleshoot
Leave a comment
Firefox 3.5+ : Tooltip Blank Bug
In case you're seeing blank tooltips in Firefox, please uninstall and reinstall the latest version of Toolbar from the Toolbar homepage: http://www.google.com/toolbar It will resolve the issue. Thanks,
Posted in Troubleshoot
Leave a comment
SVN Cleanup fails – how to resume
Today I was trying to cleanup a project, I got error. I tried deleting the log file in the .svn directory and I also deleted the offending file in .svn/props-base then did the cleanup. It works and I resumed my … Continue reading
Posted in HowTo, Troubleshoot
Leave a comment
HowTo Get RID of Just-In-Time debugger
I installed Visual Studio, and with this it installed a Just-In-time script debugger .This Just-In-Time seems to come up all the time when I run Internet Explore and on each page of IE. Solution Open Start>Control Panels>Internet Options: Advanced and … Continue reading
Posted in HowTo, Troubleshoot
Leave a comment
java.security.NoSuchAlgorithmException: No implementation for AES/CBC/NoPadding found
Hi, From past few days I and my few team members were getting the following error during LDAP authentication: javax.net.ssl.SSLException: Algorithm missing: at com.sun.net.ssl.internal.ssl.SSLSocketImpl.f(DashoA12275) at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA12275) at com.sun.net.ssl.internal.ssl.SunJSSE_az.j(DashoA12275) at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA12275) at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA12275) at … Continue reading
Posted in Java, Troubleshoot
Leave a comment
HSQLDB : java.sql.SQLException: Access is denied in statement [SELECT * FROM TBALE]
This error appears when you have not specified required privileges to user in SCRIPT file for running the statements. Use the commands as follows just after user creation grant access as DBA like below: CREATE USER SA PASSWORD "" GRANT … Continue reading
Posted in Database, hsqldb, Java, Troubleshoot
Leave a comment