‎2011 Jul 11 2:57 PM
Hi,
I'm trying to generate a proxy-client from the following WSDL file: https://www.anlagenkataster.de/opencms/services/ZuesService?wsdl=1.1
Unfortunately the generation aborts everytime I try saying:
"Exception occurred in library handler
Incorrect value: Unknown Namespace http://schemas.xmlsoap.org/soap/encoding/";
I also tried the WSDL using SoapUI and it works fine...
Has anyone an idea how I will get ABAP to generate the client?
Thanks,
Dennis
‎2011 Jul 12 9:18 PM
Change encoding name space
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
to
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
After that also you will get error communication framework error then use below thread
‎2014 Oct 22 8:47 AM