You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Saminda Wishwajith Abeyruwan (JIRA)" <ji...@apache.org> on 2005/08/23 10:57:08 UTC

[jira] Created: (AXIS2-168) TransportSenders init() method wouldn't call

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


[jira] Commented: (AXIS2-168) TransportSenders init() method wouldn't call

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
    [ 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


[jira] Resolved: (AXIS2-168) TransportSenders init() method wouldn't call

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-168?page=all ]
     
Deepal Jayasinghe resolved AXIS2-168:
-------------------------------------

    Resolution: Fixed

> 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