@TeriRadichel | Cloud. Security. Software.

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

Tuesday, October 13, 2009

Images Not Displaying in Firefox

›
Sometimes what you think is a problem with your web code is due to something completely unrelated. We created a web site and when I added an...
Sunday, October 11, 2009

The Content already has an existing parent

›
If you want to make a new XML Document using JDom from a node in another XML document, you first need to remove that node from the parent XM...
Sunday, September 27, 2009

Big-O Notation

›
Big-O Notation measures the complexity of an algorithm or order of magnitude of the number of operations required to perform a function. In ...
Thursday, September 10, 2009

REST vs. SOAP Web Services

›
I had a request to interview for a contract job using web services. I've recently worked with .NET Web services that were implemented us...
Tuesday, September 01, 2009

Underscores in SQL Server Query

›
Well, learn something new every day. I've been using SQL Server for close to 15 years but I guess I never needed to query for an undersc...
Monday, August 24, 2009

Background Images Not Showing Up in Safari

›
Background images were not showing up in Safari for a particular web site. Further testing indicated that putting content in the cell would ...
Saturday, August 15, 2009

Java Generics List Iterator

›
Example of using Java generics list iterator List<Element> l; for (ListIterator<Element> it = l.listIterator(); it.hasNext...
Sunday, May 24, 2009

Java Encryption

›
Update. DES is not secure. Use AES for symmetric encryption. Most important: do not save keys and data in same location, otherwise don't...
Friday, May 22, 2009

Special Characters to Block in Web Requests

›
Microsoft suggests weeding out these special characters in web requests: " ' % ; ) ( & + - Some people simply delete these cha...
Thursday, May 21, 2009

Some Good Web Site Security Links

›
Overview of things you should do to secure web applications Cross frame scripting Cookie Poisoning Code injection - how it affects sites
Wednesday, May 13, 2009

XSS

›
Just reading up on XSS (cross site scripting) attacks on web sites. I ran across XSS shell which was linked from a few newsgroup postings wh...

HTML Form File Upload

›
This is a good tutorial that makes it pretty easy to create a file upload form when using a Jetty web server : Jetty File Upload Basically y...
Saturday, May 09, 2009

Singletons, Multithreading and Class Loaders

›
This is a pretty good article talking about use of Singletons and the implications of multi-threaded programming, distributed technologies a...
Wednesday, April 29, 2009

Extra Characters in Concatenated XML String

›
I was attempting to concatenate two strings to form a new string. For some reason when I viewed the concatenated string there were extra cha...
Friday, April 24, 2009

Text Box With No Value in XSL

›
If you're trying to display a text box with no value using XSL and the text box is collapsing, causing your HTML to be parsed incorrectl...

Comments in XSL to Show up in HTML

›
XSL tag to make XSL comments show up in HTML: <xsl:comment>This is a comment</xsl:comment> You may have to set output method = h...
Tuesday, April 07, 2009

Login to CVS Remote via SSH

›
Login to CVS using SSH: >set CVSROOT=:ssh:[user_name_here]@[server_here]:/[cvs_root_dir_here] >cvs login >CVS password:[enter passw...
Thursday, April 02, 2009

java.net.BindException: Address already in use: JVM_Bind

›
After setting up SSL on a web server not running on a standard port I had to remind myself what was going on when I got this error: java.net...

IE8 Change causes Form Element References to break

›
I had a problem with some web pages on a particular application after upgrading to IE 8. Referencing forms like this stopped working (but co...
Tuesday, March 31, 2009

ScheduledThreadPoolExecutor vs. Timer (Java)

›
I read that the Timer object was replaced by the ScheduleThreadPoolExecutor class in a book on multi-threaded programming or maybe it was a ...
Thursday, March 26, 2009

What is the difference between TLS and SSL?

›
In seeking the technical differences between TLS and SSL I uncovered many web pages which glossed over the topic and lacked any true answe...
Monday, March 23, 2009

XSL Space Character

›
Tab: &#x9; Space: &#x20; Non-Breaking space: &#xa0;

Test Mail Server For Inbound TLS

›
Do you really know who is at the other end of your email communication? Read about TLS . Here's how to test if your server supports TLS:...

Java SSL Certrificate Request

›
Install Java and set up a path to the bin folder under your Java root if you haven't done so already. Run the following commands from a ...

Installing Your Network Solutions SSL Certificate on Java Based Web Servers

›
These instructions were incorrect on the Network Solutions web site for about the last three years, at least for the certs I have purchased ...

ProntoScript

›
I recently finished a project using ProntoScript which is used to create customized functions on some Philips remote controls with touch sc...
Sunday, March 22, 2009

Adding String of XML nodes to Document Node - JDom

›
Let's say you have a JDom XML Document and you have a string of XML content. You want to add the XML content in the String to a particul...
Friday, February 20, 2009

Content is not allowed in prolog.

›
If you see the "Content is not allowed in prolog" error trying to transform xml and xsl the various problems I have found that hav...
Tuesday, December 30, 2008

JavaScript Tab in TextBox - for IE and Firefox

›
While seeking for a way to make tabs work in Firefox I found many code posts specific to Internet Explorer - this code below works in Mozill...
Tuesday, November 11, 2008

How to Use SLF4J with Jetty 6

›
In order to use Log4J with Jetty 6 (to get Jetty 6 and presumably subsequent versions of jetty to log output using Log4J), you use SLF4J ...
‹
›
Home
View web version
Powered by Blogger.