FileService


Click here for a complete list of operations.

MakeNewVersion

Create new fil structure in Rambase
- authKey = authentification key obtained from Login.Rambase.Net
- db = database where the new fil structure should be created
- verDescr = RamBase FIL VerDescr
- subject = RamBase FIL Subject
- docRef = RamBase FIL DocRef
- docRefTable = RamBase FIL DocRefTable
- module = RamBase FIL Module
- revision = RamBase FIL Revision
- sortPrio = RamBase FIL SortPrio
- additional = RamBase FIL Additional
- readAdmit = RamBase FIL ReadAdmit
- writeAdmit = RamBase FIL WriteAdmit
- readPerAdmit = RamBase FIL ReadPerAdmit
- writePerAdmit = RamBase FIL WritePerASdmit

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /FileService.asmx HTTP/1.1
Host: files.rambase.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://files.rambase.net/MakeNewVersion"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <MakeNewVersion xmlns="https://files.rambase.net">
      <authKey>string</authKey>
      <db>string</db>
      <verDescr>string</verDescr>
      <subject>string</subject>
      <docRef>string</docRef>
      <docRefTable>string</docRefTable>
      <module>string</module>
      <revision>string</revision>
      <sortPrio>string</sortPrio>
      <additional>string</additional>
      <readAdmit>string</readAdmit>
      <writeAdmit>string</writeAdmit>
      <readPerAdmit>string</readPerAdmit>
      <writePerAdmit>string</writePerAdmit>
    </MakeNewVersion>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <MakeNewVersionResponse xmlns="https://files.rambase.net">
      <MakeNewVersionResult>
        <NewFullDocid>string</NewFullDocid>
        <NewMasterUrl>string</NewMasterUrl>
        <NewNO>string</NewNO>
      </MakeNewVersionResult>
    </MakeNewVersionResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /FileService.asmx HTTP/1.1
Host: files.rambase.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <MakeNewVersion xmlns="https://files.rambase.net">
      <authKey>string</authKey>
      <db>string</db>
      <verDescr>string</verDescr>
      <subject>string</subject>
      <docRef>string</docRef>
      <docRefTable>string</docRefTable>
      <module>string</module>
      <revision>string</revision>
      <sortPrio>string</sortPrio>
      <additional>string</additional>
      <readAdmit>string</readAdmit>
      <writeAdmit>string</writeAdmit>
      <readPerAdmit>string</readPerAdmit>
      <writePerAdmit>string</writePerAdmit>
    </MakeNewVersion>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <MakeNewVersionResponse xmlns="https://files.rambase.net">
      <MakeNewVersionResult>
        <NewFullDocid>string</NewFullDocid>
        <NewMasterUrl>string</NewMasterUrl>
        <NewNO>string</NewNO>
      </MakeNewVersionResult>
    </MakeNewVersionResponse>
  </soap12:Body>
</soap12:Envelope>