@TeriRadichel | Cloud. Security. Software.

Notes. Code. Cloud. AWS. Security. Automation. Databases. Bugs. Error Messages. No Guarantees.

Sunday, November 21, 2010

Postini, IMail, SSL/TLS

›
Here's a run down on setting up Postini with IMail. Really quick...disclaimer in case of error but here are my notes... Postini You prob...
Monday, November 01, 2010

Skip Tests Running Maven Install From Command Line

›
mvn -Dmaven.test.skip=true install

JDK version - Eclipse, Maven

›
Do you know what compiler Maven is really compiling with when you choose "install"? I am able to get a project in Maven-Eclipse-Pl...
Tuesday, October 05, 2010

Securing Encryption Keys

›
I see a lot of articles about encryption but not a lot of information about protecting encryption keys. What good does encryption do if some...
Saturday, July 17, 2010

Self Signed Certs in IIS 7

›
Nice job of expaining how to set up a self-signed cert in IIS 7. Self-Signed certs in IIS 7
Sunday, July 11, 2010

Maven Mysteries - Generics and Compiler Issues

›
Maven by default compiles code with a lower compiler version than 1.5 which has support for generics. Today I was programming along when sud...

Classloaders In Depth

›
Digging into the details of classloads has been on my list of research items for a while. I understand the concepts and the implications - w...
Saturday, July 10, 2010

Strange Network / Web Site behavior

›
Something very odd happened when I transferred web sites from one network to another, and view them using one particular network provider. I...
Tuesday, June 29, 2010

Database restore script - roles, users, permissions and schemas

›
I noted some code for creating some database roles and assigning users to them the other day. Here's a more extensive script that can be...
Saturday, June 12, 2010

The statement did not return a resultset - bug: MS JDBC driver + SQL Server 2000

›
There is a bug that has been driving me insane. I thought I was doing something wrong but apparently it's a bug in Microsoft SQL Server ...

The Resultset has No Current Row

›
If you get this error using Microsoft JDBC driver to return records as a ResultSet: The ResultSet has no current row ResultSet rs = getResul...
Saturday, May 29, 2010

Java Map Collection Classes

›
Choosing the right collection class has an impact on the performance of your application. In a previous post I gave a run down of Big O Nota...
Sunday, May 23, 2010

AJAX Attack Surface

›
I have read articles stating Ajax *supposedly* does not increase the attack surface of a web application. Whether or not that statement is t...

Files Altered On Web Request

›
Just experienced strangeness with JavaScript in browser which has various maintenance and security implications. While testing a web site us...
Tuesday, May 18, 2010

Generic Ajax Request

›
Here's a generic way to create an AJAX request (AJAX code below being JavaScript): function createRequest(){ request=null; try{ re...

Remove file association with .lnk files in Windows 2008

›
Why Microsoft allows you to change all .lnk files to be associated with Notepad in Windows 2008 (or any other OS for that matter) I'll n...
Saturday, May 08, 2010

Jetty 503 - Service Unavailable

›
This is the type of programming issue that could drive one insane. For some reason, suddenly getting 503 error in Jetty running Jetty Maven ...
Thursday, May 06, 2010

error reading /root/.m2/repository/javax/jms/jms/1.1/jms-1.1.jar; error in opening zip file

›
So I'm working away minding my own business and suddenly code that has been compiling stops compiling without any changes to the configu...
Wednesday, May 05, 2010

Asynchronous HTTP Requests

›
Informative article on Asynchronous HTTP requests. Asynchronous HTTP Requests Ah...but custom protocol handlers...ugh. Checking out Jetty as...

Cold Fusion Number Precision Problem

›
From some tax documentation I am reading for Sales Tax Online web tax calculation component: "You may encounter a precision problem for...
Monday, May 03, 2010

Chinese Jar Missing

›
Hmm. What is this all about. Problem processing jar entry com/ibm/icu/impl/data/LocaleElements_zh__PINYIN.class Suddenly started appearing w...
Friday, April 30, 2010

Referencing Jar from Maven not in local Repository

›
If you want to use a jar but not install it in your local Maven repository this seems to work: Set scope to system. Then point to the jar in...
Saturday, April 24, 2010

JDBC Connection Pool - Minimalist Options

›
Revisiting database connection management. I took a look at C3P0 which is an open source JDBC driver and looks pretty simple to use. The on...
Tuesday, April 20, 2010

Use Maven Jetty Plugin in Eclipse

›
I wanted to run Jetty in Eclipse so I can write code, debug, test, etc. Ran into some issues. Solution here. Add Jetty plugin to your pom fi...

SQL Server Permissions

›
Had an interesting issue after restoring a database to SQL Server 2008 database server. None of the users could select from any tables. When...
Monday, April 19, 2010

Run Batch Files with Cold Fusion

›
For some processes that use batch files to execute scripts related to processing builds, database imports, data syncs, etc. We also want to ...
Friday, April 16, 2010

Backup and Restore SVN Repository

›
Basic command for backing up SVN repository: svnadmin dump repositorypath > backupname.svn More on backups at: Back up SVN Repository To ...
Thursday, April 15, 2010

Truncate SQL Server Transaction Log

›
USE DatabaseName GO DBCC SHRINKFILE(<TransactionLogName>, 1) BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY DBCC SHRINKFILE(<Tr...
Wednesday, April 14, 2010

Role Management Tool in Windows 2008

›
If you search for "Role Management Tool" for Windows 2008 on Microsoft.com, chances are you won't find what you seek. If you g...
Monday, April 12, 2010

Java Development Environment for Windows

›
Since I'm setting up Java software development Environment, thought I would document parts of the process for any potential new Java pro...
‹
›
Home
View web version
Powered by Blogger.