Hi,
This is not a Lucee problem but perhaps someone can help.
Lucee version: 5.2.1.9
I’m trying to consume a web service but I’m getting the following error:
"An error occurred while checking the security for the message."
at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
I can create an object of the WSDL and the top part of the dump looks like this:

So that’s correct. I create the object like this:
<cfset ws = createObject( "webservice", "https://testapi.kedin.nl/mediatorservice.svc?singlewsdl" )>
<cfdump var="#ws#">
Has anyone seen this error before?
Thanks
Hi @Cliff_Mosdall,
I can’t see any error on lucee, Running on the latest version dump look like,
- Check with Latest version
- Did you see any other issue on lucee & Let me know If any issues found on webservice.
Thanks
cfmitrah
Hi cfmitrah,
Thanks for the reply. I wasn’t clear in the original post. The webservice requires a username and password. The error occurs when I call one of the methods. It’s not a Lucee problem. I’m sure there’s some sort of incompatibility between the webservice and Axis - that’s my guess. Here’s the code:
cfset ws = createObject( “webservice”, “https://teststub.kedin.nl/KedinStubService.svc?wsdl”, {username=“StubUser”,password=“T68tlChm”} )
cfdump var=“#ws#”
cfset args = StructNew()
cfset args.testRequest.TestProperty = “Test working!”
cfset x = ws.GetResponse( args )
cfdump var=“#x#”