Kris, first, does your webapp started fine?
If yes, we can have some situations for one class works in jsp files using
tomcat:
1- webapp
            |_WEB-INF
                |_classes
                    |_yourclass -> if your class doesn't have a package
2- webapp
            |_WEB-INF
                |_classes
                    |_pack
                        |_subpk1
                            |_subpk2
                                |_yourclass ->if your class is in
package(s), in this case: pack.subpk1.subpk2.yourclass

3- if your class is any jar, this jar file must be in /WEB-INF/lib(your
class is shared only in especific webapp) or %CATALINA_HOME%/common/lib(your
class is shared in webapp'S' and tomcat) or
%CATALINA_HOME%/shared/lib(your class is shared in webapp'S').

After this cases, if your class is in package(s), in you jsp file you have
to use the "import" directive, for example:
<%@ page import="pack.subpk1.subpk2.*" %> or if import only  a especific
class <%@ page import="pack.subpk1.subpk2.yourclass" %>

Well, i think that's.

----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 28, 2003 08:46
Subject: include a class


> E-mail Premium BOL
> Antivírus, anti-spam e até 100 MB de espaço. Assine já!
> http://email.bol.com.br/
> Hi all,
>
> i am new to JSP and have a beginner question. I can't fix to include a
class. hmm I have
> class wrtitten that do all i need and it works fine on the shell.
> Now i want to handle this class in a jsp script, so that i get back the
string..
>
> that is what i want to do in my jsp:
>
> Class a = new Class;
> out.println(a.Function());
>
>
> But how to include my class, can anyone give me a short example, i can't
get throw and my
> books are not very well.
>
> Thanx a lot.
>
> Kris Wolff
> Application Developer
> dietzk. Interactive OHG
> An der Schindhohl 7
> D-65843 Sulzbach am Taunus
> Fon +49 (0) 6196 4939-95
> Fax +49 (0) 6196 758830
> [EMAIL PROTECTED]
> http://www.dietzk.de
>


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

Reply via email to