You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Willem Jiang (Updated) (JIRA)" <ji...@apache.org> on 2012/03/31 09:04:57 UTC

[jira] [Updated] (CAMEL-5132) blueprint configuration of cxf endpoint inInterceptors by reference not triggered

     [ https://issues.apache.org/jira/browse/CAMEL-5132?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Willem Jiang updated CAMEL-5132:
--------------------------------

    Comment: was deleted

(was: If you want to pass the reference of wss4jInterceptor like this
{code}
<cxf:cxfEndpoint id="myEP"
address="${mtosiProtocol}://0.0.0.0:${mtosiPort}/myEP_RPC"
serviceClass="com.mycom.MyEPRPC">
<cxf:inInterceptors>
   <ref component-id="wss4jInterceptor"/>
</cxf:inInterceptors>
</cxf:cxfEndpoint>
{code})
    
> blueprint configuration of cxf endpoint inInterceptors by reference not triggered
> ---------------------------------------------------------------------------------
>
>                 Key: CAMEL-5132
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5132
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-cxf
>    Affects Versions: 2.9.1
>            Reporter: Tony Su
>            Assignee: Willem Jiang
>
> When following blueprint cxf:cxfEndpoint configuration is used:
>   <cxf:cxfEndpoint id="myEP"
> 	address="${mtosiProtocol}://0.0.0.0:${mtosiPort}/myEP_RPC"
> 	serviceClass="com.mycom.MyEPRPC">
> 	<cxf:inInterceptors ref="wss4jInterceptor" />
>   </cxf:cxfEndpoint>
> The interceptor is never triggered.
> When the configuration is replaced with an inline bean for the interceptor, it is again working:
>   <cxf:cxfEndpoint id="myEP"
> 	address="${mtosiProtocol}://0.0.0.0:${mtosiPort}/myEP_RPC"
> 	serviceClass="com.mycom.MyEPRPC">
> 	<cxf:inInterceptors>
> 	  <bean class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
> 	    <argument>
> 		<map>
> 	  	  <entry key="action" value="UsernameToken" />
> 		  <entry key="passwordType" value="PasswordText" />
> 		  <entry key="passwordCallbackRef" ref="passwdCallback" />	
> 		  <entry key="wss4j.validator.map" >
> 			<map>
> 			  <entry value-ref="userNameTokenValidator" key-ref="usernameTokenQName" />
> 			</map>
> 		  </entry>
> 		</map>
> 	    </argument>
> 	  </bean>
> 	</cxf:inInterceptors>
>   </cxf:cxfEndpoint>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira