<br><div class="gmail_quote">On Thu, Mar 11, 2010 at 12:35 PM, Michal Vančo <span dir="ltr">&lt;<a href="mailto:mvanco@redhat.com">mvanco@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div><div></div><div class="h5">Nicolas Filotto wrote:<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Mar 11, 2010 at 9:57 AM, Michal Vančo &lt;<a href="mailto:mvanco@redhat.com">mvanco@redhat.com</a>&gt;<br>
&gt; wrote:<br>
&gt;         Hi,<br>
&gt;<br>
&gt;         today I checked following situations with oracle10:<br>
&gt;          - oracle11 driver for oracle10 db<br>
&gt;          - create bundle with JCR 1.12.0-GA<br>
&gt;          - delete gatein-sample* in server/default/deploy -&gt; only<br>
&gt;         change was<br>
&gt;         that it failed with: Cannot create the portal container<br>
&gt;         &#39;portal&#39;, before<br>
&gt;         it was: Cannot create the portal container &#39;sample-portal&#39; and<br>
&gt;         Cannot<br>
&gt;         create the portal container &#39;portal&#39;<br>
&gt;          - creating jcr tables manually with script:<br>
&gt;         <a href="http://anonsvn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-GA/exo.jcr.component.core/src/main/resources/conf/storage/jcr-sjdbc.ora.sql" target="_blank">http://anonsvn.jboss.org/repos/exo-jcr/jcr/tags/1.12.0-GA/exo.jcr.component.core/src/main/resources/conf/storage/jcr-sjdbc.ora.sql</a><br>


&gt;<br>
&gt;         didn&#39;t help, but after adding script to create JCR_CONFIG<br>
&gt;         table -&gt; it<br>
&gt;         started to work (detail of script in another mail on<br>
&gt;         gatein-dev)<br>
&gt;<br>
&gt;         So, looks like JCR don&#39;t want to initialize. Any suggestions<br>
&gt;         why?<br>
&gt; So far the only thing that we know is that<br>
&gt; con.getMetaData().getTables(null, null, &quot;JCR_CONFIG&quot;, null); returns a<br>
&gt; result, so the JCR assumes that the table exists and thus try to<br>
&gt; launch a query on it so it fails since actually the table doesn&#39;t<br>
&gt; exist.<br>
&gt; So far, we don&#39;t know why this method returns something on your side,<br>
&gt; can you add a breakpoint on the method<br>
&gt; org.exoplatform.services.jcr.impl.config.JDBCConfigurationPersister.isDbInitialized() of the project exo.jcr.component.core and tell us what you have in your resultset?<br>
<br>
<br>
</div></div>when calling<br>
ResultSet trs = con.getMetaData().getTables(null, null, &quot;JCR_CONFIG&quot;, null);<br>
return trs.next();<br>
<br>
it returns true and content of trs variable from debug is attached.<br>
<br>
Then it ends on line 237: ResultSet res = ps.executeQuery();<br>
<br>
Is it enough? Or what more can I explore in debug?<br></blockquote><div>yes can you give use the results of those methods call:</div><div>           trs.getString(&quot;TABLE_CAT&quot;) </div><div>           trs.getString(&quot;TABLE_SCHEM&quot;)</div>

<div>           trs.getString(&quot;TABLE_NAME&quot;)</div><div>           trs.getString(&quot;TABLE_TYPE&quot;)</div><div>           trs.getString(&quot;REMARKS&quot;)); </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">


