Invoking a RESTful WS in ESB through Internet Explorer returns HTTP error code 400
Issue
- There is an ESB application which hosts a RESTful WebService. Whenever that WebService endpoint is invoked with GET operation from an
IE browserit send a400 BAD requesterror. It works fine withFirefox browser.
Below is a snippet fromjboss-esb.xmlwhere the RESTful WebService is hosted.
<service category="RestFlow" description="Exposing RESTful WebService"
invmScope="GLOBAL" name="RestService">
<property name="maxThreads" value="10" />
<listeners>
<http-gateway name="HttpGatewayOne" urlPattern="/*">
<property name="synchronousTimeout" value="15" />
</http-gateway>
</listeners>
<actions>
<action class="com.test.gateway.RestAction" name="RESTfulAction" process="process" />
</actions>
</service>
How to fix this issue?
Environment
- Red Hat JBoss SOA Platform (SOA-P)
- 5.3.1
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase of over 48,000 articles and solutions.
Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.
