JSP Required classes

2001-09-13 Thread Vijay Pawar

Hi All,
When I am referring class from JSP it is throwing
error class not found though the all the classes are
present there.
I have kept all utility classes inside web-inf\classes
Can anybody suggest how can we give classpath in orion
deployment files I tried with orion-web.xml but it
fails.
regards,
vijay

__
Terrorist Attacks on U.S. - How can you help?
Donate cash, emergency relief information
http://dailynews.yahoo.com/fc/US/Emergency_Information/




Re: JSP Required classes

2001-09-13 Thread Robert Virkus

Hallo Vijay,

1) put your non-servlet files into WEB-INFO/lib
2) if that doesn't help, put 'em into
   $ORIONHOME/lib

hope that helps
  regards
 Robert Virkus

   
Thursday, September 13, 2001, 3:58:31 PM, you wrote:


VP Hi All,
VP When I am referring class from JSP it is throwing
VP error class not found though the all the classes are
VP present there.
VP I have kept all utility classes inside web-inf\classes
VP Can anybody suggest how can we give classpath in orion
VP deployment files I tried with orion-web.xml but it
VP fails.
VP regards,
VP vijay

VP __
VP Terrorist Attacks on U.S. - How can you help?
VP Donate cash, emergency relief information
VP http://dailynews.yahoo.com/fc/US/Emergency_Information/


Mit freundlichen Grüßen,
  Robert Virkus
  Director Mobile Solutions

-- 
Robert Virkus
scaraboo Entwicklungsgesellschaft mbH
mobile Entertainment
Georg-Wulf-Str.4-6
28199 Bremen
Germany
+49 - (0)421 - 59 67 549
+49 - (0)421 - 59 67 567
+49 - (0)171 - 35 31 635
[EMAIL PROTECTED]
www.scaraboo.de
wap.scaraboo.de





Re: JSP Required classes

2001-09-13 Thread Mike Shoemaker

You have to follow their package names.  

Mike
- Original Message - 
From: Vijay Pawar [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Thursday, September 13, 2001 8:58 AM
Subject: JSP Required classes


 Hi All,
 When I am referring class from JSP it is throwing
 error class not found though the all the classes are
 present there.
 I have kept all utility classes inside web-inf\classes
 Can anybody suggest how can we give classpath in orion
 deployment files I tried with orion-web.xml but it
 fails.
 regards,
 vijay
 
 __
 Terrorist Attacks on U.S. - How can you help?
 Donate cash, emergency relief information
 http://dailynews.yahoo.com/fc/US/Emergency_Information/


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com





Re: JSP Required classes

2001-09-13 Thread Dmitriy Serebryakov

In  orion-web.xml  in deployment directory use classpath tag as foolowing

orion-web-app
 deployment-version=1.5.2
 development=true
 persistence-path=./persistence/state.ser
 jsp-cache-directory=./persistence
 temporary-directory=./temp
 servlet-webdir=/servlet/

 classpath 
  path=path to your classes;file:/D:/SharedClasses;file:/D:/SharedClasses/abc.zip;
 /
/orion-web-app

Example above for Windows Enviroment.

D.S.

- Original Message - 
From: Vijay Pawar [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Thursday, September 13, 2001 9:58 AM
Subject: JSP Required classes


 Hi All,
 When I am referring class from JSP it is throwing
 error class not found though the all the classes are
 present there.
 I have kept all utility classes inside web-inf\classes
 Can anybody suggest how can we give classpath in orion
 deployment files I tried with orion-web.xml but it
 fails.
 regards,
 vijay
 
 __
 Terrorist Attacks on U.S. - How can you help?
 Donate cash, emergency relief information
 http://dailynews.yahoo.com/fc/US/Emergency_Information/