You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jackrabbit.apache.org by Marcel Reutegger <mr...@adobe.com> on 2013/01/23 09:07:30 UTC

RE: no search manager configured for this workspace

Hi,

the Workspace element template in your repository.xml is
missing a SearchIndex configuration. See the default configuration
for an example.

Regards
 Marcel

> Hello!
> 
> I have a JavaEE application that using jackrabbit 2.2.9 embedded.  I use Derby
> for testing, and searching works fine.  But, in production, the datasource is
> set to mysql and I get the following error when trying to search.
>  javax.jcr.RepositoryException: no search manager configured for this
> workspace|#]
> 
> this is my repository.xml file:
> 
> <?xml version="1.0"?>
> <!--
>    Licensed to the Apache Software Foundation (ASF) under one or more
>    contributor license agreements.  See the NOTICE file distributed with
>    this work for additional information regarding copyright ownership.
>    The ASF licenses this file to You under the Apache License, Version 2.0
>    (the "License"); you may not use this file except in compliance with
>    the License.  You may obtain a copy of the License at
> 
>        http://www.apache.org/licenses/LICENSE-2.0
> 
>    Unless required by applicable law or agreed to in writing, software
>    distributed under the License is distributed on an "AS IS" BASIS,
>    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> implied.
>    See the License for the specific language governing permissions and
>    limitations under the License.
> -->
> 
> <!DOCTYPE Repository
>           PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 2.0//EN"
>           "http://jackrabbit.apache.org/dtd/repository-2.0.dtd">
> 
> <!-- Example Repository Configuration File
>      Used by
>      - org.apache.jackrabbit.core.config.RepositoryConfigTest.java
>      -
> -->
> <Repository>
>     <!--
>         virtual file system where the repository stores global state
>         (e.g. registered namespaces, custom node types, etc.)
>     -->
>     <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
>      <param name="driver" value="com.mysql.jdbc.Driver"/>
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>      <param name="schema" value="mysql"/>
>      <param name="schemaObjectPrefix" value="J_R_FS_"/>
>    </FileSystem>
> 
>     <!--
>         data store configuration
>     -->
> <DataStore class="org.apache.jackrabbit.core.data.db.DbDataStore">
>         <param name="driver" value="com.mysql.jdbc.Driver" />
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>         <param name="databaseType" value="mysql"/>
>         <param name="minRecordLength" value="1024"/>
>         <param name="maxConnections" value="3"/>
>         <param name="copyWhenReading" value="true"/>
>         <param name="tablePrefix" value=""/>
>     </DataStore>
> 
>     <!--
>         security configuration
>     -->
>     <Security appName="Jackrabbit">
>         <!--
>             security manager:
>             class: FQN of class implementing the JackrabbitSecurityManager
> interface
>         -->
>         <SecurityManager
> class="org.apache.jackrabbit.core.security.simple.SimpleSecurityManager"
> workspaceName="security">
>             <!--
>             workspace access:
>             class: FQN of class implementing the WorkspaceAccessManager
> interface
>             -->
>             <!-- <WorkspaceAccessManager class="..."/> -->
>             <!-- <param name="config" value="${rep.home}/security.xml"/> -->
>         </SecurityManager>
> 
>         <!--
>             access manager:
>             class: FQN of class implementing the AccessManager interface
>         -->
>         <AccessManager
> class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager">
>             <!-- <param name="config" value="${rep.home}/access.xml"/> -->
>         </AccessManager>
> 
>         <LoginModule
> class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule">
>            <!--
>               anonymous user name ('anonymous' is the default value)
>               <param name="anonymousId" value="anonymous"/>
>             -->
> 
>            <!--
>               administrator user id (default value if param is missing is 'admin')
>               <param name="adminId" value="admin"/>
>             -->
> 
>         </LoginModule>
>     </Security>
> 
>     <!--
>         location of workspaces root directory and name of default workspace
>     -->
>     <Workspaces rootPath="${rep.home}/workspaces"
> defaultWorkspace="olog"/>
>     <!--
>         workspace configuration template:
>         used to create the initial workspace if there's no workspace yet
>     -->
>     <Workspace name="${wsp.name}">
>       <PersistenceManager
> class="org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceMan
> ager">
>         <param name="driver" value="com.mysql.jdbc.Driver" />
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>         <param name="schema" value="mysql" />
>         <param name="schemaObjectPrefix" value="J_PM_${wsp.name}_" />
>         <param name="externalBLOBs" value="false" />
>      </PersistenceManager>
>      <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
>         <param name="driver" value="com.mysql.jdbc.Driver"/>
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>         <param name="schema" value="mysql"/>
>         <param name="schemaObjectPrefix" value="J_FS_${wsp.name}_"/>
>      </FileSystem>
>     </Workspace>
> 
>     <!--
>         Configures the versioning
>     -->
>     <Versioning rootPath="${rep.home}/version">
>      <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
>        <param name="driver" value="com.mysql.jdbc.Driver"/>
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>        <param name="schema" value="mysql"/>
>        <param name="schemaObjectPrefix" value="J_V_FS_"/>
>      </FileSystem>
>      <PersistenceManager
> class="org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager">
>        <param name="driver" value="com.mysql.jdbc.Driver" />
>                 <param name="url" value="url"/>
>                 <param name="user" value="user" />
>                 <param name="password" value="password" />
>        <param name="schema" value="mysql" />
>        <param name="schemaObjectPrefix" value="J_V_PM_" />
>        <param name="externalBLOBs" value="false" />
>      </PersistenceManager>
>    </Versioning>
> 
>     <!--
>         Search index for content that is shared repository wide
>         (/jcr:system tree, contains mainly versions)
>     -->
>     <SearchIndex
> class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
> 	    <param name="path" value="/tmp/index"/>
>         <param name="supportHighlighting" value="true"/>
>     </SearchIndex>
> </Repository>
> 
> 
> --
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA administrators
> For more information on JIRA, see: http://www.atlassian.com/software/jira

