Configuring IHS server to direct traffic to the Netty component bound to a port

Posted by rbot on Stack Overflow See other posts from Stack Overflow or by rbot
Published on 2012-12-10T22:56:25Z Indexed on 2012/12/10 23:03 UTC
Read the original article Hit count: 281

I have a Server Component ( based on Jboss-Netty, which could maintain & handle persistent connections ) deployed in WAS. This component when deployed & initiated within the WAS environment, binds to a port & listens for incoming HTTP connection.

[ Why i had to deploy a Netty HTTP Server within WAS is another story - management requirement !! Netty is deployed in WAS as a spring bean which when initiated runs on a port in the machine, independent of WAS ]

Clients (mobile app) were able to establish persistent HTTP connections (to the above URL::Port) with this netty component & send/receive requests.

Now, I have to replicate this feature in our Production Environment where a IHS Server (Web Server) which sits before the WAS.

What i expected is to get a IHS URL which could redirect the incoming packets to the specific PORT on WAS, so that the Client apps can establish a similar persistent http connection.

Our Server Admin tried a few combinations and we are not able to identify how to proceed further on this.

Your expert ideas would be highly appreciated.

© Stack Overflow or respective owner

Related posts about websphere

Related posts about netty