[ 
http://issues.apache.org/jira/browse/AXIS2-168?page=comments#action_12319700 ] 

Deepal Jayasinghe commented on AXIS2-168:
-----------------------------------------

This is not a bug for each transport I am calling its init method

 public void initTransports(ConfigurationContext configContext)
            throws AxisFault {
        AxisConfiguration axisConf = configContext.getAxisConfiguration();
        
        //Initzialize Transport Ins
        HashMap transportIns = axisConf.getTransportsIn();
        Iterator values = transportIns.values().iterator();
        while (values.hasNext()) {
            TransportInDescription transportIn =
                    (TransportInDescription) values.next();
            TransportListener listener = transportIn.getReceiver();
            if (listener != null) {
                listener.init(configContext, transportIn);
            }
        }
        //Initzialize Transport Outs
        HashMap transportOuts = axisConf.getTransportsOut();
        values = transportOuts.values().iterator();
        while (values.hasNext()) {
            TransportOutDescription transportOut =
                    (TransportOutDescription) values.next();
            TransportSender sender = transportOut.getSender();
            if (sender != null) {
                sender.init(configContext, transportOut);
            }
        }

    }

> TransportSenders init() method wouldn't call
> --------------------------------------------
>
>          Key: AXIS2-168
>          URL: http://issues.apache.org/jira/browse/AXIS2-168
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug
>   Components: transports
>     Versions: 0.92
>  Environment: Linux
>     Reporter: Saminda Wishwajith Abeyruwan
>     Priority: Critical
>      Fix For: 0.92

>
> TransporSender's init() method wouldn't call. This cause initiating transport 
> paramentes. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to