<div>Thanks a lot.</div>
<div>After replace all of ${<a href="http://wsp.name">wsp.name</a>} with default in repository.xml,guvnor run well.But import examples,&nbsp;import jar model,save new rule etc ,will catch the exceptions</div>
<div>&nbsp;</div>
<div>---------------------------------------------</div>
<div>repository.xml£º</div>
<div>&nbsp;</div>
<div>&lt;?xml version=&quot;1.0&quot;?&gt;<br><br>&lt;!DOCTYPE Repository PUBLIC &quot;-//The Apache Software Foundation//DTD Jackrabbit 1.4//EN&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;<a href="http://jackrabbit.apache.org/dtd/repository-1.4.dtd">http://jackrabbit.apache.org/dtd/repository-1.4.dtd</a>&quot;&gt;<br>
&lt;!-- Example Repository Configuration File --&gt;<br>&lt;Repository&gt;<br>&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual file system where the repository stores global state<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (e.g. registered namespaces, custom node types, etc.)<br>
&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;FileSystem class=&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;path&quot; value=&quot;${rep.home}/repository&quot;/&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/FileSystem&gt;</div>

<div>&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; security configuration<br>&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;Security appName=&quot;Jackrabbit&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; access manager:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class: FQN of class implementing the AccessManager interface<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;AccessManager class=&quot;org.apache.jackrabbit.core.security.SimpleAccessManager&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- &lt;param name=&quot;config&quot; value=&quot;${rep.home}/access.xml&quot;/&gt; --&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/AccessManager&gt;</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;LoginModule class=&quot;org.apache.jackrabbit.core.security.SimpleLoginModule&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- anonymous user name (&#39;anonymous&#39; is the default value) --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- &lt;param name=&quot;anonymousId&quot; value=&quot;anonymous&quot;/&gt; --&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default user name to be used instead of the anonymous user<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; when no login credentials are provided (unset by default)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!-- &lt;param name=&quot;defaultUserId&quot; value=&quot;superuser&quot;/&gt; --&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/LoginModule&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/Security&gt;</div>
<div>&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; location of workspaces root directory and name of default workspace<br>&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;Workspaces rootPath=&quot;${rep.home}/workspaces&quot; defaultWorkspace=&quot;default&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; workspace configuration template:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; used to create the initial workspace if there&#39;s no workspace yet<br>&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;Workspace name=&quot;default&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual file system of the workspace:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class: FQN of class implementing the FileSystem interface<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;FileSystem class=&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;path&quot; value=&quot;${wsp.home}&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/FileSystem&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; persistence manager of the workspace:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class: FQN of class implementing the PersistenceManager interface<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;PersistenceManager class=&quot;org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;driver&quot; value=&quot;com.mysql.jdbc.Driver&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;url&quot; value=&quot;jdbc:mysql://localhost:3306/guvnor_db&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;user&quot; value=&quot;root&quot; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;password&quot; value=&quot;a123456&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;schema&quot; value=&quot;mysql&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;schemaObjectPrefix&quot; value=&quot;default_&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;externalBLOBs&quot; value=&quot;false&quot;/&gt;<br>
&nbsp;&nbsp; &lt;/PersistenceManager&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Search index and the file system it uses.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class: FQN of class implementing the QueryHandler interface<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;SearchIndex class=&quot;org.apache.jackrabbit.core.query.lucene.SearchIndex&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;path&quot; value=&quot;${wsp.home}/index&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;textFilterClasses&quot; value=&quot;org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;extractorPoolSize&quot; value=&quot;2&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;supportHighlighting&quot; value=&quot;true&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/SearchIndex&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/Workspace&gt;</div>

<div>&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Configures the versioning<br>&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;Versioning rootPath=&quot;${rep.home}/version&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Configures the filesystem to use for versioning for the respective<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; persistence manager<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;FileSystem class=&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;path&quot; value=&quot;${rep.home}/version&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/FileSystem&gt;</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Configures the persistence manager to be used for persisting version state.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Please note that the current versioning implementation is based on<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a &#39;normal&#39; persistence manager, but this could change in future<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; implementations.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;PersistenceManager class=&quot;org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;driver&quot; value=&quot;com.mysql.jdbc.Driver&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;url&quot; value=&quot;jdbc:mysql://localhost:3306/guvnor_db&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;user&quot; value=&quot;root&quot; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;password&quot; value=&quot;a123456&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;schema&quot; value=&quot;mysql&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;schemaObjectPrefix&quot; value=&quot;default_&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;externalBLOBs&quot; value=&quot;false&quot;/&gt;<br>
&nbsp;&nbsp; &lt;/PersistenceManager&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/Versioning&gt;</div>
<div>&nbsp;&nbsp;&nbsp; &lt;!--<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Search index for content that is shared repository wide<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (/jcr:system tree, contains mainly versions)<br>&nbsp;&nbsp;&nbsp; --&gt;<br>&nbsp;&nbsp;&nbsp; &lt;SearchIndex class=&quot;org.apache.jackrabbit.core.query.lucene.SearchIndex&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;path&quot; value=&quot;${rep.home}/repository/index&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;textFilterClasses&quot; value=&quot;org.apache.jackrabbit.extractor.MsWordTextExtractor,org.apache.jackrabbit.extractor.MsExcelTextExtractor,org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,org.apache.jackrabbit.extractor.PdfTextExtractor,org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,org.apache.jackrabbit.extractor.RTFTextExtractor,org.apache.jackrabbit.extractor.HTMLTextExtractor,org.apache.jackrabbit.extractor.XMLTextExtractor&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;extractorPoolSize&quot; value=&quot;2&quot;/&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param name=&quot;supportHighlighting&quot; value=&quot;true&quot;/&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/SearchIndex&gt;<br>&lt;/Repository&gt;<br><br>
<br></div>
<div class="gmail_quote">2009/12/1 Jervisliu <span dir="ltr">&lt;<a href="mailto:jliu@redhat.com">jliu@redhat.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">A quick Google search indicated that this is probably a JackRabbit<br>issue, see [1]. Did not dig deeper to see if this issue has been fixed<br>
in JackRabbit. You may want to find it out by yourself. One workaround<br>is to replace ${<a href="http://wsp.name/" target="_blank">wsp.name</a> &lt;<a href="http://wsp.name/" target="_blank">http://wsp.name</a>&gt;} with &quot;default&quot;.<br>
<br>[1].<br><a href="http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/200601.mbox/%3C004701c61db2$244cb970$b6fdfe0a@gkaradimitr%3E" target="_blank">http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/200601.mbox/%3C004701c61db2$244cb970$b6fdfe0a@gkaradimitr%3E</a><br>
<br>Cheers,<br>Jervis Liu<br>
<div class="im"><br>Sinboy Zhang wrote:<br>&gt; Hi,all:<br>&gt; &nbsp; &nbsp;Guvnor is a BRMS,it can manage the rules through Jackrabbit<br>&gt; Repository.The default,Guvnor work well with derby database.But i want<br>&gt; it work with my database,just like MySQL.<br>
&gt; My step is :<br>&gt; &nbsp; 1.Run Guvnor with default,and generate the repository.xml and<br>&gt; repository dictionary at JBOSS_HOME\bin dictionary<br>&gt; &nbsp; 2.delete repository dictionary and edit repository.xml,only replace<br>
&gt; the content in &lt;PersistenceManage&gt; label ,just like this:<br>&gt; &nbsp; &nbsp; &lt;PersistenceManager<br>&gt; class=&quot;org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager&quot;&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;driver&quot; value=&quot;com.mysql.jdbc.Driver&quot;/&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;url&quot; value=&quot;jdbc:mysql://localhost:3306/guvnor_db&quot;/&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;user&quot; value=&quot;root&quot; /&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;password&quot; value=&quot;a123456&quot; /&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;schema&quot; value=&quot;mysql&quot;/&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;schemaObjectPrefix&quot; value=&quot;${<a href="http://wsp.name/" target="_blank">wsp.name</a><br></div>&gt; &lt;<a href="http://wsp.name/" target="_blank">http://wsp.name</a>&gt;}_&quot;/&gt;<br>

<div class="im">&gt; &nbsp; &nbsp; &nbsp; &nbsp;&lt;param name=&quot;externalBLOBs&quot; value=&quot;false&quot;/&gt;<br>&gt; &nbsp; &nbsp;&lt;/PersistenceManager&gt;<br>&gt; &nbsp; 3.install Mysql database,and create the guvnor_db database<br>&gt; instance,and copy mysql driver to JBOSS_HOME\server\deploy\lib<br>
&gt; &nbsp; 4.Restart the JBoss ,i get the exception:<br>&gt; &nbsp; &nbsp; &nbsp;org.drools.repository.RulesRepositoryException:<br>&gt; javax.jcr.RepositoryException: Invalid repository configuration:<br>&gt; repository.xml: Replacement not found for ${<a href="http://wsp.name/" target="_blank">wsp.name</a><br>
</div>&gt; &lt;<a href="http://wsp.name/" target="_blank">http://wsp.name</a>&gt;}.: Replacement not found for ${<a href="http://wsp.name/" target="_blank">wsp.name</a><br>&gt; &lt;<a href="http://wsp.name/" target="_blank">http://wsp.name</a>&gt;}.<br>

<div class="im">&gt;<br>&gt; &nbsp; Why?Please help me,thanks!<br></div>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>&gt; rules-users mailing list<br>
&gt; <a href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br>&gt; <a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
&gt;<br><br>_______________________________________________<br>rules-users mailing list<br><a href="mailto:rules-users@lists.jboss.org">rules-users@lists.jboss.org</a><br><a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
</blockquote></div><br>