Re: no search manager configured for this workspace

Posted by berryma4 <er...@gmail.com>.
Thank you!  So, DBFileSystem workspaces need to be recreated, while you can
edit LocalFileSystem workspaces.
It seems in practice, it's best to use a mix; of LocalFileSystem for
workspace and indexes, while only moving the PersistenceManagers and the
DataStore to Database.

Thank you again for your patience!



On Thu, Jan 24, 2013 at 9:01 AM, Seidel. Robert [via Jackrabbit] <
ml-node+s510166n4657479h86@n4.nabble.com> wrote:

> Hi,
>
> If you are using a DBFileSystem, you have to delete the workspace.xml
> files in your database.
>
> Look for the table <schemaObjectPrefix>FSENTRY or the method
> org.apache.jackrabbit.core.fs.db.DatabaseFileSystem.deleteFile(String).
>
> Regards, Robert
>
> -----Ursprüngliche Nachricht-----
> Von: berryma4 [mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=4657479&i=0>]
>
> Gesendet: Donnerstag, 24. Januar 2013 14:25
> An: [hidden email] <http://user/SendEmail.jtp?type=node&node=4657479&i=1>
> Betreff: Re: no search manager configured for this workspace
>
> I'm sorry if you are not understanding the issue ... workspace.xml does
> not exist.  I was using DbFileSystem, and there doesn't seem to be a way to
> get at the "workspace.xml" when it is in DbFileSystem.
> Currently, I am using LocalFileSystem, which creates the files as you
> stated .... but this is not the case for DbFileSystem.
>
> Thank you!
>
>
>
> On Thu, Jan 24, 2013 at 2:51 AM, Seidel. Robert [via Jackrabbit] <
> [hidden email] <http://user/SendEmail.jtp?type=node&node=4657479&i=2>>
> wrote:
>
> > Hi,
> >
> > the repository.xml contains the template which is used only to create
> > workspace.xml. If you change the template in repository.xml and the
> > workspace.xml existed, then nothing is going to happen. You can find
> > the workspace.xml files here:
> >
> > <repository-root>\repository.xml
> > <repository-root>\workspaces\default\workspace.xml
> > <repository-root>\workspaces\security\workspace.xml
> >
> > Regards, Robert
> >
> > -----Ursprüngliche Nachricht-----
> > Von: berryma4 [mailto:[hidden
> > email]<http://user/SendEmail.jtp?type=node&node=4657464&i=0>]
> >
> > Gesendet: Mittwoch, 23. Januar 2013 17:09
> > An: [hidden email]
> > <http://user/SendEmail.jtp?type=node&node=4657464&i=1>
> > Betreff: RE: no search manager configured for this workspace
> >
> > I get:
> > repository.xml: org.xml.sax.SAXParseException: The content of element
> > type "Workspace" must match
> >
> "(FileSystem,PersistenceManager,SearchIndex?,ISMLocking?,WorkspaceSecurity?,Import?)".
>
> >
> >
> > because I want to make an addition to the workspace, add the
> > SearchIndex ...
> > but I can't modify the workspace.xml because the Workspace is
> > DbFileSystem (and that is stored in the database).
> >
> > There seems to be no way for repository.xml to override workspace.xml,
> > or at least a way to tell the workspace to re-initialize/re-configure
> > from repository.xml .... I just want to add this SearchIndex param to
> > the DbFileSystem workspace.
> >
> > If this isn't a bug, maybe this could be a feature?
> >
> > Thank you!
> >
> >
> >
> > --
> > View this message in context:
> > http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured
> > -for-this-workspace-tp4657415p4657444.html
> > Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
> > ________________________________
> >
> > Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart.
> > Halle 5, Stand 261.
> > Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
> > www.aeb.de/logimat
> >
> >
> > ------------------------------
> >  If you reply to this email, your message will be added to the
> > discussion
> > below:
> >
> > http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured
> > -for-this-workspace-tp4657415p4657464.html
> >  To unsubscribe from RE: no search manager configured for this
> > workspace, click
> > here<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?m
> > acro=unsubscribe_by_code&node=4657415&code=ZXJpYy5iZXJyeW1hbkBnbWFpbC5
> > jb218NDY1NzQxNXwtMTAxODM2NzYxNg==>
> > .
> > NAML<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?m
> > acro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.na
> > ml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-
> > nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%
> > 21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instan
> > t_email%21nabble%3Aemail.naml>
> >
>
>
>
>
> --
> View this message in context:
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657478.html
>
> Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
> ________________________________
>
> Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart.
> Halle 5, Stand 261.
> Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
> www.aeb.de/logimat
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657479.html
>  To unsubscribe from RE: no search manager configured for this workspace, click
> here<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4657415&code=ZXJpYy5iZXJyeW1hbkBnbWFpbC5jb218NDY1NzQxNXwtMTAxODM2NzYxNg==>
> .
> NAML<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657482.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.

AW: no search manager configured for this workspace

Posted by "Seidel. Robert" <Ro...@aeb.de>.
Hi,

If you are using a DBFileSystem, you have to delete the workspace.xml files in your database.

Look for the table <schemaObjectPrefix>FSENTRY or the method org.apache.jackrabbit.core.fs.db.DatabaseFileSystem.deleteFile(String).

Regards, Robert

-----Ursprüngliche Nachricht-----
Von: berryma4 [mailto:eric.berryman@gmail.com]
Gesendet: Donnerstag, 24. Januar 2013 14:25
An: users@jackrabbit.apache.org
Betreff: Re: no search manager configured for this workspace

I'm sorry if you are not understanding the issue ... workspace.xml does not exist.  I was using DbFileSystem, and there doesn't seem to be a way to get at the "workspace.xml" when it is in DbFileSystem.
Currently, I am using LocalFileSystem, which creates the files as you stated .... but this is not the case for DbFileSystem.

Thank you!



On Thu, Jan 24, 2013 at 2:51 AM, Seidel. Robert [via Jackrabbit] <
ml-node+s510166n4657464h21@n4.nabble.com> wrote:

> Hi,
>
> the repository.xml contains the template which is used only to create
> workspace.xml. If you change the template in repository.xml and the
> workspace.xml existed, then nothing is going to happen. You can find
> the workspace.xml files here:
>
> <repository-root>\repository.xml
> <repository-root>\workspaces\default\workspace.xml
> <repository-root>\workspaces\security\workspace.xml
>
> Regards, Robert
>
> -----Ursprüngliche Nachricht-----
> Von: berryma4 [mailto:[hidden
> email]<http://user/SendEmail.jtp?type=node&node=4657464&i=0>]
>
> Gesendet: Mittwoch, 23. Januar 2013 17:09
> An: [hidden email]
> <http://user/SendEmail.jtp?type=node&node=4657464&i=1>
> Betreff: RE: no search manager configured for this workspace
>
> I get:
> repository.xml: org.xml.sax.SAXParseException: The content of element
> type "Workspace" must match
> "(FileSystem,PersistenceManager,SearchIndex?,ISMLocking?,WorkspaceSecurity?,Import?)".
>
>
> because I want to make an addition to the workspace, add the
> SearchIndex ...
> but I can't modify the workspace.xml because the Workspace is
> DbFileSystem (and that is stored in the database).
>
> There seems to be no way for repository.xml to override workspace.xml,
> or at least a way to tell the workspace to re-initialize/re-configure
> from repository.xml .... I just want to add this SearchIndex param to
> the DbFileSystem workspace.
>
> If this isn't a bug, maybe this could be a feature?
>
> Thank you!
>
>
>
> --
> View this message in context:
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured
> -for-this-workspace-tp4657415p4657444.html
> Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
> ________________________________
>
> Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart.
> Halle 5, Stand 261.
> Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
> www.aeb.de/logimat
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the
> discussion
> below:
>
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured
> -for-this-workspace-tp4657415p4657464.html
>  To unsubscribe from RE: no search manager configured for this
> workspace, click
> here<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?m
> acro=unsubscribe_by_code&node=4657415&code=ZXJpYy5iZXJyeW1hbkBnbWFpbC5
> jb218NDY1NzQxNXwtMTAxODM2NzYxNg==>
> .
> NAML<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?m
> acro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.na
> ml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-
> nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%
> 21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instan
> t_email%21nabble%3Aemail.naml>
>




--
View this message in context: http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657478.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
________________________________

Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart. Halle 5, Stand 261.
Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
www.aeb.de/logimat

Re: no search manager configured for this workspace

Posted by berryma4 <er...@gmail.com>.
I'm sorry if you are not understanding the issue ... workspace.xml does not
exist.  I was using DbFileSystem, and there doesn't seem to be a way to get
at the "workspace.xml" when it is in DbFileSystem.
Currently, I am using LocalFileSystem, which creates the files as you
stated .... but this is not the case for DbFileSystem.

Thank you!



On Thu, Jan 24, 2013 at 2:51 AM, Seidel. Robert [via Jackrabbit] <
ml-node+s510166n4657464h21@n4.nabble.com> wrote:

> Hi,
>
> the repository.xml contains the template which is used only to create
> workspace.xml. If you change the template in repository.xml and the
> workspace.xml existed, then nothing is going to happen. You can find the
> workspace.xml files here:
>
> <repository-root>\repository.xml
> <repository-root>\workspaces\default\workspace.xml
> <repository-root>\workspaces\security\workspace.xml
>
> Regards, Robert
>
> -----Ursprüngliche Nachricht-----
> Von: berryma4 [mailto:[hidden email]<http://user/SendEmail.jtp?type=node&node=4657464&i=0>]
>
> Gesendet: Mittwoch, 23. Januar 2013 17:09
> An: [hidden email] <http://user/SendEmail.jtp?type=node&node=4657464&i=1>
> Betreff: RE: no search manager configured for this workspace
>
> I get:
> repository.xml: org.xml.sax.SAXParseException: The content of element type
> "Workspace" must match
> "(FileSystem,PersistenceManager,SearchIndex?,ISMLocking?,WorkspaceSecurity?,Import?)".
>
>
> because I want to make an addition to the workspace, add the SearchIndex
> ...
> but I can't modify the workspace.xml because the Workspace is DbFileSystem
> (and that is stored in the database).
>
> There seems to be no way for repository.xml to override workspace.xml, or
> at least a way to tell the workspace to re-initialize/re-configure from
> repository.xml .... I just want to add this SearchIndex param to the
> DbFileSystem workspace.
>
> If this isn't a bug, maybe this could be a feature?
>
> Thank you!
>
>
>
> --
> View this message in context:
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657444.html
> Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
> ________________________________
>
> Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart.
> Halle 5, Stand 261.
> Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
> www.aeb.de/logimat
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657464.html
>  To unsubscribe from RE: no search manager configured for this workspace, click
> here<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4657415&code=ZXJpYy5iZXJyeW1hbkBnbWFpbC5jb218NDY1NzQxNXwtMTAxODM2NzYxNg==>
> .
> NAML<http://jackrabbit.510166.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657478.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.

AW: no search manager configured for this workspace

Posted by "Seidel. Robert" <Ro...@aeb.de>.
Hi,

the repository.xml contains the template which is used only to create workspace.xml. If you change the template in repository.xml and the workspace.xml existed, then nothing is going to happen. You can find the workspace.xml files here:

<repository-root>\repository.xml
<repository-root>\workspaces\default\workspace.xml
<repository-root>\workspaces\security\workspace.xml

Regards, Robert

-----Ursprüngliche Nachricht-----
Von: berryma4 [mailto:eric.berryman@gmail.com]
Gesendet: Mittwoch, 23. Januar 2013 17:09
An: users@jackrabbit.apache.org
Betreff: RE: no search manager configured for this workspace

I get:
repository.xml: org.xml.sax.SAXParseException: The content of element type "Workspace" must match "(FileSystem,PersistenceManager,SearchIndex?,ISMLocking?,WorkspaceSecurity?,Import?)".

because I want to make an addition to the workspace, add the SearchIndex ...
but I can't modify the workspace.xml because the Workspace is DbFileSystem (and that is stored in the database).

There seems to be no way for repository.xml to override workspace.xml, or at least a way to tell the workspace to re-initialize/re-configure from repository.xml .... I just want to add this SearchIndex param to the DbFileSystem workspace.

If this isn't a bug, maybe this could be a feature?

Thank you!



--
View this message in context: http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657444.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
________________________________

Treffen Sie AEB vom 19.-21. Februar 2013 auf der LogiMAT in Stuttgart. Halle 5, Stand 261.
Vereinbaren Sie jetzt einen Termin und Sie erhalten eine Eintrittskarte.
www.aeb.de/logimat

RE: no search manager configured for this workspace

Posted by berryma4 <er...@gmail.com>.
I get: 
repository.xml: org.xml.sax.SAXParseException: The content of element type
"Workspace" must match
"(FileSystem,PersistenceManager,SearchIndex?,ISMLocking?,WorkspaceSecurity?,Import?)". 

because I want to make an addition to the workspace, add the SearchIndex ...
but I can't modify the workspace.xml because the Workspace is DbFileSystem
(and that is stored in the database). 

There seems to be no way for repository.xml to override workspace.xml, or at
least a way to tell the workspace to re-initialize/re-configure from
repository.xml .... I just want to add this SearchIndex param to the
DbFileSystem workspace. 

If this isn't a bug, maybe this could be a feature? 

Thank you!



--
View this message in context: http://jackrabbit.510166.n4.nabble.com/RE-no-search-manager-configured-for-this-workspace-tp4657415p4657444.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.