WebSphere Application Server & Liberty

WebSphere Application Server & Liberty

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  Transport Chains

    Posted Mon April 29, 2013 10:42 PM
    Hi Webspherians,

    In was,  under transport chain we have the following:

    There are four Web container transport chains called:

    • WCInboundAdmin

    • WCInboundAdminSecure

    • WCInboundDefault

    • WCInboundDefaultSecure   



     plz kindly let me functions of this inbounds




    Similarly,  There should be terms like  Outbounds (do we really have this terms i am not sure): 
     

    • WCOutboundAdmin

    • WCIOUTboundAdminSecure

    • WCOutboundDefault

    • WCOutboundDefaultSecure   



    where can those be found, whats their function.



      
                   Thank you


  • 2.  Transport Chains

    Posted Tue April 30, 2013 01:25 PM

    A transport chain consists of one or more types of channels, each of which supports a different type of I/O protocol, such as TCP, DCS. or HTTP. Network ports can be shared among all of the channels within a chain. The channel framework function automatically distributes a request arriving on that port to the correct I/O protocol channel for processing.



    • WCInboundAdmin--To access admin console using http associated with 9060

    • WCInboundAdminSecure-- To access admin console using https with 9043

    • WCInboundDefault--To access-- To access application using http with 9080

    • WCInboundDefaultSecure   --To access application using https with 9443.


    There are no outbound chanels defined for webcontainer in WAS to avoid n/w traffic between client and WebSphere.


    Whenever webcontainer get requests it open 2 streams one is  Inputstream(to read input data from client) and another one outstream(to send output data to client)  internally using the chanel defined in the webcontainer.

    Please correct me if I am wrong.

    Thanks
    Venkata




  • 3.  Transport Chains

    Posted Tue April 30, 2013 03:16 PM
    Thank you Venkat