Páginas filhas
  • Intellector 9 - API - Executando Políticas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

  • SOAP
    • WSDL - http://<SERVIDOR>:PORTA/iw-editor/services/PolicyExecution?wsdl
    • Execução de política (POST) - 
      • - http://<SERVIDOR>:PORTA/iw-editor/services/PolicyExecution/executePolicy?xmlInputString=
        Bloco de código
        languagexml
        titleExemplo XML
        <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsp="http://intellector.tools.com.br/services/WSPolicyExecution/">
           <soapenv:Header/>
           <soapenv:Body>
              <wsp:executePolicy>
                 <xmlInputString>
                 <![CDATA[<?xml version="1.0"
                 encoding="UTF-8"?><raiz>
                 <programa>POLITICA</programa>
                 <layout>Layout_POLITICA</layout>
                 <tipo>TIPO_POLITICA</tipo>
                 <usuario>admin</usuario>
                 <senha>tools01</senha>
                 <VARIAVEL_ENTRADA_01>S</VARIAVEL_ENTRADA_01>
                 </raiz>]]>
                 </xmlInputString>
                 
        </wsp:executePolicy>
           </soapenv:Body>
        </soapenv:Envelope>
    • Execução de política batch (POST) - 
      • - http://<SERVIDOR>:PORTA/iw-editor/services/PolicyExecution/executePolicyBatch?xmlInputString=

        Bloco de código
        languagexml
        titleExemplo XML
        <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsp="http://intellector.tools.com.br/services/WSPolicyExecution/">
           <soapenv:Header/>
           <soapenv:Body>
              <wsp:executePolicyBatch>
                 <xmlInputString>
        <![CDATA[<?xml version="1.0" encoding="UTF-8"?>
        <lote>
        	<programa_lote>
        		<programa>POLITICA</programa>
        		<layout>layout_POLITICA</layout>
        		<tipo>TIPO_POLITICA</tipo>
        		<usuario>admin</usuario>
        		<senha>tools01</senha>
        	</programa_lote>
        	<lotes>
        		<raiz>
        			<VARIAVEL_ENTRADA_01>VALOR</VARIAVEL_ENTRADA_01>
        		</raiz>
        	</lotes>
        </lote>]]>
                 </xmlInputString>
                 
        </wsp:executePolicyBatch>
           </soapenv:Body>
        </soapenv:Envelope>

...