RE: web.xml config, dif between 4.0 and 5.0

2004-03-02 Thread Shapira, Yoav

Hi,

>   Does this sound like a good idea?  I notice several people are
still
>talking about configuring new 4.0 installs.  Is 5.0 stable enough?

Yes, it's a good idea.  Yes, 5.0 is stable enough.  Questions about new
4.0 installs have been rare on this list over the past few months, so
maybe we're reading a different list or disagree on the meaning of
"several" in this context.

>   My main problem however, is that my web.xml file for my web
>application behaves differently in the two versions.  The web.xml file
>validates against the 2.2 DTD not the 2.3 ( or 2.4 now? ).  In my old
>set up I have not needed to state each servlet that will be addressed.
>Now it seems as if this may be required for 5.0.

No, it's not required, merely recommended, and for good reasons.  You
can comment in the invoker servlet as Tim said.  The 2.4 servlet spec
has no has a Schema instead of a DTD by the way, so it's a different
validation.  Also, why doesn't your web.xml validate against the 2.3
DTD?

>require that each servlet be mapped?  Is there a good solution to my

A "good" meaning minimum effort?  Enable the invoker servlet.  A "good"
meaning more correct/safer?  Map the servlets.  You an do it with some
fun perl/sed/awk/java scripts at least for generating the automatic
mappings, e.g. for each class X write a  element where the name
is the full class name and a servlet-mapping where the url-pattern is
/servlet/full-class-name.  That way you don't have to change any code,
you're mimicking the invoker servlet ;)

Yoav Shapira



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]



Re: web.xml config, dif between 4.0 and 5.0

2004-03-02 Thread Jim Beard
Tim,

	Thanks for the quick reply.  That is exactly what the problem was.  I 
understand that statically defining and mapping servlets would be much 
more secure, however I'm not sure I want to map the several hundred 
servlets involved
	I put the invoker back in place and things are moving along fine now.

Jim

On Tuesday, March 2, 2004, at 12:57 PM, Tim Funk wrote:

My main problem however, is that my web.xml file for my web 
application behaves differently in the two versions.  The web.xml 
file validates against the 2.2 DTD not the 2.3 ( or 2.4 now? ).  In 
my old set up I have not needed to state each servlet that will be 
addressed.  Now it seems as if this may be required for 5.0.
It looks like you are still using the invoker. Its evil:
http://jakarta.apache.org/tomcat/faq/misc.html#invoker
But the servlet 2.4 is mostly compatible with 2.3 and 2.2.
-Tim



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

Jim Beard
counterclaim.com, Inc
http://www.counterclaim.com
http://openefm.sourceforge.net
(800) 264-8145
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: web.xml config, dif between 4.0 and 5.0

2004-03-02 Thread Tim Funk
Jim Beard wrote:
I work with a rather large and comlex web application.  We have been 
hosting the application with Jakarta Tomcat for a while now.  I am 
working on upgrading our environment to 5.0.18.
Does this sound like a good idea?  I notice several people are still 
talking about configuring new 4.0 installs.  Is 5.0 stable enough?
It should be stable enough, but then again it really depends on *your* 
webapp. Testing is the key.

My main problem however, is that my web.xml file for my web 
application behaves differently in the two versions.  The web.xml file 
validates against the 2.2 DTD not the 2.3 ( or 2.4 now? ).  In my old 
set up I have not needed to state each servlet that will be addressed.  
Now it seems as if this may be required for 5.0.
It looks like you are still using the invoker. Its evil:
http://jakarta.apache.org/tomcat/faq/misc.html#invoker
But the servlet 2.4 is mostly compatible with 2.3 and 2.2.
-Tim



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


web.xml config, dif between 4.0 and 5.0

2004-03-02 Thread Jim Beard
Hi folks,

	I work with a rather large and comlex web application.  We have been 
hosting the application with Jakarta Tomcat for a while now.  I am 
working on upgrading our environment to 5.0.18.
	Does this sound like a good idea?  I notice several people are still 
