anyone encountered such error before ```C:\ColdFus...
# cfml-general
s
anyone encountered such error before
Copy code
C:\ColdFusion2021\cfusion\stubs\WS_-1374943156_2\src\org\w3\www\_2001\xmlschema\AnySimpleType.java:81: error: cannot find symbol if (local==null){ ^ symbol: variable local location: class AnySimpleType C:\ColdFusion2021\cfusion\stubs\WS_-1374943156_2\src\org\w3\www\_2001\xmlschema\AnySimpleType.java:87: error: cannot find symbol xmlWriter.writeCharacters(org.apache.axis2.databinding.utils.ConverterUtil.convertToString(local)); ^ symbol: variable local location: class AnySimpleType C:\ColdFusion2021\cfusion\stubs\WS_-1374943156_2\src\org\w3\www\_2001\xmlschema\AnySimpleType.java:277: error: cannot find symbol org.apache.axis2.databinding.utils.ConverterUtil.convertToString(local) ^ symbol: variable local location: class AnySimpleType Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: C:\ColdFusion2021\cfusion\stubs\WS_-1374943156_2\src\com\oracle\xmlns\apps\cdm\foundation\parties\personservice\applicationmodule\PersonServiceStub.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 3 errors
m
Um, what exactly were you doing when this occurred?
s
i am trying to a call a webservice
Copy code
<cfscript>
    ws = CreateObject(
        "webservice",
        "<https://test.oraclecloud.com/foundationParties/PersonService?wsdl>"
    );
    writedump(ws); //should show all functions
    abort;
    // req = getSOAPRequest(ws);
    // writedump(req);
</cfscript>
it works when i use the soapUI
but when used in cf2021, i am getting this error
a
s
yes it is definitely on stackoverflow
i literally have no idea hat kind of rror is this so have to ask someone if they have encountered this before or might get some help what this all relate to