<div><div></div><div class="h5"><br>
&gt;<br>
&gt;         Michal<br>
&gt;<br>
&gt;<br>
&gt;         Michal Vančo wrote:<br>
&gt;         &gt; Hi,<br>
&gt;         &gt;<br>
&gt;         &gt; Nicolas Filotto wrote:<br>
&gt;         &gt; &gt; Could you please provide the list of tables that you can<br>
&gt;         see with your<br>
&gt;         &gt; &gt; credentials on oracle 10 G?<br>
&gt;         &gt;<br>
&gt;         &gt; As I wrote yesterday in my additional reply:<br>
&gt;         &gt; I&#39;m using sqldeveloper tool to see the content of oracle DB,<br>
&gt;         and at all<br>
&gt;         &gt; oracle10 cases, I can&#39;t see that anything is created<br>
&gt;         (tables, sequence,<br>
&gt;         &gt; indexes...) in JCR schema. Only IDM schema initialization is<br>
&gt;         done.<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; On Wed, Mar 10, 2010 at 8:41 PM, Michal Vančo<br>
&gt;         &lt;<a href="mailto:mvanco@redhat.com">mvanco@redhat.com</a>&gt;<br>
&gt;         &gt; &gt; wrote:<br>
&gt;         &gt; &gt;         Hi,<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         currently I have same results as before (table or<br>
&gt;         view does<br>
&gt;         &gt; &gt;         not exist)<br>
&gt;         &gt; &gt;         on oracle10 in these conditions:<br>
&gt;         &gt; &gt;          - 2 datasources on one machine (differentiated by<br>
&gt;         user names)<br>
&gt;         &gt; &gt;          - 1 datasource on a machine (JCR and IDM<br>
&gt;         together)<br>
&gt;         &gt; &gt;          - 2 datasources on separate machines<br>
&gt;         &gt;<br>
&gt;         &gt; It was added for these cases ^.<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         To run GateIn trunk on Oracle10, I do following<br>
&gt;         steps:<br>
&gt;         &gt; &gt;          - prepare GateIn trunk bundle<br>
&gt;         &gt; &gt;          - unzip bundle<br>
&gt;         &gt; &gt;          - change driver class, url, user and password in<br>
&gt;         &gt; &gt;         jcr-configuration.xml<br>
&gt;         &gt; &gt;<br>
&gt;         in ../server/default/deploy/gatein.ear/02portal.war/WEB-INF/conf/jcr/<br>
&gt;         &gt; &gt;          - change driver class, url, user and password in<br>
&gt;         &gt; &gt;         idm-configuration.xml<br>
&gt;         &gt; &gt;<br>
&gt;         in ../server/default/deploy/gatein.ear/02portal.war/WEB-INF/conf/organization/<br>
&gt;         &gt; &gt;          - add &lt;property name=&quot;hibernate.hbm2ddl.auto&quot;<br>
&gt;         &gt; &gt;         value=&quot;create-drop&quot;/&gt; in<br>
&gt;         &gt; &gt;         idm-configuration.xml<br>
&gt;         &gt; &gt;          - copy oracle10 jdbc driver<br>
&gt;         into ../server/default/lib<br>
&gt;         &gt; &gt;          - start gatein by run.sh in bin folder<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         (I can provide a script from hudson where you can<br>
&gt;         add your own<br>
&gt;         &gt; &gt;         paths and<br>
&gt;         &gt; &gt;         credentials...)<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         For oracle11:<br>
&gt;         &gt; &gt;          - when run with same config as on oracle10, I get<br>
&gt;         error:<br>
&gt;         &gt; &gt;         ORA-00972: identifier is too long (when<br>
&gt;         initializing<br>
&gt;         &gt; &gt;<br>
&gt;         org.exoplatform.services.jcr.impl.core.lock.jbosscache.CacheableLockManagerImpl)<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;          - oracle11_jcr.jpg - screen of what has been<br>
&gt;         created in DB<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;          - if I edit table names<br>
&gt;         &gt; &gt;<br>
&gt;         in ../server/default/deploy/gatein.ear/02portal.war/WEB-INF/conf/jcr/repository-configuration.xml, gatein started correctly<br>
&gt;         &gt; &gt;         - oracle11_jcr_shorten_names.jpg - screen of what<br>
&gt;         has been<br>
&gt;         &gt; &gt;         created in DB<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         Let me know if you need more details to reproduce<br>
&gt;         it on your<br>
&gt;         &gt; &gt;         side.<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         Best regards,<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         Michal<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         Nicolas Filotto píše v St 10. 03. 2010 v 17:39<br>
&gt;         +0100:<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt; On Wed, Mar 10, 2010 at 5:19 PM, Prabhat Jha<br>
&gt;         &gt; &gt;         &lt;<a href="mailto:pjha@redhat.com">pjha@redhat.com</a>&gt; wrote:<br>
&gt;         &gt; &gt;         &gt;         I have created<br>
&gt;         &gt; &gt;         <a href="https://jira.jboss.org/jira/browse/EXOJCR-582" target="_blank">https://jira.jboss.org/jira/browse/EXOJCR-582</a><br>
&gt;         &gt; &gt;         &gt;         for oracle11 issue. Please check that I<br>
&gt;         have right<br>
&gt;         &gt; &gt;         affects and<br>
&gt;         &gt; &gt;         &gt;         fix versions.<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt; thx, FYI I&#39;ve just set the right settings<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         The version of GateIn and JCR is the one<br>
&gt;         that&#39;s in<br>
&gt;         &gt; &gt;         GateIn<br>
&gt;         &gt; &gt;         &gt;         trunk currently. The way our environment<br>
&gt;         is setup is<br>
&gt;         &gt; &gt;         that we<br>
&gt;         &gt; &gt;         &gt;         have one Oracle10 DB servers and<br>
&gt;         different usernames<br>
&gt;         &gt; &gt;         which I<br>
&gt;         &gt; &gt;         &gt;         believe means different schemas in<br>
&gt;         Oracle for<br>
&gt;         &gt; &gt;         different tests<br>
&gt;         &gt; &gt;         &gt;         (gatein-ui, gatein-jcr etc) configured<br>
&gt;         on that<br>
&gt;         &gt; &gt;         server. I would<br>
&gt;         &gt; &gt;         &gt;         have to wait for Michal to show up for<br>
&gt;         info. He<br>
&gt;         &gt; &gt;         needed to<br>
&gt;         &gt; &gt;         &gt;         attend to some personal stuff : hospital<br>
&gt;         to check on<br>
&gt;         &gt; &gt;         his mom.<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         But in your environment, you have GateIn<br>
&gt;         starting<br>
&gt;         &gt; &gt;         fine on<br>
&gt;         &gt; &gt;         &gt;         Oracle 10, right?<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt; no so far, we have only tested with pure JCR but<br>
&gt;         in the same<br>
&gt;         &gt; &gt;         &gt; conditions as gatein, now as we know the version<br>
&gt;         of gatein<br>
&gt;         &gt; &gt;         we will try<br>
&gt;         &gt; &gt;         &gt; with the same version (i.e the trunk)<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         thanks,<br>
&gt;         &gt; &gt;         &gt;         prabhat<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         ----- &quot;Nicolas Filotto&quot;<br>
&gt;         &lt;<a href="mailto:nicolas.filotto@gmail.com">nicolas.filotto@gmail.com</a>&gt;<br>
&gt;         &gt; &gt;         wrote:<br>
&gt;         &gt; &gt;         &gt;         &gt; Prabhat and/or Michal, could you<br>
&gt;         please provide<br>
&gt;         &gt; &gt;         the answers<br>
&gt;         &gt; &gt;         &gt;         of the questions asked by Peter and me.<br>
&gt;         We cannot<br>
&gt;         &gt; &gt;         reproduce so<br>
&gt;         &gt; &gt;         &gt;         far, so we need your help. Please note<br>
&gt;         that we<br>
&gt;         &gt; &gt;         blocked the<br>
&gt;         &gt; &gt;         &gt;         release of GA because of this last<br>
&gt;         issue, so we need<br>
&gt;         &gt; &gt;         your help<br>
&gt;         &gt; &gt;         &gt;         to fix it asap.<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         Thank you in advance,<br>
&gt;         &gt; &gt;         &gt;         BR,<br>
&gt;         &gt; &gt;         &gt;         Nicolas<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         &gt; On Wed, Mar 10, 2010 at 3:02 PM,<br>
&gt;         Nicolas Filotto<br>
&gt;         &gt; &gt;         &gt;         &lt;<a href="mailto:nicolas.filotto@gmail.com">nicolas.filotto@gmail.com</a>&gt; wrote:<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                 Hi Prabhat,<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 my comments inline<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt; On Wed, Mar 10, 2010 at 2:01<br>
&gt;         PM, Prabhat<br>
&gt;         &gt; &gt;         Jha<br>
&gt;         &gt; &gt;         &gt;                 &lt;<a href="mailto:pjha@redhat.com">pjha@redhat.com</a>&gt; wrote:<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; Hi Nicolas,<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; Yes, a jira is on the<br>
&gt;         way but way<br>
&gt;         &gt; &gt;         to<br>
&gt;         &gt; &gt;         &gt;                         reproduce this problem<br>
&gt;         is quite<br>
&gt;         &gt; &gt;         simple. You<br>
&gt;         &gt; &gt;         &gt;                         start with a clean<br>
&gt;         Oracle 10<br>
&gt;         &gt; &gt;         database instance<br>
&gt;         &gt; &gt;         &gt;                         and see the problem<br>
&gt;         during startup.<br>
&gt;         &gt; &gt;         It would<br>
&gt;         &gt; &gt;         &gt;                         make sense to have this<br>
&gt;         issue solved<br>
&gt;         &gt; &gt;         or have a<br>
&gt;         &gt; &gt;         &gt;                         work around before<br>
&gt;         GateIn GA.<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                 It is not enough, we need to<br>
&gt;         know, which<br>
&gt;         &gt; &gt;         exact version<br>
&gt;         &gt; &gt;         &gt;                 of eXo JCR and GateIn, you are<br>
&gt;         using and the<br>
&gt;         &gt; &gt;         content<br>
&gt;         &gt; &gt;         &gt;                 of the files that you modified.<br>
&gt;         &gt; &gt;         &gt;                 could you please open a<br>
&gt;         connexion with the<br>
&gt;         &gt; &gt;         same<br>
&gt;         &gt; &gt;         &gt;                 account and give us the list of<br>
&gt;         tables that<br>
&gt;         &gt; &gt;         you can<br>
&gt;         &gt; &gt;         &gt;                 see<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; Quick questions:<br>
&gt;         &gt; &gt;         &gt;                         &gt;  As per oracle11<br>
&gt;         finding, is JCR<br>
&gt;         &gt; &gt;         config<br>
&gt;         &gt; &gt;         &gt;                         (table names) going to<br>
&gt;         be updated<br>
&gt;         &gt; &gt;         across the<br>
&gt;         &gt; &gt;         &gt;                         board?<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                  You mean to change the sql<br>
&gt;         scripts for<br>
&gt;         &gt; &gt;         oracle 11G? If<br>
&gt;         &gt; &gt;         &gt;                 so please create a JIRA, it will<br>
&gt;         be done in<br>
&gt;         &gt; &gt;         the next<br>
&gt;         &gt; &gt;         &gt;                 maintenance version of eXo JCR<br>
&gt;         which will be<br>
&gt;         &gt; &gt;         1.12.1 GA<br>
&gt;         &gt; &gt;         &gt;                 planned for the end of March<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; Also, I am wondiering<br>
&gt;         given that<br>
&gt;         &gt; &gt;         Oracle 10<br>
&gt;         &gt; &gt;         &gt;                         has been around for a<br>
&gt;         while, I am<br>
&gt;         &gt; &gt;         wondering<br>
&gt;         &gt; &gt;         &gt;                         what has changed in the<br>
&gt;         latest JCR<br>
&gt;         &gt; &gt;         that it<br>
&gt;         &gt; &gt;         &gt;                         does not work here. Did<br>
&gt;         the last GA<br>
&gt;         &gt; &gt;         version<br>
&gt;         &gt; &gt;         &gt;                         work?<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                 Hard to say before reproducing<br>
&gt;         your bug<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; Thanks,<br>
&gt;         &gt; &gt;         &gt;                         &gt; Prabhat<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; ----- &quot;Nicolas<br>
&gt;         Filotto&quot;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &lt;<a href="mailto:nicolas.filotto@gmail.com">nicolas.filotto@gmail.com</a>&gt; wrote:<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; Hi Michal, could you<br>
&gt;         please<br>
&gt;         &gt; &gt;         create JIRA<br>
&gt;         &gt; &gt;         &gt;                         issues in the eXo JCR<br>
&gt;         project<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         (<a href="https://jira.jboss.org/jira/browse/EXOJCR" target="_blank">https://jira.jboss.org/jira/browse/EXOJCR</a>)<br>
&gt;         &gt; &gt;         &gt;                         with all the information<br>
&gt;         needed to<br>
&gt;         &gt; &gt;         allow us to<br>
&gt;         &gt; &gt;         &gt;                         reproduce?<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; On Wed, Mar 10, 2010<br>
&gt;         at 1:46 PM,<br>
&gt;         &gt; &gt;         Nicolas<br>
&gt;         &gt; &gt;         &gt;                         Filotto<br>
&gt;         &lt;<a href="mailto:nicolas.filotto@gmail.com">nicolas.filotto@gmail.com</a>&gt;<br>
&gt;         &gt; &gt;         wrote:<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; On Wed, Mar<br>
&gt;         10, 2010 at<br>
&gt;         &gt; &gt;         1:29 PM,<br>
&gt;         &gt; &gt;         &gt;                                 Michal Vančo<br>
&gt;         &gt; &gt;         &lt;<a href="mailto:mvanco@redhat.com">mvanco@redhat.com</a>&gt;<br>
&gt;         &gt; &gt;         &gt;                                 wrote:<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         Hi,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         oracle11 now<br>
&gt;         &gt; &gt;         works,<br>
&gt;         &gt; &gt;         &gt;                                         oracle10<br>
&gt;         not. See<br>
&gt;         &gt; &gt;         below...<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         Peter Nedonosko<br>
&gt;         &gt; &gt;         wrote<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; Hi,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         about Oracle<br>
&gt;         &gt; &gt;         10 and &#39;<br>
&gt;         &gt; &gt;         &gt;                                         table or<br>
&gt;         view does<br>
&gt;         &gt; &gt;         not exist&#39;:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         the problem is<br>
&gt;         &gt; &gt;         possible<br>
&gt;         &gt; &gt;         &gt;                                         if<br>
&gt;         addConfig used in<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         org.exoplatform.services.jcr.config.RepositoryServiceConfiguration<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; (I<br>
&gt;         found it in<br>
&gt;         &gt; &gt;         portal<br>
&gt;         &gt; &gt;         &gt;                                         \trunk<br>
&gt;         \examples<br>
&gt;         &gt; &gt;         \portal\war\src<br>
&gt;         &gt; &gt;         &gt;                                         \main<br>
&gt;         \webapp\WEB-INF<br>
&gt;         &gt; &gt;         \conf<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         \sample-portal\jcr<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         \jcr-configuration.xml)<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         What you<br>
&gt;         meant with<br>
&gt;         &gt; &gt;         addConfig<br>
&gt;         &gt; &gt;         &gt;                                         plugin?<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         Should I add<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &lt;set-method&gt;addConfig&lt;/set-method&gt; in<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         jcr-configuration.xml?<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; Or<br>
&gt;         how can I<br>
&gt;         &gt; &gt;         solve &#39;table<br>
&gt;         &gt; &gt;         &gt;                                         or view<br>
&gt;         does not<br>
&gt;         &gt; &gt;         exist&#39; on<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         oracle10?<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                 I guess it is<br>
&gt;         not related<br>
&gt;         &gt; &gt;         since it<br>
&gt;         &gt; &gt;         &gt;                                 works with other<br>
&gt;         databases<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; if<br>
&gt;         the<br>
&gt;         &gt; &gt;         database is<br>
&gt;         &gt; &gt;         &gt;                                         creating<br>
&gt;         from the<br>
&gt;         &gt; &gt;         scratch and<br>
&gt;         &gt; &gt;         &gt;                                         if the<br>
&gt;         configuration<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         persister got<br>
&gt;         &gt; &gt;         an answer<br>
&gt;         &gt; &gt;         &gt;                                         from the<br>
&gt;         Oracle -<br>
&gt;         &gt; &gt;         your table<br>
&gt;         &gt; &gt;         &gt;                                         exists<br>
&gt;         in<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         isDbInitialized():<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         ResultSet trs<br>
&gt;         &gt; &gt;         =<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         con.getMetaData().getTables(null, null,<br>
&gt;         configTableName,<br>
&gt;         &gt; &gt;         null);<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         return<br>
&gt;         &gt; &gt;         trs.next(); //<br>
&gt;         &gt; &gt;         &gt;                                         true =<br>
&gt;         yes<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         but then<br>
&gt;         &gt; &gt;         Oracle fails<br>
&gt;         &gt; &gt;         &gt;                                         with<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         PreparedStatement ps =<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         con.prepareStatement(&quot;SELECT<br>
&gt;         &gt; &gt;         &gt;                                         COUNT(*)<br>
&gt;         FROM &quot; +<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         configTableName + &quot;<br>
&gt;         &gt; &gt;         &gt;                                         WHERE<br>
&gt;         NAME=?&quot;);<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         ps.executeQuery(); //<br>
&gt;         &gt; &gt;         &gt;                                         here<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         but I have to<br>
&gt;         &gt; &gt;         reproduce<br>
&gt;         &gt; &gt;         &gt;                                         it<br>
&gt;         first...<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         does Oracle 10<br>
&gt;         &gt; &gt;         and 11<br>
&gt;         &gt; &gt;         &gt;                                         runs on<br>
&gt;         clean<br>
&gt;         &gt; &gt;         database from<br>
&gt;         &gt; &gt;         &gt;                                         the<br>
&gt;         start?<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; or<br>
&gt;         just<br>
&gt;         &gt; &gt;         restarted on<br>
&gt;         &gt; &gt;         &gt;                                         existing<br>
&gt;         db for<br>
&gt;         &gt; &gt;         Oracle 11?<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         Always<br>
&gt;         on clean DBs.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         about<br>
&gt;         &gt; &gt;         Oracle11:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         seems it&#39;s<br>
&gt;         &gt; &gt;         related to<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         JBossCache loader,<br>
&gt;         &gt; &gt;         it creates<br>
&gt;         &gt; &gt;         &gt;                                         a table<br>
&gt;         longer of<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; 30<br>
&gt;         symbols<br>
&gt;         &gt; &gt;         (ORA-00972:<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         identifier is too<br>
&gt;         &gt; &gt;         long).<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         Why it&#39;s not a<br>
&gt;         &gt; &gt;         problem<br>
&gt;         &gt; &gt;         &gt;                                         for<br>
&gt;         Oracle10 or why<br>
&gt;         &gt; &gt;         JBossCache<br>
&gt;         &gt; &gt;         &gt;                                         acts in<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         different way<br>
&gt;         &gt; &gt;         on<br>
&gt;         &gt; &gt;         &gt;                                         Oracle10<br>
&gt;         or etc...<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         try to fix the<br>
&gt;         &gt; &gt;         problem<br>
&gt;         &gt; &gt;         &gt;                                         with<br>
&gt;         shorten table<br>
&gt;         &gt; &gt;         name from<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         repository-configuration.xml<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         e.g.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &lt;property<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         name=&quot;<a href="http://jbosscache-cl-cache.jdbc.table.name" target="_blank">jbosscache-cl-cache.jdbc.table.name</a>&quot;<br>
&gt;         &gt; &gt;         value=&quot;lock_portalsys&quot; /&gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         instead of<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &lt;property<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         name=&quot;<a href="http://jbosscache-cl-cache.jdbc.table.name" target="_blank">jbosscache-cl-cache.jdbc.table.name</a>&quot;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         value=&quot;jcrlock_portal_system&quot; /&gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; it<br>
&gt;         should<br>
&gt;         &gt; &gt;         helps.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         I<br>
&gt;         shortened all<br>
&gt;         &gt; &gt;         table names in<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         repository-configuration.xml<br>
&gt;         &gt; &gt;         &gt;                                         and<br>
&gt;         GateIn<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; on<br>
&gt;         Oracle11<br>
&gt;         &gt; &gt;         started<br>
&gt;         &gt; &gt;         &gt;                                         without<br>
&gt;         &quot;identifier<br>
&gt;         &gt; &gt;         is too<br>
&gt;         &gt; &gt;         &gt;                                         long&quot;<br>
&gt;         error.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         There is job<br>
&gt;         &gt; &gt;         when it<br>
&gt;         &gt; &gt;         &gt;                                         starts<br>
&gt;         for the first<br>
&gt;         &gt; &gt;         time:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle11/35/" target="_blank">http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle11/35/</a><br>


&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; I<br>
&gt;         think that it<br>
&gt;         &gt; &gt;         would be<br>
&gt;         &gt; &gt;         &gt;                                         better<br>
&gt;         to edit<br>
&gt;         &gt; &gt;         configuration,<br>
&gt;         &gt; &gt;         &gt;                                         because<br>
&gt;         editing<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         table names<br>
&gt;         &gt; &gt;         before running<br>
&gt;         &gt; &gt;         &gt;                                         gatein<br>
&gt;         isn&#39;t a good<br>
&gt;         &gt; &gt;         way.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         Regards,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         Peter<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; On<br>
&gt;         Tue, Mar 9,<br>
&gt;         &gt; &gt;         2010 at<br>
&gt;         &gt; &gt;         &gt;                                         11:24<br>
&gt;         AM, Michal<br>
&gt;         &gt; &gt;         Vančo<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &lt;<a href="mailto:mvanco@redhat.com">mvanco@redhat.com</a>&gt;<br>
&gt;         &gt; &gt;         wrote:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         Yes Bolek,<br>
&gt;         &gt; &gt;         that&#39;s<br>
&gt;         &gt; &gt;         &gt;                                         true.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         I can&#39;t<br>
&gt;         &gt; &gt;         explain myself<br>
&gt;         &gt; &gt;         &gt;                                         the job<br>
&gt;         in hudson on<br>
&gt;         &gt; &gt;         EPP5<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         (epp_ui_selenium_tests_oracle10):<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         Because<br>
&gt;         &gt; &gt;         there was same<br>
&gt;         &gt; &gt;         &gt;                                         problem<br>
&gt;         - table or<br>
&gt;         &gt; &gt;         view does<br>
&gt;         &gt; &gt;         &gt;                                         not<br>
&gt;         exist (build<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         #3), builds<br>
&gt;         &gt; &gt;         #5 and #7<br>
&gt;         &gt; &gt;         &gt;                                         were OK<br>
&gt;         (GateIn<br>
&gt;         &gt; &gt;         started with<br>
&gt;         &gt; &gt;         &gt;                                         no<br>
&gt;         errors) and<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         following<br>
&gt;         &gt; &gt;         builds again<br>
&gt;         &gt; &gt;         &gt;                                         failed<br>
&gt;         due the same<br>
&gt;         &gt; &gt;         problem as<br>
&gt;         &gt; &gt;         &gt;                                         before.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         Regards,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         Michal<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         Boleslaw<br>
&gt;         &gt; &gt;         Dawidowicz<br>
&gt;         &gt; &gt;         &gt;                                         píše v<br>
&gt;         Út 09. 03.<br>
&gt;         &gt; &gt;         2010 v 09:59<br>
&gt;         &gt; &gt;         &gt;                                         +0100:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         From<br>
&gt;         &gt; &gt;         mentioned logs<br>
&gt;         &gt; &gt;         &gt;                                         it looks<br>
&gt;         like those<br>
&gt;         &gt; &gt;         errors<br>
&gt;         &gt; &gt;         &gt;                                         don&#39;t<br>
&gt;         come from IDM.<br>
&gt;         &gt; &gt;         I<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         think the<br>
&gt;         &gt; &gt;         stack trace<br>
&gt;         &gt; &gt;         &gt;                                         in all<br>
&gt;         cases goes<br>
&gt;         &gt; &gt;         via<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &quot;org.exoplatform.services.jcr.impl.*&quot;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         Bolek<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         On<br>
&gt;         &gt; &gt;         03/09/2010 09:15<br>
&gt;         &gt; &gt;         &gt;                                         AM,<br>
&gt;         Michal Vančo<br>
&gt;         &gt; &gt;         wrote:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; Hi,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; I&#39;m<br>
&gt;         &gt; &gt;         dealing with<br>
&gt;         &gt; &gt;         &gt;                                         problem<br>
&gt;         to start<br>
&gt;         &gt; &gt;         GateIn with<br>
&gt;         &gt; &gt;         &gt;                                         Oracle<br>
&gt;         DB.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; I always<br>
&gt;         &gt; &gt;         start with<br>
&gt;         &gt; &gt;         &gt;                                         clean DB<br>
&gt;         and use 2<br>
&gt;         &gt; &gt;         datasource<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         instances (JCR,<br>
&gt;         &gt; &gt;         IDM).<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; There are<br>
&gt;         &gt; &gt;         2<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         different issues:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; Oracle10:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; -<br>
&gt;         &gt; &gt;         ORA-00942: table<br>
&gt;         &gt; &gt;         &gt;                                         or view<br>
&gt;         does not<br>
&gt;         &gt; &gt;         exist (start<br>
&gt;         &gt; &gt;         &gt;                                         on<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         org.exoplatform.services.jcr.impl.config.RepositoryServiceConfigurationImpl@b2ecc0)<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; - only<br>
&gt;         &gt; &gt;         IDM schema<br>
&gt;         &gt; &gt;         &gt;                                         is<br>
&gt;         initialized, JCR<br>
&gt;         &gt; &gt;         not<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; Oracle11:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; -<br>
&gt;         &gt; &gt;         ORA-00972:<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         identifier is too<br>
&gt;         &gt; &gt;         long (Cannot<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         instantiate<br>
&gt;         &gt; &gt;         component class<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         org.exoplatform.services.jcr.impl.core.lock.jbosscache.CacheableLockManagerImpl)<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; - both<br>
&gt;         &gt; &gt;         schemas are<br>
&gt;         &gt; &gt;         &gt;                                         created<br>
&gt;         (IDM + JCR)<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; To run on<br>
&gt;         &gt; &gt;         oracle, I<br>
&gt;         &gt; &gt;         &gt;                                         change<br>
&gt;         configuration<br>
&gt;         &gt; &gt;         in<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         idm-configuration.xml and<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         jcr-configuration.xml, then<br>
&gt;         &gt; &gt;         &gt;                                         copy<br>
&gt;         jdbc driver and<br>
&gt;         &gt; &gt;         start.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; I also<br>
&gt;         &gt; &gt;         add&lt;property<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         name=&quot;hibernate.hbm2ddl.auto&quot;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         value=&quot;create-drop&quot;/&gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; to<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         idm-configuration.xml<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         (recommended by<br>
&gt;         &gt; &gt;         Boleslaw<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         Dawidowicz - it<br>
&gt;         &gt; &gt;         worked<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; on EPP,<br>
&gt;         &gt; &gt;         but not on<br>
&gt;         &gt; &gt;         &gt;                                         GateIn<br>
&gt;         trunk).<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; There are<br>
&gt;         &gt; &gt;         links to<br>
&gt;         &gt; &gt;         &gt;                                         log:<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle10/22/console" target="_blank">http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle10/22/console</a><br>


&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle11/21/console" target="_blank">http://hudson.jboss.org/hudson/job/gatein_portal_ui_selenium_tests_jboss5_oracle11/21/console</a><br>


&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; I would<br>
&gt;         &gt; &gt;         appreciate<br>
&gt;         &gt; &gt;         &gt;                                         any<br>
&gt;         help.<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; Thanks in<br>
&gt;         &gt; &gt;         advance<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt; Michal<br>
&gt;         &gt; &gt;         Vanco<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         _______________________________________________<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         gatein-dev mailing<br>
&gt;         &gt; &gt;         &gt;                                         list<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         <a href="mailto:gatein-dev@lists.jboss.org">gatein-dev@lists.jboss.org</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;&gt;<br>
&gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="https://lists.jboss.org/mailman/listinfo/gatein-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/gatein-dev</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         _______________________________________________<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         gatein-dev<br>
&gt;         &gt; &gt;         mailing<br>
&gt;         &gt; &gt;         &gt;                                         list<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         <a href="mailto:gatein-dev@lists.jboss.org">gatein-dev@lists.jboss.org</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="https://lists.jboss.org/mailman/listinfo/gatein-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/gatein-dev</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt; &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                                         Thanks,<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         Michal<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         _______________________________________________<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         gatein-dev<br>
&gt;         &gt; &gt;         mailing list<br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         <a href="mailto:gatein-dev@lists.jboss.org">gatein-dev@lists.jboss.org</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         <a href="https://lists.jboss.org/mailman/listinfo/gatein-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/gatein-dev</a><br>
&gt;         &gt; &gt;         &gt;                                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt; --<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                                 &gt; Nicolas<br>
&gt;         Filotto<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt; JCR Product<br>
&gt;         Manager<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt; Project<br>
&gt;         Manager<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt; eXo Platform<br>
&gt;         SAS<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt; +33 (0)6 31<br>
&gt;         32 92 19<br>
&gt;         &gt; &gt;         &gt;                                 &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; --<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; Nicolas Filotto<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; JCR Product Manager<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; Project Manager<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; eXo Platform SAS<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt; +33 (0)6 31 32 92 19<br>
&gt;         &gt; &gt;         &gt;                         &gt; &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;                         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         _______________________________________________<br>
&gt;         gatein-dev<br>
&gt;         &gt; &gt;         mailing list <a href="mailto:gatein-dev@lists.jboss.org">gatein-dev@lists.jboss.org</a><br>
&gt;         &gt; &gt;<br>
&gt;         <a href="https://lists.jboss.org/mailman/listinfo/gatein-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/gatein-dev</a><br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;                 &gt; --<br>
&gt;         &gt; &gt;         &gt;                 &gt; Nicolas Filotto<br>
&gt;         &gt; &gt;         &gt;                 &gt; JCR Product Manager<br>
&gt;         &gt; &gt;         &gt;                 &gt; Project Manager<br>
&gt;         &gt; &gt;         &gt;                 &gt; eXo Platform SAS<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt;         &gt;                 &gt; +33 (0)6 31 32 92 19<br>
&gt;         &gt; &gt;         &gt;                 &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;         &gt; --<br>
&gt;         &gt; &gt;         &gt;         &gt; Nicolas Filotto<br>
&gt;         &gt; &gt;         &gt;         &gt; JCR Product Manager<br>
&gt;         &gt; &gt;         &gt;         &gt; Project Manager<br>
&gt;         &gt; &gt;         &gt;         &gt; eXo Platform SAS<br>
&gt;         &gt; &gt;         &gt;         &gt; <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt;         &gt;         &gt; +33 (0)6 31 32 92 19<br>
&gt;         &gt; &gt;         &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt;<br>
&gt;         &gt; &gt;         &gt; --<br>
&gt;         &gt; &gt;         &gt; Nicolas Filotto<br>
&gt;         &gt; &gt;         &gt; JCR Product Manager<br>
&gt;         &gt; &gt;         &gt; Project Manager<br>
&gt;         &gt; &gt;         &gt; eXo Platform SAS<br>
&gt;         &gt; &gt;         &gt; <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt;         &gt; +33 (0)6 31 32 92 19<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt;<br>
&gt;         &gt; &gt; --<br>
&gt;         &gt; &gt; Nicolas Filotto<br>
&gt;         &gt; &gt; JCR Product Manager<br>
&gt;         &gt; &gt; Project Manager<br>
&gt;         &gt; &gt; eXo Platform SAS<br>
&gt;         &gt; &gt; <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt;         &gt; &gt; +33 (0)6 31 32 92 19<br>
&gt;         &gt;<br>
&gt;         &gt; Michal<br>
&gt;         &gt;<br>
&gt;         &gt; _______________________________________________<br>
&gt;         &gt; gatein-dev mailing list<br>
&gt;         &gt; <a href="mailto:gatein-dev@lists.jboss.org">gatein-dev@lists.jboss.org</a><br>
&gt;         &gt; <a href="https://lists.jboss.org/mailman/listinfo/gatein-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/gatein-dev</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Nicolas Filotto<br>
&gt; JCR Product Manager<br>
&gt; Project Manager<br>
&gt; eXo Platform SAS<br>
&gt; <a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>
&gt; +33 (0)6 31 32 92 19<br>
&gt;<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Nicolas Filotto<br>JCR Product Manager<br>Project Manager<br>eXo Platform SAS<br><a href="mailto:nicolas.filotto@exoplatform.com">nicolas.filotto@exoplatform.com</a><br>

+33 (0)6 31 32 92 19  <br>