| Summary: | Wrong example code for subscribing to XML Exchange | |||
|---|---|---|---|---|
| Product: | Red Hat Enterprise MRG | Reporter: | Petr Matousek <pematous> | |
| Component: | Messaging_Programming_Reference | Assignee: | Jared MORGAN <jmorgan> | |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Petr Matousek <pematous> | |
| Severity: | medium | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | Development | CC: | esammons, mmurray | |
| Target Milestone: | 3.0 | |||
| Target Release: | --- | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1005757 (view as bug list) | Environment: | ||
| Last Closed: | 2015-01-22 15:27:41 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: | ||
| Bug Depends On: | ||||
| Bug Blocks: | 1005757 | |||
Lines removed. Thanks for catching that! http://deathstar1.usersys.redhat.com:3000/builds/19948-Messaging_Programming_Reference/#Subscribe_to_the_XML_Exchange Content approved. -> VERIFIED |
Description of problem: 4.10.4. Subscribe to the XML Exchange Following two lines shall be removed from the example code at the end of this chapter in order to show the proper xml exchange functionality. - rx = ssn.receiver('myxmlq; {create: always, link: {x-bindings: [{exchange: myxml, key: weather, arguments: {xquery: "./weather"}}]}}') - print rxaddr Explanation: The properly defined example consumer using a specific xml filter (rx = ssn.receiver(rxaddr)) is overwritten with a consumer that matches all the messages whose body content has the root XML element '<weather>'. The definition is followed by an extra print that was probably used for debug purpose and was left in the code. Version-Release number of selected component (if applicable): Messaging Programming Reference (mrg-m-2.x) - Revision 2-34 Messaging Programming Reference (mrg-m-3.0) - Revision 0.0.0-1 How reproducible: n/a Steps to Reproduce: n/a Actual results: Incorrect example code Expected results: functional example code Additional info: