Hello,

I have built an application using TDK 2.1 on W2K using JRE 1.2.2 on MySQL.
It works. I have just tried the same on Oracle 8.1.5 on the same OS. I had a
previous post to the list where I was informed to use the updated db.props
for Oracle. This I did. At the time I just needed the project specific SQL
for review and it worked fine for that. Now that I need to run the
application I discovered that it complained about all tables that had the
RAW data type. The db.props had the following:

BINARY = RAW
VARBINARY = RAW

I found that RAW must have a size defined so I changed the lines to:

BINARY = RAW (2000)
VARBINARY = RAW (2000)

It now builds successfully.

However when I point the browser at the application I get a NPE, top part of
the stack trace follows:

java.lang.ExceptionInInitializerError: java.lang.NullPointerException
        at org.apache.turbine.services.schedule.JobEntryPeer.(JobEntryPeer.java)
        at
org.apache.turbine.services.schedule.TurbineSchedulerService.init(TurbineSch
edulerService.java:121)
        at
org.apache.turbine.services.TurbineBaseService.init(TurbineBaseService.java:
108)
        at
org.apache.turbine.services.BaseInitableBroker.initClass(BaseInitableBroker.
java, Compiled Code)
        at
org.apache.turbine.services.BaseServiceBroker.doInitService(BaseServiceBroke
r.java:226)
        at
org.apache.turbine.services.BaseServiceBroker.initServices(BaseServiceBroker
.java, Compiled Code)
        at org.apache.turbine.Turbine.init(Turbine.java:185)

The Turbine_Scheduled_Job table exists and has no rows in it.

Ive looked through the archives and can find nothing on this problem. Any
ideas anyone?

Regards

David



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

Reply via email to