Hi,
On a old Coldfusion 8 app, we were able to do something like that:
<cfset ws = createObject("webservice", "https://example.com/mywebservice.wsdl")>
<cfset ws._setProperty('javax.xml.rpc.service.endpoint.address',"http://localhost:1234")>
Lucee generate the error :
The method/operation [_setProperty] does not exist, only the following methods/operations are available: [example1, example2, example3, etc…].
The _setProperty was probably an undocumented way to change a property of a webservice and I believe It’s not working on recent versions of ACF too.
Is there any equivalent on Lucee to change the endpoint?
Thank you