Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

NOTE
Zum Testen der Schnittstelle steht Ihnen auch der Primedocs For testing the interface the OneOffixx Connect Client (Windows) zur Verfügung.

Im Folgenden werden mögliche Anwendungsfälle gelistet und als Beispiel die minimale XML-Konfiguration aufgezeigt:

Bei jedem Anwendungsfall können natürlich noch die verschiedenen Connect Funktionen mitaufgerufen werden.

Beispiel

...

is available as well.

In the following, possible use cases are listed and the minimal XML configuration is shown as an example:

For each use case, of course, the various connect functions can also be called.

...

Example

In the following example, a document is to be created based on the template id "6bb49520-1ebd-4f68-bb5f-02f46a9e1ec8" und mit der and with the LanguageLcid "2055". Zusätzlich werden die zwei Dokumentfunktionen Dokument-Parameter und Profil-Daten mit Daten parametriertAdditionally the two document functions Document Parameter and Profile data are parameterized with data.

Code Block
languagexml
<OneOffixxConnectBatch xmlns="http://schema.oneoffixx.com/OneOffixxConnectBatch/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Entries>
    <OneOffixxConnect>
      <Arguments>
        <TemplateId>6bb49520-1ebd-4f68-bb5f-02f46a9e1ec8</TemplateId>
        <LanguageLcid>2055</LanguageLcid>
      </Arguments>
      <Function name="DocumentParameter" id="2de8db66-f3d7-456d-bba3-6bb0f12c1fb6">
        <Settings>
          <Value key="ShowDialog">false</Value>
        </Settings>
        <Arguments>
          <Value key="DocParam.Subject">#BetreffAusLotusNotes#<>#SubjectOfLotusNotes#</Value>
          <Value key="DocParam.RefNr">M1456-22</Value>
          <Value key="DocParam.CopyTo">
            <Line>#KopieAn1#</Line>
            <Line>#KopieAn2#</Line>
          </Value>
          <Value key="DocParam.Attachments">
            <Line>#Beilage1#</Line>
            <Line>#Beilage2#</Line>
          </Value>
        </Arguments>
      </Function>
      <Function name="ProfileData" id="5C8B5321-E02D-4A1C-80E3-627D40AEABAF">
        <Arguments>
          <Value key="Profile.User.FirstName">Max<>Jane</Value>
          <Value key="Profile.User.LastName">Mustermann<>Doe</Value>
        </Arguments>
      </Function>
    </OneOffixxConnect>
  </Entries>
</OneOffixxConnectBatch>

Als Resultat wird clientseitig das Dokument direkt As a result, on the client side, the document is opened directly in Microsoft Word geöffnet. Bei der serverseitigen Verarbeitung würde das erstellte .dotx dem Aufrufer zurückgegeben werden. In server-side processing, the created .dotx would be returned to the caller.