Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

Problem with WSDL :

Hello,
I've some trouble with a WSDL. The error comes from a complextype which inherit from another complex type.
I added the definition :
xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance/" targetNamespace=" http://www.talend.org/service/"
But when I try to read the WSDL with SoapUI, I got the following error message :
Could not find type 'SpecialisationContactType'. Do you mean to refer to the type named SpecialisationContactType@ http://www.talend.org/service/ (in AnnuaireGroupe.xml)?
Here is my WSDL :
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="AnnuaireGroupeService"
xmlns:wsdl=" http://schemas.xmlsoap.org/wsdl/" xmlns:soap="

To see the whole post, download it here
Labels (4)
2 Replies
dkulp
Contributor
Contributor

The lines like:
<xsd:extension base="SpecialisationContactType">
likely need to be changed to:
<xsd:extension base="tns 0683p000009M9p6.pngpecialisationContactType">

There is nothing that defines a default namespace so you need to make sure the proper prefix is used when referencing the other types.
erwan2
Contributor
Contributor

Hello,
thank you, no more issue.