RE: Can I have two different directories for deploying webapps?

2003-11-11 Thread Stack Buffer

My mistake 

try this.





 






Indrasish N Basuroychowdhury <[EMAIL PROTECTED]> wrote: Shapira,

Thanks for the reply.
Would appreciate any example line of code. Do I have to change the
server.xml and add a new context? I was trying to do that but was not
able to bring up the server.

Thanks,

Indrasish.

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 10, 2003 12:22 PM
To: Tomcat Users List
Subject: RE: Can I have two different directories for deploying webapps?



Howdy,
Yes. Just define additional Host elements with different appBase
directories.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Indrasish N Basuroychowdhury 
>[mailto:[EMAIL PROTECTED]
>Sent: Monday, November 10, 2003 12:21 PM
>To: Tomcat Users List
>Subject: Can I have two different directories for deploying webapps?
>
>Can I have two different directories for deploying web applications. 
>E.g. one as webapps under Tomcat root directory, another under a 
>different drive, say D:\webapps. Can I deploy servlet as well as JSPs 
>under these two directories?
>
>Any help will be appreciated.
>
>Indrasish.
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential,
proprietary and/or privileged. This e-mail is intended only for the
individual(s) to whom it is addressed, and may not be saved, copied,
printed, disclosed or used by anyone else. If you are not the(an)
intended recipient, please immediately delete this e-mail from your
computer system and notify the sender. Thank you.


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




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




-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

RE: Can I have two different directories for deploying webapps?

2003-11-11 Thread Stack Buffer

try this

 





 






Indrasish N Basuroychowdhury <[EMAIL PROTECTED]> wrote:Shapira,

Thanks for the reply.
Would appreciate any example line of code. Do I have to change the
server.xml and add a new context? I was trying to do that but was not
able to bring up the server.

Thanks,

Indrasish.

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 10, 2003 12:22 PM
To: Tomcat Users List
Subject: RE: Can I have two different directories for deploying webapps?



Howdy,
Yes. Just define additional Host elements with different appBase
directories.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Indrasish N Basuroychowdhury 
>[mailto:[EMAIL PROTECTED]
>Sent: Monday, November 10, 2003 12:21 PM
>To: Tomcat Users List
>Subject: Can I have two different directories for deploying webapps?
>
>Can I have two different directories for deploying web applications. 
>E.g. one as webapps under Tomcat root directory, another under a 
>different drive, say D:\webapps. Can I deploy servlet as well as JSPs 
>under these two directories?
>
>Any help will be appreciated.
>
>Indrasish.
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential,
proprietary and/or privileged. This e-mail is intended only for the
individual(s) to whom it is addressed, and may not be saved, copied,
printed, disclosed or used by anyone else. If you are not the(an)
intended recipient, please immediately delete this e-mail from your
computer system and notify the sender. Thank you.


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




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



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

RE: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo

2003-10-20 Thread Stack Buffer

True dat!!
 
Thanks Larry, Yes actually I had an old servlet.jar in my setup plus the client jar 
files that come with jboss-3.0.0.
I guess I have to look for a newer JBOSS huh??
thanks once again.
Edward
Larry Isaacs <[EMAIL PROTECTED]> wrote:
The constructor being looked for exists only in the JSP 2.0
implementation. Your error implies that the TagAttributeInfo
class, found in jsp-api.jar in tomcat-5.0.12's common/lib
directory, is being overridden by an older JSP 1.2 or 1.1
version of this class, probably in a servlet.jar or j2ee.jar
somewhere in you setup. You will need to remove the out of
date classes/jar to get it to work.

Cheers,
Larry


> -Original Message-
> From: Stack Buffer [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 18, 2003 7:18 PM
> To: [EMAIL PROTECTED]
> Subject: java.lang.NoSuchMethodError: 
> javax.servlet.jsp.tagext.TagAttributeInfo
> 
> 
> Hi all,
> I am running tomcat-5.0.12 on a win2k machine with 
> j2sdk1.4.2, I just recently downloaded the 
> jakarta-taglibs-standard-1.1.0-B1 and I copied the jar files 
> (jstl.jar, standard.jar) into tomcats common/lib directory, 
> plus I copied the following tlds into my WEB-INF: 
> core.tld,x.tld,fmt.tld. I also updated my web.xml to reflect 
> these new tags,
> but I keep getting the error message below when try to 
> access the page. Any help???
> 
> in my jsp page:
> 
> 
> 
> in my web.xml:
> 
> 
> http://java.sun.com/jsp/jstl/fmt
> /WEB-INF/fmt.tld
> 
> 
> http://java.sun.com/jsp/jstl/core
> /WEB-INF/c.tld
> 
> 
> 
> http://java.sun.com/jsp/jstl/x
> /WEB-INF/x.tld
> 
> 
> 
> exception message 
> exception
> javax.servlet.ServletException: 
> javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;Z
> Ljava/lang/String;ZZ)V 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.ja
> va:256) 
> javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 
> 
> 
> root cause 
> java.lang.NoSuchMethodError: 
> javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;Z
> Ljava/lang/String;ZZ)V 
> org.apache.jasper.compiler.TagLibraryInfoImpl.createAttribute(
> TagLibraryInfoImpl.java:577) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.createTagInfo(Ta
> gLibraryInfoImpl.java:437) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibr
> aryInfoImpl.java:295) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.(TagLibraryInfoI
> mpl.java:204) 
> org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.
> java:460) 
> org.apache.jasper.compiler.Parser.parseDirective(Parser.ja
> va:525) 
> org.apache.jasper.compiler.Parser.parseElements(Parser.jav
> a:1625) 
> org.apache.jasper.compiler.Parser.parse(Parser.java:173) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:247) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:149) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:135) 
> 
> 
> 
> -
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> 

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


