OpenCATS icon indicating copy to clipboard operation
OpenCATS copied to clipboard

Mass Import Resumes

Open rajanaga opened this issue 5 years ago • 2 comments

I am trying to upload mass import resumes. It shows error in Step 3.

Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://localhost:8080/ats/wsdl/parse.wsdl' : failed to load external entity "http://localhost:8080/ats/

I can't proceed further..

rajanaga avatar May 07 '20 10:05 rajanaga

I am trying to upload mass import resumes. It shows error in Step 3.

Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://localhost:8080/ats/wsdl/parse.wsdl' : failed to load external entity "http://localhost:8080/ats/

I can't proceed further..

Fixed By Changing below code in ParseUtility.php

$options = array( 'location' => 'wsdl/parse.wsdl', 'uri' => 'wsdl/parse.wsdl' ); $this->_client = new SoapClient(NULL, $options);

##OLD CODE $this->_client = new SoapClient($this->_wsdl);

rajanaga avatar May 08 '20 13:05 rajanaga

*review for any required codebase change.

RussH avatar Jun 09 '20 08:06 RussH