Quotewerks and suitecrm 8.6

Has anybody gotten QuoteWerks from Aspire Technologies, to work with suitecrm 8.x I have it working with 7.14.2 but I had to edit a PHP file to make it work. (soap issue?)

I want to make sure it is possible with 8.x before I upgrade to 8.6

I think you need to ask on their forum about the support with 8.x version.

Officially they only support SugarCRM, so I am looking for any experience people have.

Share the edit - which PHP file, which line(s), what changes?

from: Soap api problems after upgrading 7.14 & php 8.2 - #3 by pepeflores

file: /var/www/html/crm/include/nusoap/nusoap.php
from

         } elseif ($delim == '..') {
             $this->debug('in invoke_method, calling class method using call_user_func_array()');
             $call_arg = array($class, $method);

TO

       } elseif ($delim == '..') {
           $this->debug('in invoke_method, calling class method using call_user_func_array()');
          $instance = new $class();
           $call_arg = array(&$instance, $method);

It would probably work with Suite 8, because Suite 8 is a new front end web user interface in the browser, while this Quotewerks app connects to Suite using back end SOAP API.

Can you start up a bitnami docker container of Suite 8.6, edit the nusoap.php file, try your Quotewerks on it, and report back your test results here?