Multiple Web Commands

It is possible to combine WCs in one single request, but this is not possible via the CGI implementation. You need to connect to the Web Service directly and provide own post-processing like XSLT transformation if required. There will be one response file, but with results for every command, unless an error has been encountered before the end of processing. The format is as follows:

<ProLinga>
  <Web Version=”1.0” >
    <Command Name="webcmd" Mode="Request" SessionId="sessid" Format="format">
      <Object Service="svc" Application="appn" Name="name">
        <Parameters>
          <Parameter Name="name">value</Parameter>
           . . .
           . . .
        </Parameters>
      </Object>
      <Object Service="svc" Application="appn" Name="name">
        <Parameters>
          <Parameter Name="name">value</Parameter>
           . . .
           . . .
        </Parameters>
      </Object>
      . . .
      . . .
    </Command>
  </Web>
</ProLinga>

Combining multiple WCs will result in better performance.