<?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 for FatLemon</title>
	<atom:link href="http://www.fatlemon.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fatlemon.co.uk</link>
	<description>Contemplations on software development and human factors, by Andrew Freemantle</description>
	<lastBuildDate>Mon, 17 May 2010 11:14:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Securing ASP.Net Web Services with Forms Authentication by Lawrence Zhang</title>
		<link>http://www.fatlemon.co.uk/2010/04/securing-asp-net-web-services-with-forms-authentication/comment-page-1/#comment-24</link>
		<dc:creator>Lawrence Zhang</dc:creator>
		<pubDate>Mon, 17 May 2010 11:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=44#comment-24</guid>
		<description>Hi, Mr. Andrew, 
I&#039;ve found the answer that I asked you a little earlier this morning, because I forgot to put the same machineKey tag in two web.config between web service and my website, and before even not have a machineKey tag in web.config when I sent passwordFormat=Encrypted,thank you for your article again.

Kind Regards
Lawrence Zhang
</description>
		<content:encoded><![CDATA[<p>Hi, Mr. Andrew,<br />
I&#8217;ve found the answer that I asked you a little earlier this morning, because I forgot to put the same machineKey tag in two web.config between web service and my website, and before even not have a machineKey tag in web.config when I sent passwordFormat=Encrypted,thank you for your article again.</p>
<p>Kind Regards<br />
Lawrence Zhang</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securing ASP.Net Web Services with Forms Authentication by Andrew</title>
		<link>http://www.fatlemon.co.uk/2010/04/securing-asp-net-web-services-with-forms-authentication/comment-page-1/#comment-23</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 17 May 2010 06:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=44#comment-23</guid>
		<description>&lt;strong&gt;@Lawrence&lt;/strong&gt; - Thank you!  You&#039;re welcome  :)
&lt;br /&gt;
Though the article doesn&#039;t cover this specifically, storing the passwords either encrypted or hashed is the right thing to do, and the &lt;code&gt;MembershipProvider.PasswordFormat&lt;/code&gt; dictates how the passwords are stored in the database.
&lt;br /&gt;
So, if you&#039;re using &lt;code&gt;MembershipProvider.PasswordFormat = Encrypted&lt;/code&gt; you&#039;ll need to either encrypt the password supplied to the Web Service, or decrypt the password from the Membership Provider.  There are methods on the &lt;code&gt;MembershipProvider&lt;/code&gt; class to do this:
&lt;br /&gt;
&lt;code&gt;MembershipProvider.EncryptPassword()&lt;/code&gt; and &lt;code&gt;MembershipProvider.DecryptPassword()&lt;/code&gt; - Note that if you&#039;re using the Encrypted format, then you&#039;ll need to supply the encryption key information in the machineKey element of your .config  (&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.passwordformat.aspx&quot; rel=&quot;nofollow&quot;&gt;more info here&lt;/a&gt;)
&lt;br /&gt;
However, if you&#039;re &lt;code&gt;MembershipProvider.PasswordFormat = Hashed&lt;/code&gt; then you can&#039;t decrypt the stored password, so you&#039;re only left with encrypting the password supplied and then comparing the 2 hashes.
&lt;br /&gt;
&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.passwordformat.aspx&quot; rel=&quot;nofollow&quot;&gt;This documentation might be useful&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://forums.asp.net/p/991824/1289770.aspx#1290035&quot; rel=&quot;nofollow&quot;&gt;And here&#039;s an example of the machineKey element&lt;/a&gt; (for Encrypted password storage)
&lt;br /&gt;
Let us know know how you get on!</description>
		<content:encoded><![CDATA[<p><strong>@Lawrence</strong> &#8211; Thank you!  You&#8217;re welcome  <img src='http://www.fatlemon.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br />
Though the article doesn&#8217;t cover this specifically, storing the passwords either encrypted or hashed is the right thing to do, and the <code>MembershipProvider.PasswordFormat</code> dictates how the passwords are stored in the database.<br />
<br />
So, if you&#8217;re using <code>MembershipProvider.PasswordFormat = Encrypted</code> you&#8217;ll need to either encrypt the password supplied to the Web Service, or decrypt the password from the Membership Provider.  There are methods on the <code>MembershipProvider</code> class to do this:<br />
<br />
<code>MembershipProvider.EncryptPassword()</code> and <code>MembershipProvider.DecryptPassword()</code> &#8211; Note that if you&#8217;re using the Encrypted format, then you&#8217;ll need to supply the encryption key information in the machineKey element of your .config  (<a href="http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.passwordformat.aspx" rel="nofollow">more info here</a>)<br />
<br />
However, if you&#8217;re <code>MembershipProvider.PasswordFormat = Hashed</code> then you can&#8217;t decrypt the stored password, so you&#8217;re only left with encrypting the password supplied and then comparing the 2 hashes.<br />
<br />
<a href="http://msdn.microsoft.com/en-us/library/system.web.security.membershipprovider.passwordformat.aspx" rel="nofollow">This documentation might be useful</a><br />
<br />
<a href="http://forums.asp.net/p/991824/1289770.aspx#1290035" rel="nofollow">And here&#8217;s an example of the machineKey element</a> (for Encrypted password storage)<br />
<br />
Let us know know how you get on!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securing ASP.Net Web Services with Forms Authentication by Lawrence Zhang</title>
		<link>http://www.fatlemon.co.uk/2010/04/securing-asp-net-web-services-with-forms-authentication/comment-page-1/#comment-22</link>
		<dc:creator>Lawrence Zhang</dc:creator>
		<pubDate>Mon, 17 May 2010 03:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=44#comment-22</guid>
		<description>Hi Mr. Andrew,
Thank you very much for your article of Securing ASP.NET Web Service...,
One thing I&#039;d like to ask you, why I have to set MembershipProvider:passwordFormat=Clear before I create a user account, then I create a user account, the password stored in plain text, so
I can pass the username and password from a test website to Web Service,just
like your demonstration. If I create a account using passwordFormat=Encrypted or Hashed, the username and password can&#039;t pass from a test website webform input even hard coded to the web Service,how to solve it ? Tnanks.

Kind Regards
Lawrence Zhang</description>
		<content:encoded><![CDATA[<p>Hi Mr. Andrew,<br />
Thank you very much for your article of Securing ASP.NET Web Service&#8230;,<br />
One thing I&#8217;d like to ask you, why I have to set MembershipProvider:passwordFormat=Clear before I create a user account, then I create a user account, the password stored in plain text, so<br />
I can pass the username and password from a test website to Web Service,just<br />
like your demonstration. If I create a account using passwordFormat=Encrypted or Hashed, the username and password can&#8217;t pass from a test website webform input even hard coded to the web Service,how to solve it ? Tnanks.</p>
<p>Kind Regards<br />
Lawrence Zhang</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Eddie Hapson</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-21</link>
		<dc:creator>Eddie Hapson</dc:creator>
		<pubDate>Mon, 17 May 2010 03:09:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-21</guid>
		<description>Wow! this info saves me. Thank you so much Sir Andrew for this guide...it really helps me a lot...</description>
		<content:encoded><![CDATA[<p>Wow! this info saves me. Thank you so much Sir Andrew for this guide&#8230;it really helps me a lot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Andrew</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-20</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 19 Mar 2010 22:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-20</guid>
		<description>@Sram - you shouldn&#039;t have to edit the pfile manually to get these values to save permanently - that&#039;s why we&#039;re using the &#039;scope&#039; argument. 

Are you logging in as sysdba?
Are you including the &#039;scope = spfile&#039; on the alter system commands?</description>
		<content:encoded><![CDATA[<p>@Sram &#8211; you shouldn&#8217;t have to edit the pfile manually to get these values to save permanently &#8211; that&#8217;s why we&#8217;re using the &#8217;scope&#8217; argument. </p>
<p>Are you logging in as sysdba?<br />
Are you including the &#8217;scope = spfile&#8217; on the alter system commands?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Sram</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-19</link>
		<dc:creator>Sram</dc:creator>
		<pubDate>Fri, 19 Mar 2010 14:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-19</guid>
		<description>Hi Andrew,

I altered the sessions to 150, but everytime I restart the xe database it defaults to 49. Do I have to configure the pfile manually if I want to store it permanently?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Andrew,</p>
<p>I altered the sessions to 150, but everytime I restart the xe database it defaults to 49. Do I have to configure the pfile manually if I want to store it permanently?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Kxxx78</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-18</link>
		<dc:creator>Kxxx78</dc:creator>
		<pubDate>Thu, 18 Feb 2010 15:15:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-18</guid>
		<description>Thank you very much, you save me today :) !</description>
		<content:encoded><![CDATA[<p>Thank you very much, you save me today <img src='http://www.fatlemon.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Christoph Jahn</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-17</link>
		<dc:creator>Christoph Jahn</dc:creator>
		<pubDate>Mon, 15 Feb 2010 04:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-17</guid>
		<description>Thanks for this. Whenever I need to install XE, I go to this site afterwards to change the settings (fatlemon is so easy to remember :-)  )</description>
		<content:encoded><![CDATA[<p>Thanks for this. Whenever I need to install XE, I go to this site afterwards to change the settings (fatlemon is so easy to remember <img src='http://www.fatlemon.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Andrew</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-16</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 11 Feb 2010 20:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-16</guid>
		<description>Hi Hassene, I&#039;m glad it helped you  :)

While there will be an answer to your question of what are the maximum values for Oracle Express, there are a few key factors I&#039;d need to know first:

1. What Operating System are you running it on?
2. Is the Operating System 32bit or 64bit (although Oracle XE is 32bit only, this still affects how many processes the OS can handle in total)
3. How much RAM is available to the Operating System</description>
		<content:encoded><![CDATA[<p>Hi Hassene, I&#8217;m glad it helped you  <img src='http://www.fatlemon.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>While there will be an answer to your question of what are the maximum values for Oracle Express, there are a few key factors I&#8217;d need to know first:</p>
<p>1. What Operating System are you running it on?<br />
2. Is the Operating System 32bit or 64bit (although Oracle XE is 32bit only, this still affects how many processes the OS can handle in total)<br />
3. How much RAM is available to the Operating System</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increasing Processes, Sessions and Transactions in Oracle XE by Hassene</title>
		<link>http://www.fatlemon.co.uk/2009/06/increasing-processes-sessions-and-transactions-in-oracle-xe/comment-page-1/#comment-15</link>
		<dc:creator>Hassene</dc:creator>
		<pubDate>Thu, 11 Feb 2010 08:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.fatlemon.co.uk/?p=29#comment-15</guid>
		<description>thanks a lot

you really help me

but are this values the max we can choose for oracle express ?

processes = 150 

sessions = 300 

transactions = 330

!</description>
		<content:encoded><![CDATA[<p>thanks a lot</p>
<p>you really help me</p>
<p>but are this values the max we can choose for oracle express ?</p>
<p>processes = 150 </p>
<p>sessions = 300 </p>
<p>transactions = 330</p>
<p>!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
