<?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: Please help test DbFit 1.1</title>
	<atom:link href="http://gojko.net/2008/08/13/please-help-test-dbfit-11/feed/" rel="self" type="application/rss+xml" />
	<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/</link>
	<description>Building software that matters</description>
	<lastBuildDate>Thu, 02 Feb 2012 07:12:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Chan Nguyen</title>
		<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/comment-page-1/#comment-93440</link>
		<dc:creator>Chan Nguyen</dc:creator>
		<pubDate>Wed, 07 Jul 2010 20:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/?p=290#comment-93440</guid>
		<description>Hi gojko,
Thanks for your reply, I got it working by this method:
!&#124;Connect&#124;Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;&#124;

One guy in SQL Server Forum showed me this one. I just want to ask you that how could I find the document for those commands above?
Another strange things that I came across is that:
- When I create a single page ( let&#039;s say http://localhost:8085/OneExample )
- Content:

----------------------------------------------------------------------------------------
!define COMMAND_PATTERN {%m %p}
!define TEST_RUNNER {dotnet2\FitServer.exe}
!define PATH_SEPARATOR {;}
!path dotnet2\*.dll

!&#124;dbfit.SqlServerTest&#124;

!&#124;Connect&#124;Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;&#124;

!&#124;Query&#124; select &#039;test&#039; as x&#124;
&#124;x&#124;
&#124;test&#124;
----------------------------------------------------------------------------------------


It worked fine, but when I create a Suite page w/ SetUp page content:

----------------------------------------------------------------------------------------
!define COMMAND_PATTERN {%m %p}
!define TEST_RUNNER {dotnet2\FitServer.exe}
!define PATH_SEPARATOR {;}
!path dotnet2\*.dll

!&#124;dbfit.SqlServerTest&#124;

!&#124;Connect&#124;Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;&#124;
----------------------------------------------------------------------------------------

And then a sub-page w/ content:

----------------------------------------------------------------------------------------
!&#124;Query&#124; select &#039;test&#039; as x&#124;
&#124;x&#124;
&#124;test&#124;
----------------------------------------------------------------------------------------

Dbfit complained :(

----------------------------------------------------------------------------------------
System.ApplicationException: Type &#039;dbfit.SqlServerTest&#039; could not be found in assemblies.
Assemblies searched:    file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    file:///C:/dbfit/dotnet2/FitServer.exe
    file:///C:/dbfit/dotnet2/fit.DLL
    file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll
Load errors: Could not load file or assembly &#039;file:///C:\dbfit\defaultPath&#039; or one of its dependencies. The system cannot find the file specified.
   at fit.Assemblies.FindType(TypeName theName)
   at fit.TypeName.get_Type()
   at fit.TypeName.CreateInstance()
   at fit.Fixture.LoadClass(String theClassName)
   at fit.StoryTest.DoTables()
----------------------------------------------------------------------------------------

This is so weird ! I tried to check for spelling many times so I think it must be something wrong w/ the linker? Can you help me ? 
Thanks,</description>
		<content:encoded><![CDATA[<p>Hi gojko,<br />
Thanks for your reply, I got it working by this method:<br />
!|Connect|Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;|</p>
<p>One guy in SQL Server Forum showed me this one. I just want to ask you that how could I find the document for those commands above?<br />
Another strange things that I came across is that:<br />
- When I create a single page ( let&#8217;s say <a href="http://localhost:8085/OneExample" rel="nofollow">http://localhost:8085/OneExample</a> )<br />
- Content:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
!define COMMAND_PATTERN {%m %p}<br />
!define TEST_RUNNER {dotnet2\FitServer.exe}<br />
!define PATH_SEPARATOR {;}<br />
!path dotnet2\*.dll</p>
<p>!|dbfit.SqlServerTest|</p>
<p>!|Connect|Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;|</p>
<p>!|Query| select &#8216;test&#8217; as x|<br />
|x|<br />
|test|<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>It worked fine, but when I create a Suite page w/ SetUp page content:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
!define COMMAND_PATTERN {%m %p}<br />
!define TEST_RUNNER {dotnet2\FitServer.exe}<br />
!define PATH_SEPARATOR {;}<br />
!path dotnet2\*.dll</p>
<p>!|dbfit.SqlServerTest|</p>
<p>!|Connect|Data Source=HXG2MJ1\SQLEXPRESS;Initial Catalog=MyDatabase;Password=12345678;Integrated Security=SSPI;|<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>And then a sub-page w/ content:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
!|Query| select &#8216;test&#8217; as x|<br />
|x|<br />
|test|<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Dbfit complained <img src='http://gojko.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
System.ApplicationException: Type &#8216;dbfit.SqlServerTest&#8217; could not be found in assemblies.<br />
Assemblies searched:    file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll<br />
    file:///C:/dbfit/dotnet2/FitServer.exe<br />
    file:///C:/dbfit/dotnet2/fit.DLL<br />
    file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll<br />
    file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll<br />
    file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll<br />
    file:///C:/WINDOWS/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll<br />
Load errors: Could not load file or assembly &#8216;file:///C:\dbfit\defaultPath&#8217; or one of its dependencies. The system cannot find the file specified.<br />
   at fit.Assemblies.FindType(TypeName theName)<br />
   at fit.TypeName.get_Type()<br />
   at fit.TypeName.CreateInstance()<br />
   at fit.Fixture.LoadClass(String theClassName)<br />
   at fit.StoryTest.DoTables()<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>This is so weird ! I tried to check for spelling many times so I think it must be something wrong w/ the linker? Can you help me ?<br />
Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chan Nguyen</title>
		<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/comment-page-1/#comment-93308</link>
		<dc:creator>Chan Nguyen</dc:creator>
		<pubDate>Tue, 06 Jul 2010 18:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/?p=290#comment-93308</guid>
		<description>Does DbFit work with SQL Server 2008?</description>
		<content:encoded><![CDATA[<p>Does DbFit work with SQL Server 2008?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chan Nguyen</title>
		<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/comment-page-1/#comment-93266</link>
		<dc:creator>Chan Nguyen</dc:creator>
		<pubDate>Tue, 06 Jul 2010 18:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/?p=290#comment-93266</guid>
		<description>Hi gojko ! 
I&#039;m a newbie to Database, so I currently struggled a bit with how to make DbFit works with SQL Server 2008. I tried some examples in your Test Driven Database Development With DbFit book, but I got a punch of errors :(.
I&#039;m using SQL Server 2008 Developer Edition and DbFit 1.1 under Windows 7 OS.

I followed the instruction from this website to install SQL Server 2008 :
: http://msdn.microsoft.com/en-us/library/dd299415(SQL.100).aspx
Since I did not set the username and password for log in to Windows, I&#039;m a bit confused how to put username and password field for DbFit&#039;s commands.
I tried :

!define COMMAND_PATTERN {%m %p}
!define TEST_RUNNER {dotnet3\FitServer.exe}
!define PATH_SEPARATOR {;}
!path dotnet2\*.dll

!&#124;dbfit.SQLServerTest&#124;

!&#124;Connect&#124;localhost&#124;&#124;&#124;

I used dotnet2 for C# and dotnet3 for SQL Server. My current login user name is Chan-PC/Chan and I have no password.

I created a page with -p 8888 and run it as test, I got these errors :

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&gt; System.Data.SqlClient.SqlException: Login failed for user &#039;&#039;.
   at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
   at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
   at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)
   at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)
   at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
   at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)
   at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)
   at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)
   at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options)
   at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject)
   at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject)
   at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)
   at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
   at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
   at System.Data.SqlClient.SqlConnection.Open()
   at dbfit.AbstractDbEnvironment.Connect(String connectionString) in D:\work\dbfit\impl\dotnet\src\environment\AbstractDbEnvironment.cs:line 66
   at dbfit.DatabaseTest.Connect(String dataSource, String username, String password) in D:\work\dbfit\impl\dotnet\src\DatabaseTest.cs:line 29
   --- End of inner exception stack trace ---
   at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct&amp; sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
   at fitlibrary.Method.Invoke(Object[] theParameters)
   at fitlibrary.Method.Invoke(Fixture theFixture, IEnumerable theCells)
   at fitlibrary.FlowFixtureBase.ExecuteMethod(Method theMethod, CellRange theCells)
   at fitlibrary.FlowFixtureBase.ProcessFlowRow(Parse theCurrentRow)


