> From: Hassan Abolhassani [mailto:[EMAIL PROTECTED]] 
> I have tried to compile HelloWorldAction.java from Cocoon 
> documentation. 
> 
> From command line I did as follows:
> 
> >set 
> classpath=%classpath%;;E:\jakarta-tomcat-4.0\webapps\cocoon\WE
> B-INF\lib\avalon-framework-4.1.2.jar;E:\jakarta-tomcat-4.0\web
> apps\cocoon\WEB-INF\lib\cocoon-2.0.2.jar;
> 
> >javac HelloWorldAction.java
> 
> I receive a message saying that this program uses a deprecated API
> 
> Then if i try
> >javac -deprecation HelloWorldAction.java
> 
> I receive a message telling that REQUEST_OBJECT is not 
> defined in Constants, for the following line:
> Request request = (Request) objectModel.get(Constants.REQUEST_OBJECT);
> 
> Could anyone tell me what might be wrong. Am I using correct 
> jar files in classpath. Should I compile differently?

Deprecated means that the current method is out of date and a newer one
should be used. Take a look at
org.apache.cocoon.environment.ObjectModelHelper and use it to get the
Request object.

And 'deprecated' does not mean that compilation failed. Your class is
compiled and will work.

Konstantin

> 
> Every help is appreciated.
> 
> Hassan
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 

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

Reply via email to