Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error while generating new proxy-client

Former Member
0 Likes
520

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

2 REPLIES 2
Read only

former_member611181
Participant
0 Likes
411

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

Read only

0 Likes
411

Thanks Sam, it worked wor us.