Virtual Directory Properties

Virtual directory properties are specified by the properties node. This node is presented by type VDirProperties (virtdir.xsd). It has the following graphics model:

VDirProperties

 

The following sample packet creates a virtual directory and specifies the main properties for it:

<packet>
<virtdir>
<create>
   <site-id>1</site-id>
   <name>/my_vdir</name>
   <properties>
      <real-path>/real_dir</real-path>
      <access-source>true</access-source>
      <access-read>true</access-read>
      <access-write>true</access-write>
      <dir-browsing>true</dir-browsing>
      <log-visits>true</log-visits>
      <execute-perm>none</execute-perm>
      <access-anonymous>true</access-anonymous>
      <require-ssl>true</require-ssl>
      <asp-buffering-limit>1024</asp-buffering-limit>
      <asp-enabled-server-debug>true</asp-enabled-server-debug>
   </properties>
</create>
</virtdir>
</packet>