Could you give me some hints where I did wrong and one simple example so I can understand it better? Thanks a lot in advance.</description>
		<content:encoded><![CDATA[<p>Hi gojko !<br />
I&#8217;m a newbie to Database, so I currently struggled a bit with how to make DbFit works with SQL Server 2008. I tried some examples in your Test Driven Database Development With DbFit book, but I got a punch of errors <img src='http://gojko.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .<br />
I&#8217;m using SQL Server 2008 Developer Edition and DbFit 1.1 under Windows 7 OS.</p>
<p>I followed the instruction from this website to install SQL Server 2008 :<br />
: <a href="http://msdn.microsoft.com/en-us/library/dd299415(SQL.100).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd299415(SQL.100).aspx</a><br />
Since I did not set the username and password for log in to Windows, I&#8217;m a bit confused how to put username and password field for DbFit&#8217;s commands.<br />
I tried :</p>
<p>!define COMMAND_PATTERN {%m %p}<br />
!define TEST_RUNNER {dotnet3\FitServer.exe}<br />
!define PATH_SEPARATOR {;}<br />
!path dotnet2\*.dll</p>
<p>!|dbfit.SQLServerTest|</p>
<p>!|Connect|localhost|||</p>
<p>I used dotnet2 for C# and dotnet3 for SQL Server. My current login user name is Chan-PC/Chan and I have no password.</p>
<p>I created a page with -p 8888 and run it as test, I got these errors :</p>
<p>System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. &#8212;&gt; System.Data.SqlClient.SqlException: Login failed for user &#8221;.<br />
   at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)<br />
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)<br />
   at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)<br />
   at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)<br />
   at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)<br />
   at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)<br />
   at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)<br />
   at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)<br />
   at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)<br />
   at System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnection owningConnection, DbConnectionPool pool, DbConnectionOptions options)<br />
   at System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject)<br />
   at System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject)<br />
   at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)<br />
   at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)<br />
   at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)<br />
   at System.Data.SqlClient.SqlConnection.Open()<br />
   at dbfit.AbstractDbEnvironment.Connect(String connectionString) in D:\work\dbfit\impl\dotnet\src\environment\AbstractDbEnvironment.cs:line 66<br />
   at dbfit.DatabaseTest.Connect(String dataSource, String username, String password) in D:\work\dbfit\impl\dotnet\src\DatabaseTest.cs:line 29<br />
   &#8212; End of inner exception stack trace &#8212;<br />
   at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct&amp; sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)<br />
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)<br />
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)<br />
   at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)<br />
   at fitlibrary.Method.Invoke(Object[] theParameters)<br />
   at fitlibrary.Method.Invoke(Fixture theFixture, IEnumerable theCells)<br />
   at fitlibrary.FlowFixtureBase.ExecuteMethod(Method theMethod, CellRange theCells)<br />
   at fitlibrary.FlowFixtureBase.ProcessFlowRow(Parse theCurrentRow)</p>
<p>Could you give me some hints where I did wrong and one simple example so I can understand it better? Thanks a lot in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gojko</title>
		<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/comment-page-1/#comment-93320</link>
		<dc:creator>gojko</dc:creator>
		<pubDate>Tue, 06 Jul 2010 17:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/?p=290#comment-93320</guid>
		<description>Chan, 
Google for integrated security connection strings and use the variant of connect that specifies the full connection string</description>
		<content:encoded><![CDATA[<p>Chan,<br />
Google for integrated security connection strings and use the variant of connect that specifies the full connection string</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gojko</title>
		<link>http://gojko.net/2008/08/13/please-help-test-dbfit-11/comment-page-1/#comment-93319</link>
		<dc:creator>gojko</dc:creator>
		<pubDate>Tue, 06 Jul 2010 17:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://gojko.net/?p=290#comment-93319</guid>
		<description>It should work with 2008. I haven&#039;t tried it but sql server is generally good with backward compatibility</description>
		<content:encoded><![CDATA[<p>It should work with 2008. I haven&#8217;t tried it but sql server is generally good with backward compatibility</p>
]]></content:encoded>
	</item>
</channel>
</rss>

