Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8349117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T07:53:55+00:00 2026-06-09T07:53:55+00:00

IF I use this schema: <?xml version=1.0 encoding=UTF-8?> <xsd:schema xmlns:xsd=http://www.w3.org/2001/XMLSchema elementFormDefault=qualified> <xsd:element name=Chick> <xsd:complexType>

  • 0

IF I use this schema:

<?xml version="1.0" encoding="UTF-8"?>
 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
elementFormDefault="qualified">
<xsd:element name="Chick">
   <xsd:complexType>
        <xsd:sequence>
            <xsd:element name="count" type="xsd:decimal" />
        </xsd:sequence>
    </xsd:complexType>
</xsd:element>
</xsd:schema>

With this wsdl:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.example.org/test/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="test"
xmlns:chi="chick"
targetNamespace="http://www.example.org/test/">
<wsdl:types>
    <xsd:schema targetNamespace="http://www.example.org/test/">
        <xsd:include schemaLocation="testschema.xsd"></xsd:include>
        <xsd:include  id="ada" schemaLocation="testschema.xsd" />
        <xsd:element name="doTheRightThing">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element ref="Chick" />
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:element name="doTheRightThingResponse">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="out" type="xsd:string" />
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
    </xsd:schema>
</wsdl:types>
<wsdl:message name="doTheRightThingRequest">
    <wsdl:part element="tns:doTheRightThing" name="parameters" />
</wsdl:message>
<wsdl:message name="doTheRightThingResponse">
    <wsdl:part element="tns:doTheRightThingResponse" name="parameters" />
</wsdl:message>
<wsdl:portType name="test">
    <wsdl:operation name="doTheRightThing">
        <wsdl:input message="tns:doTheRightThingRequest" />
        <wsdl:output message="tns:doTheRightThingResponse" />
    </wsdl:operation>
</wsdl:portType>
<wsdl:binding name="testSOAP" type="tns:test">
    <soap:binding style="document"
        transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="doTheRightThing">
        <soap:operation
            soapAction="http://www.example.org/test/doTheRightThing" />
        <wsdl:input>
            <soap:body use="literal" />
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" />
        </wsdl:output>
    </wsdl:operation>
</wsdl:binding>
<wsdl:service name="test">
    <wsdl:port binding="tns:testSOAP" name="testSOAP">
        <soap:address location="http://www.example.org/" />
    </wsdl:port>
</wsdl:service>
    </wsdl:definitions>

I get this error message:

Error building the Schema Type system for the WSDL:
D:\Oracle\Middleware_11.1.1.6.0\user_projects\domains\osb_cookbook_domain\test:0: error: src-resolve.a: Could not find element ‘Chick’. Do you mean to refer to the element named Chick@http://www.example.org/test/ (in testschema)?

If I change this line in wsdl:

 <xsd:element ref="Chick" />

to this:

 <xsd:element ref="tns:Chick" />

I could not deploy, OEPE returns this error message:

The WSDL is not semantically valid: error: src-resolve: element ‘Chick@http://www.example.org/test/’ not found..

Is this a bug?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T07:53:57+00:00Added an answer on June 9, 2026 at 7:53 am

    Patch 14003546 solved this issue:

    WSDL WITH EMBEDDED SCHEMA INCLUDE TO NO-NAMESPACE FAILS VALIDATION

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following start of an XSD: <?xml version=1.0 encoding=UTF-8?> <xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema xmlns:no=http://www.sychophants.com>
i have this xml schema <?xml version=1.0 encoding=UTF-8?> <xs:schema xmlns=http://hidden/abc xmlns:xs=http://www.w3.org/2001/XMLSchema targetNamespace=http://hidden/abc elementFormDefault=qualified attributeFormDefault=unqualified
I'm using an .xsd schema like this <?xml version=1.0 encoding=utf-8?> <xs:schema id=NewDataSet xmlns= xmlns:xs=http://www.w3.org/2001/XMLSchema
I have an xsd document that starts with: <?xml version=1.0 encoding=UTF-8?> <xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema> <xs:import
I have following XML schema: <?xml version=1.0 encoding=UTF-8 standalone=no?> <xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema> <xs:element name=content type=contentType/>
I created the following XSD (with Eclipse): <?xml version=1.0 encoding=UTF-8?> <schema targetNamespace=http://www.example.com xmlns=http://www.w3.org/2001/XMLSchema xmlns:tns=http://www.example.com>
where is the error in this applicationContext.fml file ? <?xml version=1.0 encoding=UTF-8?> <beans xmlns=http://www.springframework.org/schema/beans
I have defined a xml schema as below <?xml version=1.0 encoding=utf-8?> <xs:schema id=PacketTemplate targetNamespace=http://tempuri.org/PacketTemplate.xsd
I have an XML document that looks like this: <?xml version=1.0 encoding=UTF-8?> <xs:msgdata xmlns:xs=http://www.myCompany.com
here is my web.xml : <?xml version=1.0 encoding=UTF-8?> <web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee xmlns:xml=http://www.w3.org/XML/1998/namespace xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.