GfiPepWS


Click here for a complete list of operations.

Liste_AxesAnalytiques

Permet de récupérer la liste des axes analytiques actifs dans PEP.

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 /GFIPepProdWS/GfiPepWS.asmx HTTP/1.1
Host: pepws-prod.inj.isoftcloud.cloud
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/Liste_AxesAnalytiques"

<?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:Header>
    <UserCredentials xmlns="http://tempuri.org/">
      <userName>string</userName>
      <password>string</password>
    </UserCredentials>
  </soap:Header>
  <soap:Body>
    <Liste_AxesAnalytiques xmlns="http://tempuri.org/">
      <arg>
        <ETAB>string</ETAB>
        <BUDGET>string</BUDGET>
        <LIC_TYP_VEN>string</LIC_TYP_VEN>
      </arg>
    </Liste_AxesAnalytiques>
  </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>
    <Liste_AxesAnalytiquesResponse xmlns="http://tempuri.org/">
      <Liste_AxesAnalytiquesResult>
        <InterfaceAxeAnalytiqueRetourWSInfo>
          <LIC_TYP_VEN>string</LIC_TYP_VEN>
          <DAT_INA_VEN>string</DAT_INA_VEN>
          <COD_EXE_ANA>string</COD_EXE_ANA>
          <COD_MOD_ANA>string</COD_MOD_ANA>
          <VEN_TOT>string</VEN_TOT>
          <DOM_ENV_PER>string</DOM_ENV_PER>
          <DOM_ENV_FON>string</DOM_ENV_FON>
          <DOM_ENV_INV>string</DOM_ENV_INV>
          <DOM_ENV_INT>string</DOM_ENV_INT>
          <OBL_VEN_DP>string</OBL_VEN_DP>
          <OBL_VEN_REC>string</OBL_VEN_REC>
          <OBL_VEN_CSF>string</OBL_VEN_CSF>
          <OBL_VEN_FAC>string</OBL_VEN_FAC>
          <OBL_VEN_EJ>string</OBL_VEN_EJ>
          <OBL_VEN_RAE>string</OBL_VEN_RAE>
          <OBL_VEN_CDE>string</OBL_VEN_CDE>
          <OBL_VEN_ART>string</OBL_VEN_ART>
          <OBL_VEN_DCO>string</OBL_VEN_DCO>
          <GES_PAR_SEG>string</GES_PAR_SEG>
          <LG_ZON_SEG>string</LG_ZON_SEG>
          <TYP_PRE_ANA>string</TYP_PRE_ANA>
        </InterfaceAxeAnalytiqueRetourWSInfo>
        <InterfaceAxeAnalytiqueRetourWSInfo>
          <LIC_TYP_VEN>string</LIC_TYP_VEN>
          <DAT_INA_VEN>string</DAT_INA_VEN>
          <COD_EXE_ANA>string</COD_EXE_ANA>
          <COD_MOD_ANA>string</COD_MOD_ANA>
          <VEN_TOT>string</VEN_TOT>
          <DOM_ENV_PER>string</DOM_ENV_PER>
          <DOM_ENV_FON>string</DOM_ENV_FON>
          <DOM_ENV_INV>string</DOM_ENV_INV>
          <DOM_ENV_INT>string</DOM_ENV_INT>
          <OBL_VEN_DP>string</OBL_VEN_DP>
          <OBL_VEN_REC>string</OBL_VEN_REC>
          <OBL_VEN_CSF>string</OBL_VEN_CSF>
          <OBL_VEN_FAC>string</OBL_VEN_FAC>
          <OBL_VEN_EJ>string</OBL_VEN_EJ>
          <OBL_VEN_RAE>string</OBL_VEN_RAE>
          <OBL_VEN_CDE>string</OBL_VEN_CDE>
          <OBL_VEN_ART>string</OBL_VEN_ART>
          <OBL_VEN_DCO>string</OBL_VEN_DCO>
          <GES_PAR_SEG>string</GES_PAR_SEG>
          <LG_ZON_SEG>string</LG_ZON_SEG>
          <TYP_PRE_ANA>string</TYP_PRE_ANA>
        </InterfaceAxeAnalytiqueRetourWSInfo>
      </Liste_AxesAnalytiquesResult>
    </Liste_AxesAnalytiquesResponse>
  </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 /GFIPepProdWS/GfiPepWS.asmx HTTP/1.1
