Bug 779557 (SOA-1933)
| Summary: | HttpGateway add support for different connectors | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise SOA Platform 5 | Reporter: | Eric Zhang <jzhang> |
| Component: | JBossESB | Assignee: | Kevin Conner <kevin.conner> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.0.0 ER1 | ||
| Target Milestone: | --- | ||
| Target Release: | 5.0.2 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | http://jira.jboss.org/jira/browse/SOA-1933 | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-06-09 19:36:46 UTC | Type: | Feature Request |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Eric Zhang
2010-02-08 02:00:53 UTC
Link: Added: This issue depends JBESB-3296 Affects: Added: [Documentation (Ref Guide, User Guide, etc.), Interactive Demo/Tutorial] Updated in ESB codebase, will be in next merge. The following draft text has been added to the Release Notes: https://jira.jboss.org/browse/JBESB-3296 The HttpGateway could not support multiple connectors if more than one was configured in jbossweb.sar/server.xml. Support for multiple connectors bound to different port addresses has now been added. Information on the allowedPorts property is yet in the ESB (or SOA-P) programmers' guide. We should point the readers/users to the http-gateway quickstart for an example:
<service category="PortFilter01" name="List" description="" invmScope="GLOBAL">
<listeners>
<!-- Receives: http://<host>:8081/Quickstart_http_gateway/http/ports01/*
Uses the default http bus configuration
The requests with http://<host>:8080/* will be returned with Status 404... -->
<http-gateway name="PortFilter01" urlPattern="ports01/*">
<property name="allowedPorts" value="8081"/>
</http-gateway>
</listeners>
<actions mep="RequestResponse">
<action name="print" class="org.jboss.soa.esb.samples.quickstart.httpgateway.MyAction"/>
</actions>
</service>
Verified in SOA-P 5.0.2 CR1 build |