how about putting the jar file in your /WEB-INF/lib and the struts-bean.tld
in your /WEB-INF and accessing them locally?  it works fine for me.

-----Original Message-----
From: alexj [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 21, 2003 3:05 PM
To: Struts Users Mailing List
Subject: Re: org.apache.jasper.JasperException: File
"/WEB-INF/struts-bean.tld" not found


I've try this to :

<taglib>

<taglib-uri>http://jakarta.apache.org/struts/tags-bean-1.0</taglib-uri>

<taglib-location>http://jakarta.apache.org/struts/tags-bean-1.0</taglib-loca
tion>

</taglib>


</web-app>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-1.0";
prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html-1.0";
prefix="html"%>

I can't figure what's wrong :(


<--
Alexandre Jaquet
->
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCM d+ s: a-- C++++ U*+ P L--- E--- W+++ N+++ o K---- w+++++
O---- M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X++++ R* tv b++++ DI--- D----
G++ e* h++ r% y*
------END GEEK CODE BLOCK------

----- Original Message -----
From: "Pani, Gourav" <[EMAIL PROTECTED]>
To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 8:56 PM
Subject: RE: org.apache.jasper.JasperException: File
"/WEB-INF/struts-bean.tld" not found


> Alex,
>
> You should have it either one of these two ways, not both mixed together.
>
> <taglib>
>
> <taglib-uri>http://jakarta.apache.org/struts/tags-bean-1.0</taglib-uri>
>
>
<taglib-location>http://jakarta.apache.org/struts/tags-bean-1.0</taglib-loca
> tion>
> </taglib>
>
> or
>
> <taglib>
> <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
> <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
> </taglib>
>
> -----Original Message-----
> From: alexj [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 21, 2003 2:47 PM
> To: Struts Users Mailing List
> Subject: Re: org.apache.jasper.JasperException: File
> "/WEB-INF/struts-bean.tld" not found
>
>
> I try to modify the uri into the web.xml like the uri defined
> into the struts-bean.ld
> <taglib>
>
> <taglib-uri>http://jakarta.apache.org/struts/tags-bean-1.0</taglib-uri>
>
> <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
>
> But it's still not work .
>
> Thanks for your support.
>
> <--
> Alexandre Jaquet
> ->
> -----BEGIN GEEK CODE BLOCK-----
> Version: 3.12
> GCM d+ s: a-- C++++ U*+ P L--- E--- W+++ N+++ o K---- w+++++
> O---- M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X++++ R* tv b++++ DI--- D----
> G++ e* h++ r% y*
> ------END GEEK CODE BLOCK------
>
> ----- Original Message -----
> From: "alexj" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Tuesday, January 21, 2003 8:34 PM
> Subject: Re: org.apache.jasper.JasperException: File
> "/WEB-INF/struts-bean.tld" not found
>
>
> > Yep I've declare :
> >
> > <taglib>
> >
> > <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
> >
> > <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
> >
> > ...
> >
> > ...
> >
> >
> > <--
> > Alexandre Jaquet
> > ->
> > -----BEGIN GEEK CODE BLOCK-----
> > Version: 3.12
> > GCM d+ s: a-- C++++ U*+ P L--- E--- W+++ N+++ o K---- w+++++
> > O---- M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X++++ R* tv b++++ DI--- D----
> > G++ e* h++ r% y*
> > ------END GEEK CODE BLOCK------
> >
> > ----- Original Message -----
> > From: "James Mitchell" <[EMAIL PROTECTED]>
> > To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 21, 2003 8:29 PM
> > Subject: RE: org.apache.jasper.JasperException: File
> > "/WEB-INF/struts-bean.tld" not found
> >
> >
> > > Do you declare them in your web.xml?
> > >
> > > --
> > > James Mitchell
> > > Software Engineer/Struts Evangelist
> > > http://www.open-tools.org/
> > >
> > > "The man who does not read good books has no advantage over the man
who
> > > cannot read them."
> > > - Mark Twain (1835-1910)
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > > -----Original Message-----
> > > > From: alexj [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday, January 21, 2003 2:27 PM
> > > > To: Struts Users Mailing List
> > > > Subject: org.apache.jasper.JasperException: File
> > > > "/WEB-INF/struts-bean.tld" not found
> > > >
> > > >
> > > > Hi got this error when I deploy my app to Tomcat 4.1.18.
> > > > In my pages I've declared :
> > > > <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
> > > >
> > > > <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
> > > >
> > > > I look if my WEB-INF folder includes the correctly taglib and they
are
> > > > include.
> > > > I'm using struts-1.1-b2 . I've read a previous post about another
way
> > > > to declare taglib and I've try this way to :
> > > >
> > > > <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-1.0"%>
> > > > <%@ taglib uri="http://jakarta.apache.org/struts/tags-html-1.0"%>
> > > >
> > > > But this one don't work to.
> > > >
> > > > Any idea ??
> > > >
> > > > <--
> > > > Alexandre Jaquet
> > > > ->
> > > > -----BEGIN GEEK CODE BLOCK-----
> > > > Version: 3.12
> > > > GCM d+ s: a-- C++++ U*+ P L--- E--- W+++ N+++ o K---- w+++++
> > > > O---- M-- V-- PS+++ PE+++ Y+++ PGP--- 5-- X++++ R* tv b++++
> > > > DI--- D----
> > > > G++ e* h++ r% y*
> > > > ------END GEEK CODE BLOCK------
> > > >
> > > >
> > > > --
> > > > To unsubscribe, e-mail:
> > > > <mailto:struts-user-> [EMAIL PROTECTED]>
> > > > For
> > > > additional commands,
> > > > e-mail: <mailto:[EMAIL PROTECTED]>
> > > >
> > > >
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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

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

Reply via email to