Hi Dirk.

> You didn't login so you are a guest and guests cannot put files on the
> server.
> If you want to enable that look in domain.xml:
>           <!-- ### Give read/write/manage permission to guest ###
>                Uncomment the following line to give permission to do
>                all actions on /files to guest (unauthenticated users)
> -->
>           <permission action="/actions" subject="/users/guest"/>
>


The only domain.xml files I could find are the ones under slide/examples/xml
and slide/examples/version. And they are exactly the same. Here's what they
look like. Nothing was/is commented out, so I don't really see how I can
uncomment something??


Besides, how do I configure new namespaces??

Jakob

---------------------

<?xml version="1.0"?>

<slide>

  <namespace name="xml">

    <definition>

      <store name="memory">
        <contentstore name="file"
         classname="slidestore.file.FileContentStoreNoVersioning">
          <parameter name="rootpath">files</parameter>
        </contentstore>
      </store>

      <scope match="/" store="memory" />

    </definition>

    <configuration>
      <default-action>/actions</default-action>
      <userspath>/users</userspath>
      <filespath></filespath>
      <parameter name="dav">true</parameter>
      <parameter name="standalone">true</parameter>
    </configuration>

    <data>

      <objectnode classname="org.apache.slide.structure.SubjectNode"
uri="/">

        <permission action="/actions" subject="/users/root"/>

        <!-- /users represents the unauthenticated user -->
        <objectnode classname="org.apache.slide.structure.SubjectNode"
         uri="/users">

          <!-- /users/root represents the administrator -->

          <objectnode classname="org.apache.slide.structure.SubjectNode"
           uri="/users/root">
          </objectnode>

          <!-- /users/guest represents an authenticated guest user -->

          <objectnode classname="org.apache.slide.structure.SubjectNode"
           uri="/users/guest">
          </objectnode>

        </objectnode>

        <objectnode classname="org.apache.slide.structure.ActionNode"
         uri="/actions">
        </objectnode>

      </objectnode>

    </data>

  </namespace>

</slide>


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

Reply via email to