Luca Zago wrote:
> 
> Hi,
> - has somebody ever created a template to associate to webDav servlet?
> In my opinion it's a tricky..because it does only a forward....then the
> only solution for the template is building
> another servlet..with different html format..inside.

I don't understand. Could you try to explain why it's a problem that the 
webdav-servlet forwards to the template? You can forward to a JSP-page 
that uses the Slide taglib as a template, for example.

> - And what about creating new roles? when I create a user with a new
> role I got the error:
> 
> Sep 2002 19:34:25 - org.apache.slide.common.Domain - WARNING - Service 
> slidestore.reference.JDBCDescriptorsStore@88df60 access error : 
> mypackage.acl.slide.roles.SlideEditorImpl
> org.apache.slide.common.ServiceAccessException: Service 
> slidestore.reference.JDBCDescriptorsStore@88df60 access error : 
> mypackage.acl.slide.roles.
> SlideEditorImpl

Make sure that class (SlideEditorImpl) is public and not abstract, i.e. 
it must be instantiatable from outside the mypackage.acl.slide.riles 
package.

In addition, it needs to extend ObjectNode, and have a constructor that 
matches the one in ObjectNode. I.e. it should look like:

public class SlideEditorImpl extends SubjectNode {

   public SlideEditorImpl(String uri, Vector children, Vector links) {
     super(uri, children, links);
   }

   [...]

}

-- 
Christopher Lenz
/=/ cmlenz at gmx.de


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

Reply via email to