[ 
https://issues.apache.org/jira/browse/SYNAPSE-224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12558538#action_12558538
 ] 

Asankha C. Perera commented on SYNAPSE-224:
-------------------------------------------

Synapse by default ships with a high performance non-blocking http/s transport, 
even through you deploy Synapse as a WAR file. It is possible to really switch 
this into the Apache Axis2's servlet based http/s implementation - but in 
general the NIO transport is highly recommended due to the nature of  an ESB. 
If you explain your objectives or the problem you are trying to solve, one of 
the developers may be able to suggest a solution. As this topic is now off the 
original issue JIRA issue, please use the developer or user mailing lists to 
discuss possibilities

asankha

> Not able to get the http header information in the custom mediators using the 
> Message Context object
> ----------------------------------------------------------------------------------------------------
>
>                 Key: SYNAPSE-224
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-224
>             Project: Synapse
>          Issue Type: Bug
>          Components: Extension Mediators
>            Reporter: kumaran venkatesan
>            Assignee: Asankha C. Perera
>
> When i tried to extract the header information through the message context 
> object in the custom mediator giving null value for  
> "axis2MessageCtx.getProperty(HTTPConstants.HEADER_USER_AGENT"
> public class SessionMediator implements Mediator {
>     private static final Log log = 
> LogFactory.getLog(DiscountQuoteMediator.class);
>     public SessionMediator(){}
>     public boolean mediate(MessageContext mc) {
>       
>       Axis2MessageContext axis2mc = (Axis2MessageContext)mc;
>       org.apache.axis2.context.MessageContext axis2MessageCtx =  
> axis2mc.getAxis2MessageContext(); 
>         System.out.println("User Agent : " 
> +axis2MessageCtx.getProperty(HTTPConstants.HEADER_USER_AGENT));
>               
>        return true;
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to