September 2006 - Posts

4
Comments

My first attempt with JUnit by lamia

I'll be totally honest... I'm not really excited about the TDD hype. But I feel like it's something important and even when I feel lazy(what the hell is wrong with me!??) I managed to atleast give it a shot. I've been reading this morning about JUnit...
Filed under:
1
Comments

A glimpse of ASM by lamia

It was kind of shocking last Friday when our client didn't approve our project plan. Instead of having a 4 month duration that would involve design, coding and delivery our time was cut down to 1 month(20 days to be exact). I am pretty confident though...
Filed under: ,
1
Comments

Single Connection Object - A possible Danger by lamia

Hmmm... I always had a single connection object active for the entire app. After I discovered that only one servlet is instantiated for every servlet class in the application this problem quickly popped in my mind. Actually, this was a worry I just ignored...
Filed under: , ,
0
Comments

Java is not slow on server-side! by lamia

I know I've been in the field for quite sometime now... However, over and over I get to ask myself the question how many servlet instance is created in the container? At first I thought that multiple instances are created for each user and then reused...
Filed under: , ,
3
Comments

phpapache2.dll not found by lamia

Hmmm... I'm on my first task at my new company. The project I'm involved with is a PHP to Java conversion(Ewwww!). I have to say I really don't like it but it should give me the experience and discipline needed to stay on the job. Besides, it should be...
Filed under:
2
Comments

What I'm into by lamia

Hmmm... There have been a lot of things I wanted to learn lately... But without an actual project to work with, it will be quite impossible to learn fast... I'm the type of person who tends to study about a lot of things. May it be about computers, nature...
Filed under: ,
0
Comments

Database-driven policy feature by lamia

I still remember back then when I was working as a trainee in one of my former companies. My boss gave a requirement wherein a user will only have specific areas of the application(this is a webapp) which he can gain access. I have to admit that it was...
Filed under:
0
Comments

<c:import url=""/> just so darn powerful by lamia

I was doing a small project last night. Youm wouldn't believe how much the ol <jsp:include page=""/> tag has given me problems. First of all, what I was doing was include a JSP page. That included JSP page has a <c:import page=""/> call in...
Filed under: ,
25
Comments

java.lang.IllegalStateException: Cannot forward after response has been committed by lamia

I encountered this error while working on the final module of my project earlier. The error was obvious to me though that it occured in one of my included JSP's. <center> <jsp:include page="/WEB-INF/templates/usermenutemplate.jsp"/> </center>...
Filed under: , , ,