talking about configuring new 4.0 installs.  Is 5.0 stable enough?
	My main problem however, is that my web.xml file for my web 
application behaves differently in the two versions.  The web.xml file 
validates against the 2.2 DTD not the 2.3 ( or 2.4 now? ).  In my old 
set up I have not needed to state each servlet that will be addressed.  
Now it seems as if this may be required for 5.0.
	I would really like to not have to do this.  Our application has 
hundreds of servlets, and mapping them each by hand could be a royal 
pain.  Is there a way I can get it to run like 4.0 does, and not 
require that each servlet be mapped?  Is there a good solution to my 
problem?

Jim Beard
counterclaim.com, Inc
http://www.counterclaim.com
http://openefm.sourceforge.net
(800) 264-8145
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: web.xml config

2004-01-19 Thread Harry Mantheakis
Hi Allan

> I tried:
> 
> http://kes:8080/WinGalagaHST?Op=GetScore
> and
> http://kes:8080/WinGalagaHST/WinGalagaHST?Op=GetScore

I assume 'kes' is a valid IP address - why not start with 'localhost'?

Anyway, I cannot see anything (obviously) wrong with your setup, other than
(as suggested by others) that you should package your class files.

The packages, of course, still get placed under the 'WEB-INF/classes'
directory.

I know for sure that you cannot use un-packaged JavaBeans.

Try packaging your servlets, and let us know how you get on.

One other option you could consider - if you are running Tomcat 4.1x - is to
enable the Invoker Servlet instead of registering and mapping your servlets.

To enable the Invoker Servlet copy and paste the following servlet mapping
code into the 'web.xml' application deployment descriptor:



