<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Apache CXF Tutorial &#8211; WS-Security with Spring</title>
	<atom:link href="http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/</link>
	<description>The software development weblog of Benjamin McCann.</description>
	<lastBuildDate>Mon, 06 Feb 2012 21:26:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Dmitry</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-81556</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Mon, 30 Jan 2012 10:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-81556</guid>
		<description>Hello!

I&#039;m a confused about the server&#039;s callback handler. The matter is I can&#039;t get to it in the debug mode. After some time researching I found, that WSS4JInInterceptor doesn&#039;t have a callback. Please, see http://stackoverflow.com/questions/9035520/apache-cxf-spring-simple-certificate-authentication/9062076#9062076 for more details.

Can you, please, answer these questions:
1. When do the WSS4JInInterceptor&#039;s callback is called
2. What password do the client sets in  WSPasswordCallback pc = (WSPasswordCallback) callbacks[0]; pc.setPassword(&quot;&quot;)</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I&#8217;m a confused about the server&#8217;s callback handler. The matter is I can&#8217;t get to it in the debug mode. After some time researching I found, that WSS4JInInterceptor doesn&#8217;t have a callback. Please, see <a href="http://stackoverflow.com/questions/9035520/apache-cxf-spring-simple-certificate-authentication/9062076#9062076" rel="nofollow">http://stackoverflow.com/questions/9035520/apache-cxf-spring-simple-certificate-authentication/9062076#9062076</a> for more details.</p>
<p>Can you, please, answer these questions:<br />
1. When do the WSS4JInInterceptor&#8217;s callback is called<br />
2. What password do the client sets in  WSPasswordCallback pc = (WSPasswordCallback) callbacks[0]; pc.setPassword(&#8220;&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cuyt</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-74730</link>
		<dc:creator>cuyt</dc:creator>
		<pubDate>Thu, 29 Dec 2011 04:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-74730</guid>
		<description>how can we user cxf-rest server and client</description>
		<content:encoded><![CDATA[<p>how can we user cxf-rest server and client</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guilhem</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-53221</link>
		<dc:creator>Guilhem</dc:creator>
		<pubDate>Mon, 05 Sep 2011 07:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-53221</guid>
		<description>Can anyone help regarding my post from Aug. 15th?</description>
		<content:encoded><![CDATA[<p>Can anyone help regarding my post from Aug. 15th?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smith</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-52883</link>
		<dc:creator>smith</dc:creator>
		<pubDate>Wed, 31 Aug 2011 06:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-52883</guid>
		<description>I got the following exception:
&quot;java.util.MissingResourceException:Can&#039;t find bundle for base name...&quot;, anyone know how to name the bundle? Thx.</description>
		<content:encoded><![CDATA[<p>I got the following exception:<br />
&#8220;java.util.MissingResourceException:Can&#8217;t find bundle for base name&#8230;&#8221;, anyone know how to name the bundle? Thx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guilhem</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-51717</link>
		<dc:creator>Guilhem</dc:creator>
		<pubDate>Mon, 15 Aug 2011 07:01:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-51717</guid>
		<description>Hi there

Thanks for this tutorial.  I had to adapt it a little because my app is currently using the simple front-end, however I doubt it may be the reason why if is giving an unexpected (to me at least!) behavior.

What happens if I leave both handle methods exactly as you provided them, is, the WS responds no matter which password is supplied by the client.  In order to have the WS to actually check for the password being correct I had to modify the server-side handle method as follows:

    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {

        WSPasswordCallback pc = (WSPasswordCallback) callbacks[0];

        // We can call pc.getIdentifer() right here to check the username
        //     if we want each client to have it&#039;s own password.
        if (!pc.getPassword().equals(password))
        	throw new IOException(&quot;Wrong password!&quot;);
    }

So did I miss something?  Any ideas?

Thanks in advance.

Guilhem</description>
		<content:encoded><![CDATA[<p>Hi there</p>
<p>Thanks for this tutorial.  I had to adapt it a little because my app is currently using the simple front-end, however I doubt it may be the reason why if is giving an unexpected (to me at least!) behavior.</p>
<p>What happens if I leave both handle methods exactly as you provided them, is, the WS responds no matter which password is supplied by the client.  In order to have the WS to actually check for the password being correct I had to modify the server-side handle method as follows:</p>
<p>    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {</p>
<p>        WSPasswordCallback pc = (WSPasswordCallback) callbacks[0];</p>
<p>        // We can call pc.getIdentifer() right here to check the username<br />
        //     if we want each client to have it&#8217;s own password.<br />
        if (!pc.getPassword().equals(password))<br />
        	throw new IOException(&#8220;Wrong password!&#8221;);<br />
    }</p>
<p>So did I miss something?  Any ideas?</p>
<p>Thanks in advance.</p>
<p>Guilhem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liav</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-48380</link>
		<dc:creator>Liav</dc:creator>
		<pubDate>Thu, 07 Jul 2011 14:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-48380</guid>
		<description>Hi,

Let&#039;s say i want to distribute the wsdl file to some client who doesn&#039;t support Spring &amp; uses a simple CXF generator (wsdl2java).

Will he be required to supply the ws with the auth password in addition to the service arguments?

Where &amp; how would it be supplied?

Thanks &amp; great job.

Liav.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Let&#8217;s say i want to distribute the wsdl file to some client who doesn&#8217;t support Spring &amp; uses a simple CXF generator (wsdl2java).</p>
<p>Will he be required to supply the ws with the auth password in addition to the service arguments?</p>
<p>Where &amp; how would it be supplied?</p>
<p>Thanks &amp; great job.</p>
<p>Liav.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sridhar</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-45290</link>
		<dc:creator>Sridhar</dc:creator>
		<pubDate>Tue, 17 May 2011 11:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-45290</guid>
		<description>Hi Ben,

Thanks a lot. You have done a great job for us.
This tutorial is really helpful to test the security. I could set up this very quickly and finish the testing easily.
I don&#039;t understand one thing why it is giving the outbound message 2 times. It would be great if you provide your comments.

Once again thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hi Ben,</p>
<p>Thanks a lot. You have done a great job for us.<br />
This tutorial is really helpful to test the security. I could set up this very quickly and finish the testing easily.<br />
I don&#8217;t understand one thing why it is giving the outbound message 2 times. It would be great if you provide your comments.</p>
<p>Once again thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sairam</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-2/#comment-41998</link>
		<dc:creator>Sairam</dc:creator>
		<pubDate>Tue, 08 Mar 2011 07:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-41998</guid>
		<description>I am getting following exception while invoking the client
8/03/2011 18:06:43 org.apache.cxf.phase.PhaseInterceptorChain doIntercept
INFO: Interceptor has thrown exception, unwinding now Problems creating SAAJ object model

I using CXF 2.1.4 on Weblogic 10.0. I am using following Server side XML:

		
		   
		        
		        
			
			
			
		         
		      
		
	        
	

Error Stack Trace is as follows:
Exception in thread &quot;Main Thread&quot; javax.xml.ws.soap.SOAPFaultException: Problems creating SAAJ object model
	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:145)
	at $Proxy39.myFile(Unknown Source)
	at wsdlclient.myService_myServiceImplPort_Client.main(myService_myServiceImplPort_Client.java:73)
Caused by: org.apache.cxf.binding.soap.SoapFault: Problems creating SAAJ object model
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:75)
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)
	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)
	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:641)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:2102)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1980)
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1905)
	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)
	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:600)
	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:469)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:299)
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:251)
	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)
	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)