-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

RE: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo

2003-10-20 Thread Stack Buffer

True dat!!
 
Thanks Larry, Yes actually I had an old servlet.jar in my setup plus the client jar 
files that come with jboss-3.0.0.
I guess I have to look for a newer JBOSS huh??
thanks once again.
Edward
Larry Isaacs <[EMAIL PROTECTED]> wrote:
The constructor being looked for exists only in the JSP 2.0
implementation. Your error implies that the TagAttributeInfo
class, found in jsp-api.jar in tomcat-5.0.12's common/lib
directory, is being overridden by an older JSP 1.2 or 1.1
version of this class, probably in a servlet.jar or j2ee.jar
somewhere in you setup. You will need to remove the out of
date classes/jar to get it to work.

Cheers,
Larry


> -Original Message-
> From: Stack Buffer [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 18, 2003 7:18 PM
> To: [EMAIL PROTECTED]
> Subject: java.lang.NoSuchMethodError: 
> javax.servlet.jsp.tagext.TagAttributeInfo
> 
> 
> Hi all,
> I am running tomcat-5.0.12 on a win2k machine with 
> j2sdk1.4.2, I just recently downloaded the 
> jakarta-taglibs-standard-1.1.0-B1 and I copied the jar files 
> (jstl.jar, standard.jar) into tomcats common/lib directory, 
> plus I copied the following tlds into my WEB-INF: 
> core.tld,x.tld,fmt.tld. I also updated my web.xml to reflect 
> these new tags,
> but I keep getting the error message below when try to 
> access the page. Any help???
> 
> in my jsp page:
> 
> 
> 
> in my web.xml:
> 
> 
> http://java.sun.com/jsp/jstl/fmt
> /WEB-INF/fmt.tld
> 
> 
> http://java.sun.com/jsp/jstl/core
> /WEB-INF/c.tld
> 
> 
> 
> http://java.sun.com/jsp/jstl/x
> /WEB-INF/x.tld
> 
> 
> 
> exception message 
> exception
> javax.servlet.ServletException: 
> javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;Z
> Ljava/lang/String;ZZ)V 
> org.apache.jasper.servlet.JspServlet.service(JspServlet.ja
> va:256) 
> javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> 
> 
> 
> root cause 
> java.lang.NoSuchMethodError: 
> javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;Z
> Ljava/lang/String;ZZ)V 
> org.apache.jasper.compiler.TagLibraryInfoImpl.createAttribute(
> TagLibraryInfoImpl.java:577) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.createTagInfo(Ta
> gLibraryInfoImpl.java:437) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibr
> aryInfoImpl.java:295) 
> org.apache.jasper.compiler.TagLibraryInfoImpl.(TagLibraryInfoI
> mpl.java:204) 
> org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.
> java:460) 
> org.apache.jasper.compiler.Parser.parseDirective(Parser.ja
> va:525) 
> org.apache.jasper.compiler.Parser.parseElements(Parser.jav
> a:1625) 
> org.apache.jasper.compiler.Parser.parse(Parser.java:173) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:247) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:149) 
> org.apache.jasper.compiler.ParserController.parse(ParserContro
> ller.java:135) 
> 
> 
> 
> -
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> 

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


-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo

2003-10-18 Thread Stack Buffer
Hi all,
I am running tomcat-5.0.12 on a win2k machine with j2sdk1.4.2, I just recently 
downloaded the jakarta-taglibs-standard-1.1.0-B1 and I copied the jar files (jstl.jar, 
standard.jar) into tomcats common/lib directory, plus I copied the following tlds into 
my WEB-INF: core.tld,x.tld,fmt.tld. I also updated my web.xml to reflect these new 
tags,
but I keep getting the  error message below when try to access the page. Any help???
 
in my jsp page:
 
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>
 
in my web.xml:
 

http://java.sun.com/jsp/jstl/fmt
/WEB-INF/fmt.tld
  
  
http://java.sun.com/jsp/jstl/core
/WEB-INF/c.tld
  
  
  
http://java.sun.com/jsp/jstl/x
/WEB-INF/x.tld
  
 

exception message 
exception
javax.servlet.ServletException: 
javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;ZLjava/lang/String;ZZ)V   
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)   
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)



root cause 
java.lang.NoSuchMethodError: 
javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;ZLjava/lang/String;ZZ)V   

org.apache.jasper.compiler.TagLibraryInfoImpl.createAttribute(TagLibraryInfoImpl.java:577)
  
org.apache.jasper.compiler.TagLibraryInfoImpl.createTagInfo(TagLibraryInfoImpl.java:437)

org.apache.jasper.compiler.TagLibraryInfoImpl.parseTLD(TagLibraryInfoImpl.java:295)
 org.apache.jasper.compiler.TagLibraryInfoImpl.(TagLibraryInfoImpl.java:204) 
org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:460) 
org.apache.jasper.compiler.Parser.parseDirective(Parser.java:525)   
org.apache.jasper.compiler.Parser.parseElements(Parser.java:1625)   
org.apache.jasper.compiler.Parser.parse(Parser.java:173)
org.apache.jasper.compiler.ParserController.parse(ParserController.java:247)
org.apache.jasper.compiler.ParserController.parse(ParserController.java:149)
org.apache.jasper.compiler.ParserController.parse(ParserController.java:135) 



-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search