<?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: Feeling secure with Web Services &#8211; Part 1 &#8211; The UsernameToken</title>
	<atom:link href="http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/</link>
	<description>A weblog about software engineering, Architecture, Technology an other things we like.</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:11:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Allard</title>
		<link>http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/comment-page-1/#comment-2127</link>
		<dc:creator>Allard</dc:creator>
		<pubDate>Sat, 12 Jul 2008 11:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/#comment-2127</guid>
		<description>Hi Ken,

dit you read part 2? In that article I refer to our code repository where there is actually an example where signing and encryption are used together.

When a message has to be both signed and encrypted, it doesn&#039;t really matter in what order you apply them. However, if you only want to sign part of what you want to encrypt, you&#039;ll have to sign first, as there is no notion of elements anymore after you&#039;ve ecnrypted data (it&#039;s just an unreadable blob of data).

In Spring-WS, you&#039;ll have to specify two different interceptor beans (same class thoug), since both need a diiferent key from your keystore. The example code shows an example of this.

Good luck</description>
		<content:encoded><![CDATA[<p>Hi Ken,</p>
<p>dit you read part 2? In that article I refer to our code repository where there is actually an example where signing and encryption are used together.</p>
<p>When a message has to be both signed and encrypted, it doesn&#8217;t really matter in what order you apply them. However, if you only want to sign part of what you want to encrypt, you&#8217;ll have to sign first, as there is no notion of elements anymore after you&#8217;ve ecnrypted data (it&#8217;s just an unreadable blob of data).</p>
<p>In Spring-WS, you&#8217;ll have to specify two different interceptor beans (same class thoug), since both need a diiferent key from your keystore. The example code shows an example of this.</p>
<p>Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken H. To</title>
		<link>http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/comment-page-1/#comment-2070</link>
		<dc:creator>Ken H. To</dc:creator>
		<pubDate>Fri, 11 Jul 2008 20:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/#comment-2070</guid>
		<description>Hello

What I meant about Signing-then-Encrypting-then-Signing is how to use Signature and Encryption together for a XML file.

Regards</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>What I meant about Signing-then-Encrypting-then-Signing is how to use Signature and Encryption together for a XML file.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allard</title>
		<link>http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/comment-page-1/#comment-1908</link>
		<dc:creator>Allard</dc:creator>
		<pubDate>Mon, 07 Jul 2008 19:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/#comment-1908</guid>
		<description>Hi Ken,

I partly agree with you if you say WSS is complicated. There is pretty good support for WSS in web service stacks (see our example project on google code). So something is already done about it. What is left is pretty hard to make easier.

We don&#039;t have an open source project. On this blog we just express our opinions and (sometimes) support that with sample code.

About your first question, I don&#039;t really understand what you mean. Signing and Encrpytion are two very distinct technologies that achieve different goals. It is never a choice of one or the other. It&#039;s whatever you need to happen.</description>
		<content:encoded><![CDATA[<p>Hi Ken,</p>
<p>I partly agree with you if you say WSS is complicated. There is pretty good support for WSS in web service stacks (see our example project on google code). So something is already done about it. What is left is pretty hard to make easier.</p>
<p>We don&#8217;t have an open source project. On this blog we just express our opinions and (sometimes) support that with sample code.</p>
<p>About your first question, I don&#8217;t really understand what you mean. Signing and Encrpytion are two very distinct technologies that achieve different goals. It is never a choice of one or the other. It&#8217;s whatever you need to happen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken H. To</title>
		<link>http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/comment-page-1/#comment-1875</link>
		<dc:creator>Ken H. To</dc:creator>
		<pubDate>Mon, 07 Jul 2008 00:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.gridshore.nl/2008/05/20/feeling-secure-with-web-services-part-1-the-usernametoken/#comment-1875</guid>
		<description>Hello Allard Buijze,

Thanks for your post.

I&#039;m also interested in WebService Security, and have some experience with both Transport Level Security and Message Level Security. I hope we could discuss more to make WSS useful and widely recognized in the industry.

I have three questions
1. Did you come up with a good scheme either to Sign, Encrypt and Sign, or Encrypt, Sign and Encrypt ?
2. While WSS is supported by Big Guys of the IT world, it is still too much complicated, can we do something about it ?
3. Does your gridshore.nl group have some open source project that I can join ?

I thank you for your time</description>
		<content:encoded><![CDATA[<p>Hello Allard Buijze,</p>
<p>Thanks for your post.</p>
<p>I&#8217;m also interested in WebService Security, and have some experience with both Transport Level Security and Message Level Security. I hope we could discuss more to make WSS useful and widely recognized in the industry.</p>
<p>I have three questions<br />
1. Did you come up with a good scheme either to Sign, Encrypt and Sign, or Encrypt, Sign and Encrypt ?<br />
2. While WSS is supported by Big Guys of the IT world, it is still too much complicated, can we do something about it ?<br />
3. Does your gridshore.nl group have some open source project that I can join ?</p>
<p>I thank you for your time</p>
]]></content:encoded>
	</item>
</channel>
</rss>