I have added the Weblogic properties in JDK as well:
-Djavax.xml.soap.MessageFactory=com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl
-Djavax.xml.soap.SOAPConnectionFactory=weblogic.wsee.saaj.SOAPConnectionFactoryImpl

and also set the prefer-application-packages to:

		javax.jws.*
		org.apache.*


Could you please tell where the issue could be. Have spent lot of time on this, still no luck :-(</description>
		<content:encoded><![CDATA[<p>I am getting following exception while invoking the client<br />
8/03/2011 18:06:43 org.apache.cxf.phase.PhaseInterceptorChain doIntercept<br />
INFO: Interceptor has thrown exception, unwinding now Problems creating SAAJ object model</p>
<p>I using CXF 2.1.4 on Weblogic 10.0. I am using following Server side XML:</p>
<p>Error Stack Trace is as follows:<br />
Exception in thread &#8220;Main Thread&#8221; javax.xml.ws.soap.SOAPFaultException: Problems creating SAAJ object model<br />
	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:145)<br />
	at $Proxy39.myFile(Unknown Source)<br />
	at wsdlclient.myService_myServiceImplPort_Client.main(myService_myServiceImplPort_Client.java:73)<br />
Caused by: org.apache.cxf.binding.soap.SoapFault: Problems creating SAAJ object model<br />
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:75)<br />
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)<br />
	at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)<br />
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)<br />
	at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:96)<br />
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)<br />
	at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)<br />
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)<br />
	at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:641)<br />
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:2102)<br />
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1980)<br />
	at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1905)<br />
	at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:66)<br />
	at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:600)<br />
	at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)<br />
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:226)<br />
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:469)<br />
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:299)<br />
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:251)<br />
	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:73)<br />
	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:124)</p>
