try 
<jsp:setProperty name="dsb" property="DataSourceJdbcDriver"
value="oracle.jdbc.driver.OracleDriver"/>
or else
<jsp:setProperty name="dsb" property="dataSourceJdbcDriver"
value="oracle.jdbc.driver.OracleDriver"/>

JP

-----Original Message-----
From: Robert S. Sfeir [mailto:[EMAIL PROTECTED]]
Sent: Viernes, 24 de Noviembre de 2000 23:38
To: Orion-Interest
Subject: JavaBeans and JSP


Ok Totaly rookie question, nonetheless it must be asked... so be gentle :-)

I copied a jar file we use which contains the beans to our application in
the orion/lib directory.  We're transitioning from another applicaiton
environment to JSP using Orion.

While testing the bean and seeing if I can connect and make calls to the
bean properties, I added these lines in my jsp file:


<jsp:useBean id="dsb" class="percepticon.db.DataSourceBean" scope="session"
/>
<jsp:setProperty name="dsb" property="setDataSourceJdbcDriver"
value="oracle.jdbc.driver.OracleDriver"/>

For some reason I get an error saying

Property setDataSourceJdbcDriver of bean percepticon.db.DataSourceBean not
found

But if I look at the DataSourceBean.class file, I can see the
setDataSourceJdbcDriver property.

What gives?  What am I missing?  Our Jar file contains the proper BeanInfo
classes, as well as the manifest.mf file.

Thanks for any clues you could give me.  IN the mean time I'm going to read
some more on the jsp site to see if I mis used a tag somewhere.

Robert


Reply via email to