<?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>Everything is wrong &#187; Arquillian</title>
	<atom:link href="http://everythingiswrong.free.fr/index.php/tag/arquillian/feed/" rel="self" type="application/rss+xml" />
	<link>http://everythingiswrong.free.fr</link>
	<description>Un blog dédié à l&#039;informatique en général</description>
	<lastBuildDate>Wed, 06 Oct 2021 21:20:08 +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>Arquillian &#8211; Graphene et RichFaces</title>
		<link>http://everythingiswrong.free.fr/index.php/2014/07/29/arquillian-graphene-et-richfaces/</link>
		<comments>http://everythingiswrong.free.fr/index.php/2014/07/29/arquillian-graphene-et-richfaces/#comments</comments>
		<pubDate>Tue, 29 Jul 2014 18:28:38 +0000</pubDate>
		<dc:creator>Yan</dc:creator>
				<category><![CDATA[Java J2EE]]></category>
		<category><![CDATA[Tests unitaires]]></category>
		<category><![CDATA[Arquillian]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JSF]]></category>

		<guid isPermaLink="false">http://everythingiswrong.free.fr/?p=3216</guid>
		<description><![CDATA[Profitez des pages fragments de RichFaces pour développer ses propres tests unitaires...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Richfaces 4.5.0.Alpha3 est sortie ! Avec cette version, une nouveauté, les fragments de page (pages-fragments). Il s&#8217;agit de classes qui permettent de développer des tests unitaires automatisés sur les applications utilisant RichFaces.</p>
<p style="text-align: justify;">La configuration Maven pour utiliser ces fragements est la suivante :</p>
<pre class="brush: xml; gutter: true; first-line: 1">&lt;dependency&gt;
    &lt;groupId&gt;org.richfaces&lt;/groupId&gt;
    &lt;artifactId&gt;richfaces-page-fragments&lt;/artifactId&gt;
    &lt;version&gt;4.5.0.Alpha3&lt;/version&gt;
    &lt;scope&gt;test&lt;/scope&gt;
&lt;/dependency&gt;</pre>
<p style="text-align: justify;">Les sources sont disponibles sur GitHub : <a href="https://github.com/richfaces/richfaces/tree/master/build/page-fragments" target="_blank">https://github.com/richfaces/richfaces/tree/master/build/page-fragments</a>.</p>
<p style="text-align: justify;">Pour plus d&#8217;informations sur Arquillian : <a href="http://slides.com/vineetreynolds/the-arquillian-universe" target="_blank">http://slides.com/vineetreynolds/the-arquillian-universe</a>.</p>
<p style="text-align: justify;">Pour plus d&#8217;informations sur les tests d&#8217;application JSF : <a href="http://www.bleathem.ca/talks/2012-JavaOne/testing-jsf.html" target="_blank">http://www.bleathem.ca/talks/2012-JavaOne/testing-jsf.html</a>.</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://everythingiswrong.free.fr/index.php/2014/07/29/arquillian-graphene-et-richfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss &#8211; Tracer les requêtes HTTP</title>
		<link>http://everythingiswrong.free.fr/index.php/2014/07/22/jboss-tracer-les-requetes-http/</link>
		<comments>http://everythingiswrong.free.fr/index.php/2014/07/22/jboss-tracer-les-requetes-http/#comments</comments>
		<pubDate>Tue, 22 Jul 2014 19:09:15 +0000</pubDate>
		<dc:creator>Yan</dc:creator>
				<category><![CDATA[Java J2EE]]></category>
		<category><![CDATA[Tests unitaires]]></category>
		<category><![CDATA[Arquillian]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JBoss]]></category>

		<guid isPermaLink="false">http://everythingiswrong.free.fr/?p=3200</guid>
		<description><![CDATA[Tracer le contenu des requêtes HTTP d'une application Java J2EE.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">En travaillant sur un test <a href="https://docs.jboss.org/author/display/ARQGRA2/Home" target="_blank">Graphene 2</a>, je me suis rendu compte qu&#8217;il pouvait être très intéressant de tracer le contenu des requêtes HTTP attaquant une application web. Lorsque cette application est déployée sur un serveur JBoss, il suffit d&#8217;ajouter une ligne dans le fichier <code>jboss-web.xml</code> :</p>
<pre class="brush: xml; gutter: true; first-line: 1">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;jboss-web&gt;
   &lt;valve&gt;
      &lt;class-name&gt;org.apache.catalina.valves.RequestDumperValve&lt;/class-name&gt;
   &lt;/valve&gt;
&lt;/jboss-web&gt;</pre>
<p style="text-align: justify;">Remarque, je n&#8217;ai pas essayé sur WildFly, mais la technique devrait fonctionner de la même façon. Ce fichier doit être dans le répertoire <code>WEB-INF</code> de l&#8217;archive web.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiswrong.free.fr/index.php/2014/07/22/jboss-tracer-les-requetes-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
