request.getContextPath().. so you don't need any param to update when
you deploy/move an application

SammyRulez


On Sat, 06 Nov 2004 09:21:55 -0800, Jack Lauman <[EMAIL PROTECTED]> wrote:
> I have a custom taglib with a hard coded URL.  I've added a
> 'context-param' entry to move it the web.xml file.  Is
> 'getServletConfig().getInitParameter' the corect thing to use here or is
> there a better alternative?
> 
> Original line:
> // out.println("<A
> HREF='http://www.domainname.com/util/viewDate.jsp?id="; + id + "&date=" +
> year + fmtMonth + fmtDate + "'>" + i + "</A>");
> 
> Modified line:
> out.println("<A HREF=" +
> getServletConfig().getInitParameter("baseJbossUrl") +
> "/viewDate.jsp?id=" + id + "&date=" + year + fmtMonth + fmtDate + "'>" +
> i + "</A>");
> 
> Thanks,
> 
> Jack
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
::SammyRulez::
http://sammyrulez.blogspot.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to