| Summary: | Fix uddi_v3replication.xsd within juddiv3.war | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise SOA Platform 5 | Reporter: | Kevin Conner <kevin.conner> |
| Component: | JBossESB | Assignee: | Kevin Conner <kevin.conner> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 5.1.0.ER3 | ||
| Target Milestone: | --- | ||
| Target Release: | 5.1.0 GA | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | http://jira.jboss.org/jira/browse/SOA-2439 | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-02-13 05:20:10 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
Link: Added: This issue depends JBESB-3512 Writer: Added: Darrin Release Notes Docs Status: Added: Not Yet Documented Reopening to add Release Note text. Will set back to Closed -> Done in a moment. Release Notes Text: Added: The jUDDI Setting back to Closed -> Done. Release Notes Docs Status: Removed: Not Yet Documented Added: Documented as Resolved Issue Release Notes Text: Removed: The jUDDI Added: The jUDDI schema specified an invalid type for the WSDL in the uddi_v3replication.xsl file of the juddiv3.war. The WSDL type has been corrected. |
project_key: SOA The jUDDI schema specifies an invalid type for the WSDL. Replace <element name="get_changeRecords"> <complexType> <sequence> <element name="requestingNode" type="uddi_repl:operatorNodeID_type"/> <element name="changesAlreadySeen" type="uddi_repl:highWaterMarkVector_type" minOccurs="0"/> <choice minOccurs="0"> <element name="responseLimitCount" type="integer"/> <element name="responseLimitVector" type="uddi_repl:highWaterMarkVector_type"/> </choice> </sequence> </complexType> </element> with <element name="get_changeRecords"> <complexType> <sequence> <element name="requestingNode" type="uddi_repl:operatorNodeID_type"/> <element name="changesAlreadySeen" type="uddi_repl:highWaterMarkVector_type" minOccurs="0"/> <element name="responseLimitCount" type="integer" minOccurs="0"/> <element name="responseLimitVector" type="uddi_repl:highWaterMarkVector_type" minOccurs="0"/> </sequence> </complexType> </element> to workaround the issue.