spring-projects / spring-ws

Spring Web Services
https://spring.io/projects/spring-ws
Apache License 2.0
325 stars 311 forks source link

Support Finding Elements matching Suffix from schema using includes [SWS-348] #499

Open gregturn opened 16 years ago

gregturn commented 16 years ago

Stephen Duncan Jr opened SWS-348 and commented

When using org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition, support discovering Request Response element from the included schemas when pointing to a schema like:

\<?xml version="1.0" encoding="UTF-8"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.com/foo" elementFormDefault="qualified">

<xs:include schemaLocation="bar.xsd" />
<xs:include schemaLocation="baz.xsd" />

</xs:schema>


No further details from SWS-348

gregturn commented 16 years ago

Arjen Poutsma commented

Doesn't the CommonsXsdSchemaCollection, in combination with an inline=true property, do that?

gregturn commented 16 years ago

Stephen Duncan Jr commented

Sorry, that was a missed detail from my request: that included (not imported) schemas work when NOT inlining schemas.

gregturn commented 16 years ago

Arjen Poutsma commented

I've been trying to find a fix for this issue for a couple of days, but none of the ideas work, especially when considering circular includes, and other issues.

So I will move this issue from 1.5.4, and pick it up again if I (or anybody else) get an idea how to solve it.