Hi David Thanks this is EXACTLY the syntax I was looking for and doing precisely what I expect.
David Smith <[EMAIL PROTECTED]> wrote: If you are linking from inside a jsp page and using jsp spec 1.2+ / servlet spec 2.4+, you can do this: src="${request.contextPath}/intPages/myScripts.js"> The comment is there if you are using xml valid jsp to prevent tomcat from collapsing the script tag and breaking it in IE. The EL expression ${request.contextPath} fetches the context path live so you don't have to hard code. Otherwise this is a server relative path and the client will automagically add the http://[servername]:[port] part. --David Chris Pat wrote: > Hello > Any tips on serving a ajax page with tomcat? I am now calling the page with > a jsp:forward outside of the web-inf. Do I also have to fully unc path to > the *.js files, like src=localhost:8080/context/intPages/myScripts.js ? > > --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]