<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nels Wadycki &#187; Java</title>
	<atom:link href="http://nelswadycki.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://nelswadycki.com</link>
	<description>ENTHREEEIGHTY</description>
	<lastBuildDate>Sat, 05 Nov 2011 02:32:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Change or Add SOAPAction Header</title>
		<link>http://nelswadycki.com/2010/11/08/change-or-add-soapaction-header/</link>
		<comments>http://nelswadycki.com/2010/11/08/change-or-add-soapaction-header/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 21:21:58 +0000</pubDate>
		<dc:creator>Nels</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Misc Tech]]></category>
		<category><![CDATA[ContractFilter mismatch]]></category>
		<category><![CDATA[CXF]]></category>
		<category><![CDATA[SOAPAction Header]]></category>
		<category><![CDATA[SOAPFaultException]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://nelswadycki.com/?p=1679</guid>
		<description><![CDATA[It wasn&#8217;t the easiest thing to find, so I wanted to link to this page on how to change the SOAPAction header of a message in CXF. This is especially useful if you have a SOAPAction header that is = &#8220;&#8221; and causing issues when trying to connect to a .NET or WCF server with [...]]]></description>
			<content:encoded><![CDATA[<p>It wasn&#8217;t the easiest thing to find, so I wanted to link to this page on how to <a href="http://cxf.547215.n5.nabble.com/Change-SOAP-Action-td2840736.html">change the SOAPAction header</a> of a message in CXF. This is especially useful if you have a SOAPAction header that is = &#8220;&#8221; and causing issues when trying to connect to a .NET or WCF server with a Java client. (Keywords galore!)</p>
<p>Here&#8217;s the error I was getting:<br />
<blockquote>javax.xml.ws.soap.SOAPFaultException: The message with Action &#8221; cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</p></blockquote>
<p>And here&#8217;s the easy, one-line solution:<br />
<blockquote>For the most part, you probably don&#8217;t even need an interceptor for this.  Just<br />
do something like:</p>
<p>((BindingProvider)proxy).getRequestContext().put(<br />
     BindingProvider.SOAPACTION_URI_PROPERTY,<br />
     &#8220;my.soap.action&#8221;);</p>
<p>before calling the method.   That should do it.</p></blockquote>
<p>Thanks, Daniel Kulp.</p>
<p>Find me, Google: <em>Empty SOAPAction header</em></p>
<h2  class="related_post_title">Other Stuff Like This</h2><ul class="related_post"><li><a href="http://nelswadycki.com/2009/05/22/sun-certified-java-programmer/" title="Sun Certified Java Programmer">Sun Certified Java Programmer</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://nelswadycki.com/2010/11/08/change-or-add-soapaction-header/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Sun Certified Java Programmer</title>
		<link>http://nelswadycki.com/2009/05/22/sun-certified-java-programmer/</link>
		<comments>http://nelswadycki.com/2009/05/22/sun-certified-java-programmer/#comments</comments>
		<pubDate>Fri, 22 May 2009 13:19:38 +0000</pubDate>
		<dc:creator>Nels</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Professional Development]]></category>
		<category><![CDATA[SCJP]]></category>
		<category><![CDATA[Sun Certified Programmer for Java Platform]]></category>

		<guid isPermaLink="false">http://nelswadycki.com/?p=433</guid>
		<description><![CDATA[Evidently there are still pay hikes during the Great Recession: According to the first quarter results from Foote Partners, pay for noncertified skills in Linux rose by more than 28%, while Apache and Sybase noncertified skills saw 25% increases in pay. Pay for Java and HTTP skills increased by 20%, while IT professionals with PHP, [...]]]></description>
			<content:encoded><![CDATA[<p>Evidently there are still <a href="http://www.networkworld.com/news/2009/042309-it-skills-pay-hikes-downturn.html?tc=car">pay hikes during the Great Recession</a>:</p>
<blockquote><p>According to the first quarter results from Foote Partners, pay for noncertified skills in Linux rose by more than 28%, while Apache and Sybase noncertified skills saw 25% increases in pay. Pay for Java and HTTP skills increased by 20%, while IT professionals with PHP, SAP and Unix noncertified skills experienced a more than 14% pay increase. Certified IT skills that saw pay increases include HP/Certified Systems Engineer with a 14.3% increase in pay, and S<strong>un Certified Programmer for Java Platform, which experienced an increase of 13.5% in pay</strong>. IT professionals with EMC Proven Professional certifications experienced a 12.5% increase in pay, as did IBM Certified Specialists. Systems Security Certified Practitioner pay increased in the first quarter by 12.5%.</p></blockquote>
<p> (<strong>emphasis</strong> mine)</p>
<p>Since becoming a Sun Certified Programmer for the Java Platform was already a goal of mine for this year (that being, the next 365 days), I now have some <strike>false hope</strike> added incentive. </p>
<h2  class="related_post_title">Other Stuff Like This</h2><ul class="related_post"><li><a href="http://nelswadycki.com/2010/11/08/change-or-add-soapaction-header/" title="Change or Add SOAPAction Header">Change or Add SOAPAction Header</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://nelswadycki.com/2009/05/22/sun-certified-java-programmer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  nelswadycki.com/category/java/feed/ ) in 0.77362 seconds, on Feb 8th, 2012 at 8:06 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 8th, 2012 at 9:06 pm UTC -->
