Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flattening wsdl:imports can not import XSD types correctly. #19

Closed
veewee opened this issue May 17, 2024 · 0 comments · Fixed by #20
Closed

Flattening wsdl:imports can not import XSD types correctly. #19

veewee opened this issue May 17, 2024 · 0 comments · Fixed by #20
Labels
bug Something isn't working

Comments

@veewee
Copy link
Member

veewee commented May 17, 2024

Bug Report

Q A
BC Break no
Version 1.8.0

Summary

See phpro/soap-client#517
WSDL: axlsqltoolkit.zip

The cisco AXL WSDL contains:

<definitions 
	xmlns="http://schemas.xmlsoap.org/wsdl/" 
	...>
	<import location="AXLSoap.xsd" namespace="http://www.cisco.com/AXL/API/15.0"/>
</definitiions>	

Current behaviour

The flattening process results in:

<definitions 
	xmlns="http://schemas.xmlsoap.org/wsdl/" 
	...>

	XSD CONTENT

        <types/>
</definitiions>	

Expected behaviour

<definitions 
	xmlns="http://schemas.xmlsoap.org/wsdl/" 
	...>
        <types>
         	XSD CONTENT
        </types>
</definitiions>	
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant