Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Info

For release to public (under construction) 

Table of Contents

SOAP API Documentation:

ETX 901 (

...

latest)

9_0_1_eTimeXpressWebServicesAPI.pdf

...

9_0_1_eTimeXpressWebServicesAPI_Examples.pdf

ETX 814 (

...

sunset but is supported)

8_0_10_eTimeXpressWebServicesAPI.pdf

...

8_0_10_eTimeXpressWebServicesAPI_Examples.pdf

...

Setup

Simple video on how to test and run SOAP services using free SOAP UI tool

Run_Login_SOAP_Service.mp4

Run_Login_SOAP_Service.mp4

The latest version of SOAP API documentation is for ETX 8.0.10 → ETX 8.14 :

ETX900:

CURRENT STATUS: SOAP wsdl is generated and will be used in 900 PRODUCTION for Andy Frain client test only. It is based on SOAP Version 9.0.0 (current production code) and it is ok for ETX900. It Includes following files;

900\NoBeforeImage\eTimeWS.wsdl

900\NoBeforeImage\eTimeWS.wsm

900\WithBeforeImage\eTimeWS.wsdl

900\WithBeforeImage\eTimeWS.wsm

DEF\eTime900.xpxg

Note: These files are put in the current SOAP API deployment directory and are used by admins:  \\celamas01-117\Celdevel\DeployEtime\webservices\900 

SOAP API documentation (9.0.0): none High level chages described here: https://celayix.myjetbrains.com/youtrack/issue/ET-1446

Older versions are available here.

REST WEB API version is available here

Example Requests

using free SOAP UI tool

Run_Login_SOAP_Service.mp4

Run_Login_SOAP_Service.mp4

Examples

Login request

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SOAP-ENV:Body xmlns:s0="urn:L1340384D62:eTimeWS" 
                 xmlns:s1="http://www.w3.org/2001/XMLSchema">
    <s0:apSrv>
      <dsContext>
        <ttContext>
         <contextGroup>PARAM</contextGroup>
         <contextName>pcUserID</contextName>
         <contextValue>wsdl</contextValue>
         <contextOperator />
         <contextType />
        </ttContext>

        <ttContext>
         <contextGroup>PARAM</contextGroup>
         <contextName>pcPassword</contextName>
         <contextValue>_____PUT_THE_CORRECT_PASSWORD_HERE_____</contextValue>
         <contextOperator />
         <contextType />
        </ttContext>
      </dsContext>
    </s0:apSrv>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

...