<p>I have added the Weblogic properties in JDK as well:<br />
-Djavax.xml.soap.MessageFactory=com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl<br />
-Djavax.xml.soap.SOAPConnectionFactory=weblogic.wsee.saaj.SOAPConnectionFactoryImpl</p>
<p>and also set the prefer-application-packages to:</p>
<p>		javax.jws.*<br />
		org.apache.*</p>
<p>Could you please tell where the issue could be. Have spent lot of time on this, still no luck <img src='http://www.benmccann.com/dev-blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-1/#comment-39439</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Tue, 08 Feb 2011 09:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-39439</guid>
		<description>Apache Tomcat/7.0.6 - Error report&lt;!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--&gt; HTTP Status 500 - &lt;b&gt;type&lt;/b&gt; Exception report&lt;b&gt;message&lt;/b&gt; &lt;b&gt;description&lt;/b&gt; The server encountered an internal error () that prevented it from fulfilling this request.&lt;b&gt;exception&lt;/b&gt; javax.servlet.ServletException: Servlet execution threw an exception
&lt;b&gt;root cause&lt;/b&gt; java.lang.AbstractMethodError: org.apache.cxf.bus.CXFBusImpl.getProperties()Ljava/util/Map;
	org.apache.cxf.message.MessageImpl.calcContextCache(MessageImpl.java:221)
	org.apache.cxf.message.MessageImpl.getContextualProperty(MessageImpl.java:204)
	org.apache.cxf.message.AbstractWrappedMessage.getContextualProperty(AbstractWrappedMessage.java:164)
	org.apache.cxf.interceptor.StaxInInterceptor.getXMLInputFactory(StaxInInterceptor.java:92)
	org.apache.cxf.interceptor.StaxInInterceptor.handleMessage(StaxInInterceptor.java:81)
	org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:255)
	org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:89)
	org.apache.cxf.transport.servlet.ServletDestination.invoke(ServletDestination.java:99)
	org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:337)
	org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:182)
	org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:163)
	org.apache.cxf.transport.servlet.AbstractCXFServlet.doPost(AbstractCXFServlet.java:141)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
&lt;b&gt;note&lt;/b&gt; The full stack trace of the root cause is available in the Apache Tomcat/7.0.6 logs.Apache Tomcat/7.0.6</description>
		<content:encoded><![CDATA[<p>Apache Tomcat/7.0.6 &#8211; Error report<!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--> HTTP Status 500 &#8211; <b>type</b> Exception report<b>message</b> <b>description</b> The server encountered an internal error () that prevented it from fulfilling this request.<b>exception</b> javax.servlet.ServletException: Servlet execution threw an exception<br />
<b>root cause</b> java.lang.AbstractMethodError: org.apache.cxf.bus.CXFBusImpl.getProperties()Ljava/util/Map;<br />
	org.apache.cxf.message.MessageImpl.calcContextCache(MessageImpl.java:221)<br />
	org.apache.cxf.message.MessageImpl.getContextualProperty(MessageImpl.java:204)<br />
	org.apache.cxf.message.AbstractWrappedMessage.getContextualProperty(AbstractWrappedMessage.java:164)<br />
	org.apache.cxf.interceptor.StaxInInterceptor.getXMLInputFactory(StaxInInterceptor.java:92)<br />
	org.apache.cxf.interceptor.StaxInInterceptor.handleMessage(StaxInInterceptor.java:81)<br />
	org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:255)<br />
	org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:89)<br />
	org.apache.cxf.transport.servlet.ServletDestination.invoke(ServletDestination.java:99)<br />
	org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:337)<br />
	org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:182)<br />
	org.apache.cxf.transport.servlet.AbstractCXFServlet.invoke(AbstractCXFServlet.java:163)<br />
	org.apache.cxf.transport.servlet.AbstractCXFServlet.doPost(AbstractCXFServlet.java:141)<br />
	javax.servlet.http.HttpServlet.service(HttpServlet.java:641)<br />
	javax.servlet.http.HttpServlet.service(HttpServlet.java:722)<br />
<b>note</b> The full stack trace of the root cause is available in the Apache Tomcat/7.0.6 logs.Apache Tomcat/7.0.6</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna</title>
		<link>http://www.benmccann.com/dev-blog/apache-cxf-tutorial-ws-security-with-spring/comment-page-1/#comment-39438</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Tue, 08 Feb 2011 09:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.lumidant.com/blog/apache-cxf-tutorial-ws-security-with-spring/#comment-39438</guid>
		<description>Hi Ben,

Thx 4 a great tutorial..

Am getting the following exception...Not sure what went wrong..

Thx,
Krishna</description>
		<content:encoded><![CDATA[<p>Hi Ben,</p>
<p>Thx 4 a great tutorial..</p>
<p>Am getting the following exception&#8230;Not sure what went wrong..</p>
<p>Thx,<br />
Krishna</p>
]]></content:encoded>
	</item>
</channel>
</rss>

