i am having trouble integrating SoapUI with TL. TL is installed on a server and the SoapUI is installed on user's Virtual Machine (VM)
My configurations:
TL configs:
Installation -> Windows Server 2012 R2
php-version -> 5.5.29
MySQL Server -> 5.6
Apache -> 2.4.16
SoapUI configs:
SoapUI -> 5.2.1
Installed on User's VM
Screenshot of the problem:

Scenario: I have filled in the example configuration. They are as follows:
<!-- Template mantissoapInterface -->
<issuetracker>
<username>username</username>
<password>PW</password>
<uribase>URI base of the database is given</uribase>
<!-- Configure This if you want be able TO CREATE ISSUES -->
<project>entered name of the project</project>
<category>Entered the category</category>
<!-- Configure This if you want NON STANDARD BEHAIVOUR for considered issue resolved -->
<resolvedstatus>
<status><code>80</code><verbose>resolved</verbose></status>
<status><code>90</code><verbose>closed</verbose></status>
</resolvedstatus>
</issuetracker>
Question: Where do i enable the SOAP extension? in the php.ini config file?
My findings in PHP.ini file is:
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1
; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="C:/Bitnami/TESTLI~1.14-/php/tmp"
; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400
; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5
They are all related to cache files but not enabling SOAP extension.