include file - Bad file argument to include

Hi, I have <%@ include file="includes/header.jsp" %> and it seems to be returning "Bad file argument to include" and i cannot work out why.Thanks
[200 byte] By [ageorges] at [2007-9-26 4:34:09]
# 1
You hav to use the relative Path from the current location. Is your path correct?Regards,Geri
ge_ha at 2007-6-29 17:50:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I have tryed using the full path and it still doesn't work
ageorges at 2007-6-29 17:50:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
your syntax is right, you may need to figure other problem out,it may not be this problem.
vaylo at 2007-6-29 17:50:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
Try :<%@ include file="includes\header.jsp" %>Regards,Fred
LeclercqF at 2007-6-29 17:50:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

Careful with full paths: It's a standard relative jsp path: See this explanation from the syntax reference:

"If the relative URL starts with /, the path is relative to the JSP application's context, [...] . If the relative URL starts with a directory or file name, the path is relative to the JSP file. "

GSauerLimbach at 2007-6-29 17:50:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...