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 generating client proxy from external webservice - tag not supported

Former Member
0 Likes
426

Hi experts -

I am trying to generate a client proxy from an external WSDL. It's erroring out with the following message:

Proxy generation terminated: WSDL error (<extension> not supported)

Message no. SPRX038

Background

During proxy generation, an interface description in WSDL format is fetched from the Integration Builder or from another source and interpreted. This WSDL document must describe the whole interface correctly.

==> Display Query

==> Display WSDL Document

Diagnosis

The language element

"<extension>"

was used in the WSDL document.

This language element is not supported by ABAP proxy generation.

The WSDL that's causing a problem looks like this:

<complexType name="organization-name">

<simpleContent>

<extension base="string"/>

</simpleContent>

</complexType>

<complexType name="organization-level">

<simpleContent>

<extension base="string"/>

</simpleContent>

</complexType>

<complexType name="organization-type">

<simpleContent>

<extension base="string"/>

</simpleContent>

</complexType>

<complexType name="dashboard-folder">

<simpleContent>

<extension base="string"/>

</simpleContent>

</complexType>

Does anyone know how I can fix it so that I can successfully import the WSDL and use the webservice?

Please let me know - thanks so much!

Abby

1 REPLY 1
Read only

Former Member
0 Likes
332

Hi All -

In case this helps someone else - <extension> is not supported under the <complexContent> tag, only the <SimpleContent> tag (but will be after SP14). To see a full list of tags that are and aren't supported, please check OSS 944029.

Have a great day -

Abby