invoker
/servlet/*


To call your servlet, you need to specify the '/servlet' mapping:

http://myDomain/myWebApp/servlet/myServlet?x=1

If that works, then you know there is something wrong with the way you have
registered and mapped your servlets in the deployment descriptor.

BTW, the Invoker Servlet should NOT be used in a production environment
because of security issues - so this is just a testing solution.

Regards

Harry


> 
> but both just show HTTP 404 message.  This servlet runs on my friends
> machine, with his own coded web-server, and to get a score, he calls
> ?Op=GetScore.
> 
> Thanks
> Allan
> 
> 
> - Original Message -
> From: "Harry Mantheakis" <[EMAIL PROTECTED]>
> To: "Tomcat Users List" <[EMAIL PROTECTED]>
> Sent: Saturday, January 17, 2004 12:21 PM
> Subject: Re: web.xml config
> 
> 
>> Hello
>> 
>> What is the problem?
>> 
>> How exactly are you calling (requesting) the servlet? - Give us the
> complete
>> URL you are using to invoke the servlet.
>> 
>> Harry
>> 
>>> I have tomcat up and running fine - verified by running the example jsp
>>> pages and servlets.
>>> I have a servlet that I want to get working, called WinGalagaHST which
> is
>>> used for my game I have been developing.  I have put it in my tomcats
>>> webapps directory, and the necessary subdirs like
>>> 
>>> /usr/local/sites/tomcat/tomcat/webapps/WinGalagaHST/WEB-INF/classes
>>> 
>>> I have put the class files in the classes folder (2 of them, called
>>> EDSServlet.class and WinGalagaHST.class), and have my web.xml in the
> WEB-INF
>>> directory.  Is this correct? Below is my web.xml file.  If anybody knows
>>> where I am going wrong, I would much appreciate the help.
>>> 
>>> Thanks very much
>>> Allan
>>> 
>>> 
>>> 
>>> 
>>> -web.xml
>>> 
>>> 
>>> >>   PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
>>>   "http://java.sun.com/dtd/web-app_2_3.dtd";>
>>> 
>>> 
>>>   
>>>   
>>>   WinGalagaHST
>>>   
>>>   
>>>   WinGalagaHST
>>>   
>>>   
>>>   
>>> WinGalagaHST
>>> /WinGalaga
>>>   
>>> 
>>> 
>>> 
>>> -
>>> 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]
>> 
>> 
> 
> 
> -
> 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]



Re: web.xml config

2004-01-17 Thread Allan Bruce
I tried:

http://kes:8080/WinGalagaHST?Op=GetScore
and
http://kes:8080/WinGalagaHST/WinGalagaHST?Op=GetScore

but both just show HTTP 404 message.  This servlet runs on my friends
machine, with his own coded web-server, and to get a score, he calls
?Op=GetScore.

Thanks
Allan


- Original Message - 
From: "Harry Mantheakis" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Saturday, January 17, 2004 12:21 PM
Subject: Re: web.xml config


> Hello
>
> What is the problem?
>
> How exactly are you calling (requesting) the servlet? - Give us the
complete
> URL you are using to invoke the servlet.
>
> Harry
>
> > I have tomcat up and running fine - verified by running the example jsp
> > pages and servlets.
> > I have a servlet that I want to get working, called WinGalagaHST which
is
> > used for my game I have been developing.  I have put it in my tomcats
> > webapps directory, and the necessary subdirs like
> >
> > /usr/local/sites/tomcat/tomcat/webapps/WinGalagaHST/WEB-INF/classes
> >
> > I have put the class files in the classes folder (2 of them, called
> > EDSServlet.class and WinGalagaHST.class), and have my web.xml in the
WEB-INF
> > directory.  Is this correct? Below is my web.xml file.  If anybody knows
> > where I am going wrong, I would much appreciate the help.
> >
> > Thanks very much
> > Allan
> >
> >
> >
> >
> > -web.xml
> > 
> >
> >  >   PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
> >   "http://java.sun.com/dtd/web-app_2_3.dtd";>
> >
> > 
> >   
> >   
> >   WinGalagaHST
> >   
> >   
> >   WinGalagaHST
> >   
> >   
> >   
> > WinGalagaHST
> > /WinGalaga
> >   
> > 
> >
> >
> > -
> > 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]
>
>


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



Re: web.xml config

2004-01-17 Thread Harry Mantheakis
Hello

What is the problem?

How exactly are you calling (requesting) the servlet? - Give us the complete
URL you are using to invoke the servlet.

Harry

> I have tomcat up and running fine - verified by running the example jsp
> pages and servlets.
> I have a servlet that I want to get working, called WinGalagaHST which is
> used for my game I have been developing.  I have put it in my tomcats
> webapps directory, and the necessary subdirs like
> 
> /usr/local/sites/tomcat/tomcat/webapps/WinGalagaHST/WEB-INF/classes
> 
> I have put the class files in the classes folder (2 of them, called
> EDSServlet.class and WinGalagaHST.class), and have my web.xml in the WEB-INF
> directory.  Is this correct? Below is my web.xml file.  If anybody knows
> where I am going wrong, I would much appreciate the help.
> 
> Thanks very much
> Allan
> 
> 
> 
> 
> -web.xml
> 
> 
>PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
>   "http://java.sun.com/dtd/web-app_2_3.dtd";>
> 
> 
>   
>   
>   WinGalagaHST
>   
>   
>   WinGalagaHST
>   
>   
>   
> WinGalagaHST
> /WinGalaga
>   
> 
> 
> 
> -
> 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]



web.xml config

2004-01-16 Thread Allan Bruce
I have tomcat up and running fine - verified by running the example jsp
pages and servlets.
I have a servlet that I want to get working, called WinGalagaHST which is
used for my game I have been developing.  I have put it in my tomcats
webapps directory, and the necessary subdirs like

/usr/local/sites/tomcat/tomcat/webapps/WinGalagaHST/WEB-INF/classes

I have put the class files in the classes folder (2 of them, called
EDSServlet.class and WinGalagaHST.class), and have my web.xml in the WEB-INF
directory.  Is this correct? Below is my web.xml file.  If anybody knows
where I am going wrong, I would much appreciate the help.

Thanks very much
Allan




-web.xml


http://java.sun.com/dtd/web-app_2_3.dtd";>




WinGalagaHST


WinGalagaHST



  WinGalagaHST
  /WinGalaga




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



RE: web.xml config

2002-01-17 Thread Craig R. McClanahan



On Thu, 17 Jan 2002, Grobe, Gary wrote:

> Date: Thu, 17 Jan 2002 17:36:42 -0600
> From: "Grobe, Gary" <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: 'Tomcat Users List' <[EMAIL PROTECTED]>
> Subject: RE: web.xml  config
>
> "/*" works for the first filter and returns the index.html underneath my
> context name, "/f2/*" calls the second filter, but does not find the
> index.html. Does it look someplace else by calling it this way?
>

I actually misread your original request.

You cannot define filter URL patterns using a syntax like "/f1*" or "/f2*"
-- the syntax must match those for servlet mappings as outlined in the
spec.  The best you could do would be use a pattern like "/*" to select
all requests, and then use logic inside the filter to look at the request
URI and apply what you want.

Craig


>
> -Original Message-
> From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 17, 2002 5:24 PM
> To: Tomcat Users List
> Subject: Re: web.xml  config
>
>
>
> The URL patterns in your filter mappings are not valid patterns.  Try
> "/*" for the first filter "/f2/*" for the second filter.  Then, your URLs
> would be processed like this:
>
> http://localhost:8080/{mycontext}/index.html --> filtered by "Filter"
> http://localhost:8080/{mycontext}/f2/index.html --> filtered by
>   "Filter2" and then "Filter"
>
> Craig
>
>
> On Thu, 17 Jan 2002, Grobe, Gary wrote:
>
> > Date: Thu, 17 Jan 2002 17:12:28 -0600
> > From: "Grobe, Gary" <[EMAIL PROTECTED]>
> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> > Subject: web.xml  config
> >
> >
> > How do I get ...
> > http://localhost/{mycontext} to point to Filter (default filter)
> > and ... http://localhost/{myContext}/f2 to point to Filter2?
> >
> > I've been having problems calling Filter2. I want both filters to operate
> on
> > the same file ... so if i just type in http://localhost/myContext , then
> > index.html file gets Filter, same for Filter2 if I append f1 to that. The
> > response stream that both filters operate on must come from the same files
> > (i.e. index.html, etc...).
> >
> >
> >   Filter2
> >   Filter2
> >   control.filter.Filter2
> >
> >
> >
> >   Filter
> >   Filter
> >   control.filter.Filter
> >
> >
> >
> >   Filter2
> >   /f2*
> >
> >
> >
> >   Filter
> >   /f1*
> >
> >
> > Any help much appreciated.
> >
> > --
> > To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> > For additional commands: <mailto:[EMAIL PROTECTED]>
> > Troubles with the list: <mailto:[EMAIL PROTECTED]>
> >
> >
>
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
>



--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




RE: web.xml config

2002-01-17 Thread Grobe, Gary

"/*" works for the first filter and returns the index.html underneath my
context name, "/f2/*" calls the second filter, but does not find the
index.html. Does it look someplace else by calling it this way?


-Original Message-
From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 17, 2002 5:24 PM
To: Tomcat Users List
Subject: Re: web.xml  config



The URL patterns in your filter mappings are not valid patterns.  Try
"/*" for the first filter "/f2/*" for the second filter.  Then, your URLs
would be processed like this:

http://localhost:8080/{mycontext}/index.html --> filtered by "Filter"
http://localhost:8080/{mycontext}/f2/index.html --> filtered by
  "Filter2" and then "Filter"

Craig


On Thu, 17 Jan 2002, Grobe, Gary wrote:

> Date: Thu, 17 Jan 2002 17:12:28 -0600
> From: "Grobe, Gary" <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> Subject: web.xml  config
>
>
> How do I get ...
> http://localhost/{mycontext} to point to Filter (default filter)
> and ... http://localhost/{myContext}/f2 to point to Filter2?
>
> I've been having problems calling Filter2. I want both filters to operate
on
> the same file ... so if i just type in http://localhost/myContext , then
> index.html file gets Filter, same for Filter2 if I append f1 to that. The
> response stream that both filters operate on must come from the same files
> (i.e. index.html, etc...).
>
>
>   Filter2
>   Filter2
>   control.filter.Filter2
>
>
>
>   Filter
>   Filter
>   control.filter.Filter
>
>
>
>   Filter2
>   /f2*
>
>
>
>   Filter
>   /f1*
>
>
> Any help much appreciated.
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




Re: web.xml config

2002-01-17 Thread Craig R. McClanahan


The URL patterns in your filter mappings are not valid patterns.  Try
"/*" for the first filter "/f2/*" for the second filter.  Then, your URLs
would be processed like this:

http://localhost:8080/{mycontext}/index.html --> filtered by "Filter"
http://localhost:8080/{mycontext}/f2/index.html --> filtered by
  "Filter2" and then "Filter"

Craig


On Thu, 17 Jan 2002, Grobe, Gary wrote:

> Date: Thu, 17 Jan 2002 17:12:28 -0600
> From: "Grobe, Gary" <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> Subject: web.xml  config
>
>
> How do I get ...
> http://localhost/{mycontext} to point to Filter (default filter)
> and ... http://localhost/{myContext}/f2 to point to Filter2?
>
> I've been having problems calling Filter2. I want both filters to operate on
> the same file ... so if i just type in http://localhost/myContext , then
> index.html file gets Filter, same for Filter2 if I append f1 to that. The
> response stream that both filters operate on must come from the same files
> (i.e. index.html, etc...).
>
>
>   Filter2
>   Filter2
>   control.filter.Filter2
>
>
>
>   Filter
>   Filter
>   control.filter.Filter
>
>
>
>   Filter2
>   /f2*
>
>
>
>   Filter
>   /f1*
>
>
> Any help much appreciated.
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




web.xml config

2002-01-17 Thread Grobe, Gary


How do I get ...
http://localhost/{mycontext} to point to Filter (default filter) 
and ... http://localhost/{myContext}/f2 to point to Filter2?

I've been having problems calling Filter2. I want both filters to operate on
the same file ... so if i just type in http://localhost/myContext , then
index.html file gets Filter, same for Filter2 if I append f1 to that. The
response stream that both filters operate on must come from the same files
(i.e. index.html, etc...).

   
  Filter2
  Filter2
  control.filter.Filter2
   

   
  Filter
  Filter
  control.filter.Filter
   

   
  Filter2
  /f2*
   

   
  Filter
  /f1*
   

Any help much appreciated.

--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




RE: web.xml config for taglib

2001-01-19 Thread Troy Landers

It looks like you need to tell tomcat where to find the tld. This should be
done in your C:\utils\Apache\htdocs\jsp\WEB-INF\web.xml file.

Here's an example from my web.xml:
  
/impact.tld
/WEB-INF/impact.tld
  

Troy

-Original Message-
From: Regis Muller [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 18, 2001 8:45 AM
To: [EMAIL PROTECTED]
Subject: web.xml config for taglib


When I try to put my tag files outside of tomcat/webapps/ROOT directory
(like in apache/htdocs/jsp) I got this error :

org.apache.jasper.compiler.CompileException:
C:\utils\Apache\htdocs\jsp\SimpleExample.jsp(12,0) Unable to open
taglibrary csajsp-taglib.tld :
C:\utils\Apache\htdocs\jsp\WEB-INF\web.xml (The system cannot find the
path specified)

is there something to be put in this yet inexistant web.xml file ?




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

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




web.xml config for taglib

2001-01-18 Thread Regis Muller

When I try to put my tag files outside of tomcat/webapps/ROOT directory
(like in apache/htdocs/jsp) I got this error :

org.apache.jasper.compiler.CompileException:
C:\utils\Apache\htdocs\jsp\SimpleExample.jsp(12,0) Unable to open
taglibrary csajsp-taglib.tld :
C:\utils\Apache\htdocs\jsp\WEB-INF\web.xml (The system cannot find the
path specified)

is there something to be put in this yet inexistant web.xml file ?




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