Host: pepws-prod.inj.isoftcloud.cloud
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:Header>
    <UserCredentials xmlns="http://tempuri.org/">
      <userName>string</userName>
      <password>string</password>
    </UserCredentials>
  </soap12:Header>
  <soap12:Body>
    <Liste_AxesAnalytiques xmlns="http://tempuri.org/">
      <arg>
        <ETAB>string</ETAB>
        <BUDGET>string</BUDGET>
        <LIC_TYP_VEN>string</LIC_TYP_VEN>
      </arg>
    </Liste_AxesAnalytiques>
  </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>
    <Liste_AxesAnalytiquesResponse xmlns="http://tempuri.org/">
      <Liste_AxesAnalytiquesResult>
        <InterfaceAxeAnalytiqueRetourWSInfo>
          <LIC_TYP_VEN>string</LIC_TYP_VEN>
          <DAT_INA_VEN>string</DAT_INA_VEN>
          <COD_EXE_ANA>string</COD_EXE_ANA>
          <COD_MOD_ANA>string</COD_MOD_ANA>
          <VEN_TOT>string</VEN_TOT>
          <DOM_ENV_PER>string</DOM_ENV_PER>
          <DOM_ENV_FON>string</DOM_ENV_FON>
          <DOM_ENV_INV>string</DOM_ENV_INV>
          <DOM_ENV_INT>string</DOM_ENV_INT>
          <OBL_VEN_DP>string</OBL_VEN_DP>
          <OBL_VEN_REC>string</OBL_VEN_REC>
          <OBL_VEN_CSF>string</OBL_VEN_CSF>
          <OBL_VEN_FAC>string</OBL_VEN_FAC>
          <OBL_VEN_EJ>string</OBL_VEN_EJ>
          <OBL_VEN_RAE>string</OBL_VEN_RAE>
          <OBL_VEN_CDE>string</OBL_VEN_CDE>
          <OBL_VEN_ART>string</OBL_VEN_ART>
          <OBL_VEN_DCO>string</OBL_VEN_DCO>
          <GES_PAR_SEG>string</GES_PAR_SEG>
          <LG_ZON_SEG>string</LG_ZON_SEG>
          <TYP_PRE_ANA>string</TYP_PRE_ANA>
        </InterfaceAxeAnalytiqueRetourWSInfo>
        <InterfaceAxeAnalytiqueRetourWSInfo>
          <LIC_TYP_VEN>string</LIC_TYP_VEN>
          <DAT_INA_VEN>string</DAT_INA_VEN>
          <COD_EXE_ANA>string</COD_EXE_ANA>
          <COD_MOD_ANA>string</COD_MOD_ANA>
          <VEN_TOT>string</VEN_TOT>
          <DOM_ENV_PER>string</DOM_ENV_PER>
          <DOM_ENV_FON>string</DOM_ENV_FON>
          <DOM_ENV_INV>string</DOM_ENV_INV>
          <DOM_ENV_INT>string</DOM_ENV_INT>
          <OBL_VEN_DP>string</OBL_VEN_DP>
          <OBL_VEN_REC>string</OBL_VEN_REC>
          <OBL_VEN_CSF>string</OBL_VEN_CSF>
          <OBL_VEN_FAC>string</OBL_VEN_FAC>
          <OBL_VEN_EJ>string</OBL_VEN_EJ>
          <OBL_VEN_RAE>string</OBL_VEN_RAE>
          <OBL_VEN_CDE>string</OBL_VEN_CDE>
          <OBL_VEN_ART>string</OBL_VEN_ART>
          <OBL_VEN_DCO>string</OBL_VEN_DCO>
          <GES_PAR_SEG>string</GES_PAR_SEG>
          <LG_ZON_SEG>string</LG_ZON_SEG>
          <TYP_PRE_ANA>string</TYP_PRE_ANA>
        </InterfaceAxeAnalytiqueRetourWSInfo>
      </Liste_AxesAnalytiquesResult>
    </Liste_AxesAnalytiquesResponse>
  </soap12:Body>
</soap12:Envelope>