You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Carlos Alexandro Becker <ca...@gmail.com> on 2012/11/06 14:35:29 UTC

Fwd: migrating from solr3 to solr4

So, we have a module in our app, called indexer. In it's pom.xml file, solr is
added as dependency, like this:

<dependency>
            <!-- Main dependency for Solr war -->
            <groupId>org.apache.solr</groupId>
            <artifactId>solr</artifactId>
            <version>${solr-version}</version>
            <type>war</type>
        </dependency>
        <dependency>
            <!-- ExtractionHandler dependency -->
            <groupId>org.apache.solr</groupId>
            <artifactId>solr-cell</artifactId>
            <version>${solr-version}</version>
            <type>jar</type>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.solr</groupId>
                    <artifactId>solr-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-codec</groupId>
                    <artifactId>commons-codec</artifactId>
                </exclusion>
                <exclusion>
                    <artifactId>commons-logging</artifactId>
                    <groupId>commons-logging</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>jdom</artifactId>
                    <groupId>jdom</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.solr</groupId>
            <artifactId>solr-velocity</artifactId>
            <version>${solr-version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.solr</groupId>
                    <artifactId>solr-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.apache.solr</groupId>
            <artifactId>solr-core</artifactId>
            <version>${solr-version}</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.lucene</groupId>
                    <artifactId>lucene-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-codec</groupId>
                    <artifactId>commons-codec</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-fileupload</groupId>
                    <artifactId>commons-fileupload</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-io</groupId>
                    <artifactId>commons-io</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-httpclient</groupId>
                    <artifactId>commons-httpclient</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.apache.solr</groupId>
                    <artifactId>solr-solrj</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>stax</groupId>
                    <artifactId>stax-api</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.lucene</groupId>
            <artifactId>lucene-core</artifactId>
            <version>${solr-version}</version>
            <scope>provided</scope>
        </dependency>

 Then, in this project, we add some custom Tokenizers and other things, as
well the xml files with the configurations.

Ok, I just changed the ${solr-version} from 3.6.0 to 4.0.0, fixed the
tokenizers to fit the new classes, redeploy the app (in a jboss 7, btw),
and try to add the solr admin page (localhost:8080/indexer), but, it didn't
work.

For start, seems like it don't have a index.html file, so, I go manually do
admin.html, and when I was thinking that's finally working, the load never
ends. The menu is loaded as expected, but, no "real content" is shown. I
got the following error in browser console:

http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json

 BTW, I have no error in server console, and, looks like the index was
successful converted, as the app search still works (at least until now).

I was investigating the solr JS files, and I think that I found something
relative to the issue. Injs/scripts/cores.js, at line 32, I found the
following:

url : app.config.solr_path + app.config.core_admin_path + '?wt=json',

It does not work, because looks like app this:

app
solr_admin
config: Object
core_admin_path: "${adminPath}"
solr_path: "${contextPath}"
__proto__: Object
menu_element: jQuery.fn.jQuery.init[1]
run: function ()
timeout: null
__proto__: Object

It looks like a miss configuration. I just don't know exactly what config
and were to put it.


Thanks in advance.

-- 
Atenciosamente,
*Carlos Alexandro Becker*
https://profiles.google.com/caarlos0

Re: migrating from solr3 to solr4

Posted by Carlos Alexandro Becker <ca...@gmail.com>.
It works, thank you very much.


On Wed, Nov 7, 2012 at 6:49 AM, Stefan Matheis <ma...@gmail.com>wrote:

> Hey Carlos
>
> This sounds a bit like a change which was made in SOLR-1770:
>
> Index: example/solr/solr.xml
> ===================================================================
> --- example/solr/solr.xml (revision 909013)
> +++ example/solr/solr.xml (working copy)
> @@ -29,6 +29,6 @@
> If 'null' (or absent), cores will not be manageable via request handler
> -->
> <cores adminPath="/admin/cores" defaultCoreName="collection1">
> - <core name="collection1" instanceDir="." />
> + <core name="collection1" instanceDir="collection1" />
> </cores>
> </solr>
>
>
> Verify that for your current Configuration and let me know if it helped
>
> Stefan
>
>
> On Tuesday, November 6, 2012 at 6:31 PM, Carlos Alexandro Becker wrote:
>
> > Hi Stefan,
> >
> > Thank you very much, I just realized that I didn't updated the web.xml (
> http://web.xml), so,
> > I not has the LoadAdminUiServlet configured, that's why it was not
> working.
> >
> > By now, the only problem I still have, is that it tries to access
> > solr.home/collection1/conf, and I used to have it in solr.home/conf..
> >
> > How can I fix this?
> >
> > Thank you very much for your help.
> >
> >
> > On Tue, Nov 6, 2012 at 3:01 PM, Stefan Matheis <matheis.stefan@gmail.com(mailto:
> matheis.stefan@gmail.com)>wrote:
> >
> > > Hey Carlos
> > >
> > > just had a quick look at our changes and figured out the revision which
> > > introduced this change, which might help you while having another look?
> > >
> > > http://svn.apache.org/viewvc?view=revision&revision=1297578
> > >
> > > The LoadAdminUiServlet is responsible for replacing those placeholders
> > > which are causing your problems
> > >
> > > HTH at least a bit
> > > Stefan
> > >
> > >
> > >
> > > On Tuesday, November 6, 2012 at 5:02 PM, Carlos Alexandro Becker wrote:
> > >
> > > > just found this in the admin.html head:
> > > >
> > > > https://gist.github.com/4025669
> > > >
> > > >
> > > > On Tue, Nov 6, 2012 at 1:57 PM, Carlos Alexandro Becker
> > > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)>wrote:
> > > >
> > > > > Hi Michael, thank for your answer.
> > > > >
> > > > > I already posted it in stackoverflow (
> > >
> http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4
> ),
> > > > > but, this looks like a encoding issue, actually, is exactly the
> error.
> > > > >
> > > > > I'm not sure, but I look in all xml files in my JBoss and also in
> app,
> > > > > neither mention this variables (contextPath and adminPath) related
> to
> > > >
> > >
> > >
> > > solr.
> > > > >
> > > > > So, or there is something that I should configure and don't know
> how,
> > > or
> > > > > some trouble with the encoding that are escaping the "$" and "{"
> > > >
> > >
> > >
> > > around the
> > > > > var (not sure, I didn't find the file where the app variable is
> > > >
> > >
> > >
> > > populated).
> > > > >
> > > > > Thanks in advance.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
> > > > > michael.della.bitta@appinions.com (mailto:
> michael.della.bitta@appinions.com) (mailto:
> > > >
> > >
> > >
> > > michael.della.bitta@appinions.com (mailto:
> michael.della.bitta@appinions.com))> wrote:
> > > > >
> > > > > > > I got the following error in browser console:
> > >
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > > > > >
> > > > > > We can't see the contents of that link.. Could you post it on
> > > > > > pastebin.com (http://pastebin.com) or something?
> > > > > >
> > > > > > Michael Della Bitta
> > > > > >
> > > > > > ------------------------------------------------
> > > > > > Appinions
> > > > > > 18 East 41st Street, 2nd Floor
> > > > > > New York, NY 10017-6271
> > > > > >
> > > > > > www.appinions.com (http://www.appinions.com)
> > > > > >
> > > > > > Where Influence Isn’t a Game
> > > > > >
> > > > > >
> > > > > > On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
> > > > > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)> wrote:
> > > > > > > I
> > > > > > > got the following error in browser console:
> > > > > >
> > > > >
> > > >
> > >
> > >
> > >
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Atenciosamente,
> > > > > *Carlos Alexandro Becker*
> > > > > https://profiles.google.com/caarlos0
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Atenciosamente,
> > > > *Carlos Alexandro Becker*
> > > > https://profiles.google.com/caarlos0
> > >
> >
> >
> >
> >
> > --
> > Atenciosamente,
> > *Carlos Alexandro Becker*
> > http://caarlos0.github.com/about
>
>
>
>


-- 
Atenciosamente,
*Carlos Alexandro Becker*
http://caarlos0.github.com/about

Re: migrating from solr3 to solr4

Posted by Stefan Matheis <ma...@gmail.com>.
Hey Carlos

This sounds a bit like a change which was made in SOLR-1770:

Index: example/solr/solr.xml
===================================================================
--- example/solr/solr.xml (revision 909013)
+++ example/solr/solr.xml (working copy)
@@ -29,6 +29,6 @@
If 'null' (or absent), cores will not be manageable via request handler
-->
<cores adminPath="/admin/cores" defaultCoreName="collection1">
- <core name="collection1" instanceDir="." />
+ <core name="collection1" instanceDir="collection1" />
</cores>
</solr>


Verify that for your current Configuration and let me know if it helped

Stefan  


On Tuesday, November 6, 2012 at 6:31 PM, Carlos Alexandro Becker wrote:

> Hi Stefan,
>  
> Thank you very much, I just realized that I didn't updated the web.xml (http://web.xml), so,
> I not has the LoadAdminUiServlet configured, that's why it was not working.
>  
> By now, the only problem I still have, is that it tries to access
> solr.home/collection1/conf, and I used to have it in solr.home/conf..
>  
> How can I fix this?
>  
> Thank you very much for your help.
>  
>  
> On Tue, Nov 6, 2012 at 3:01 PM, Stefan Matheis <matheis.stefan@gmail.com (mailto:matheis.stefan@gmail.com)>wrote:
>  
> > Hey Carlos
> >  
> > just had a quick look at our changes and figured out the revision which
> > introduced this change, which might help you while having another look?
> >  
> > http://svn.apache.org/viewvc?view=revision&revision=1297578
> >  
> > The LoadAdminUiServlet is responsible for replacing those placeholders
> > which are causing your problems
> >  
> > HTH at least a bit
> > Stefan
> >  
> >  
> >  
> > On Tuesday, November 6, 2012 at 5:02 PM, Carlos Alexandro Becker wrote:
> >  
> > > just found this in the admin.html head:
> > >  
> > > https://gist.github.com/4025669
> > >  
> > >  
> > > On Tue, Nov 6, 2012 at 1:57 PM, Carlos Alexandro Becker
> > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)>wrote:
> > >  
> > > > Hi Michael, thank for your answer.
> > > >  
> > > > I already posted it in stackoverflow (
> > http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4),
> > > > but, this looks like a encoding issue, actually, is exactly the error.
> > > >  
> > > > I'm not sure, but I look in all xml files in my JBoss and also in app,
> > > > neither mention this variables (contextPath and adminPath) related to
> > >  
> >  
> >  
> > solr.
> > > >  
> > > > So, or there is something that I should configure and don't know how,
> > or
> > > > some trouble with the encoding that are escaping the "$" and "{"
> > >  
> >  
> >  
> > around the
> > > > var (not sure, I didn't find the file where the app variable is
> > >  
> >  
> >  
> > populated).
> > > >  
> > > > Thanks in advance.
> > > >  
> > > >  
> > > >  
> > > >  
> > > > On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
> > > > michael.della.bitta@appinions.com (mailto:michael.della.bitta@appinions.com) (mailto:
> > >  
> >  
> >  
> > michael.della.bitta@appinions.com (mailto:michael.della.bitta@appinions.com))> wrote:
> > > >  
> > > > > > I got the following error in browser console:
> > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > > > >  
> > > > > We can't see the contents of that link.. Could you post it on
> > > > > pastebin.com (http://pastebin.com) or something?
> > > > >  
> > > > > Michael Della Bitta
> > > > >  
> > > > > ------------------------------------------------
> > > > > Appinions
> > > > > 18 East 41st Street, 2nd Floor
> > > > > New York, NY 10017-6271
> > > > >  
> > > > > www.appinions.com (http://www.appinions.com)
> > > > >  
> > > > > Where Influence Isn’t a Game
> > > > >  
> > > > >  
> > > > > On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
> > > > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)> wrote:
> > > > > > I
> > > > > > got the following error in browser console:
> > > > >  
> > > >  
> > >  
> >  
> >  
> > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > > >  
> > > >  
> > > >  
> > > >  
> > > > --
> > > > Atenciosamente,
> > > > *Carlos Alexandro Becker*
> > > > https://profiles.google.com/caarlos0
> > >  
> > >  
> > >  
> > >  
> > >  
> > >  
> > > --
> > > Atenciosamente,
> > > *Carlos Alexandro Becker*
> > > https://profiles.google.com/caarlos0
> >  
>  
>  
>  
>  
> --  
> Atenciosamente,
> *Carlos Alexandro Becker*
> http://caarlos0.github.com/about




Re: migrating from solr3 to solr4

Posted by Carlos Alexandro Becker <ca...@gmail.com>.
Hi Stefan,

Thank you very much, I just realized that I didn't updated the web.xml, so,
I not has the LoadAdminUiServlet configured, that's why it was not working.

By now, the only problem I still have, is that it tries to access
solr.home/collection1/conf, and I used to have it in solr.home/conf..

How can I fix this?

Thank you very much for your help.


On Tue, Nov 6, 2012 at 3:01 PM, Stefan Matheis <ma...@gmail.com>wrote:

> Hey Carlos
>
> just had a quick look at our changes and figured out the revision which
> introduced this change, which might help you while having another look?
>
> http://svn.apache.org/viewvc?view=revision&revision=1297578
>
> The LoadAdminUiServlet is responsible for replacing those placeholders
> which are causing your problems
>
> HTH at least a bit
> Stefan
>
>
>
> On Tuesday, November 6, 2012 at 5:02 PM, Carlos Alexandro Becker wrote:
>
> > just found this in the admin.html head:
> >
> > https://gist.github.com/4025669
> >
> >
> > On Tue, Nov 6, 2012 at 1:57 PM, Carlos Alexandro Becker
> > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)>wrote:
> >
> > > Hi Michael, thank for your answer.
> > >
> > > I already posted it in stackoverflow (
> > >
> http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4),
> > > but, this looks like a encoding issue, actually, is exactly the error.
> > >
> > > I'm not sure, but I look in all xml files in my JBoss and also in app,
> > > neither mention this variables (contextPath and adminPath) related to
> solr.
> > >
> > > So, or there is something that I should configure and don't know how,
> or
> > > some trouble with the encoding that are escaping the "$" and "{"
> around the
> > > var (not sure, I didn't find the file where the app variable is
> populated).
> > >
> > > Thanks in advance.
> > >
> > >
> > >
> > >
> > > On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
> > > michael.della.bitta@appinions.com (mailto:
> michael.della.bitta@appinions.com)> wrote:
> > >
> > > > > I got the following error in browser console:
> > > >
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > > >
> > > > We can't see the contents of that link.. Could you post it on
> > > > pastebin.com (http://pastebin.com) or something?
> > > >
> > > > Michael Della Bitta
> > > >
> > > > ------------------------------------------------
> > > > Appinions
> > > > 18 East 41st Street, 2nd Floor
> > > > New York, NY 10017-6271
> > > >
> > > > www.appinions.com (http://www.appinions.com)
> > > >
> > > > Where Influence Isn’t a Game
> > > >
> > > >
> > > > On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
> > > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)> wrote:
> > > > > I
> > > > > got the following error in browser console:
> > > >
> > > >
> > > >
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > >
> > >
> > >
> > >
> > > --
> > > Atenciosamente,
> > > *Carlos Alexandro Becker*
> > > https://profiles.google.com/caarlos0
> >
> >
> >
> >
> > --
> > Atenciosamente,
> > *Carlos Alexandro Becker*
> > https://profiles.google.com/caarlos0
>
>
>
>


-- 
Atenciosamente,
*Carlos Alexandro Becker*
http://caarlos0.github.com/about

Re: migrating from solr3 to solr4

Posted by Stefan Matheis <ma...@gmail.com>.
Hey Carlos

just had a quick look at our changes and figured out the revision which introduced this change, which might help you while having another look?

http://svn.apache.org/viewvc?view=revision&revision=1297578

The LoadAdminUiServlet is responsible for replacing those placeholders which are causing your problems

HTH at least a bit
Stefan



On Tuesday, November 6, 2012 at 5:02 PM, Carlos Alexandro Becker wrote:

> just found this in the admin.html head:
>  
> https://gist.github.com/4025669
>  
>  
> On Tue, Nov 6, 2012 at 1:57 PM, Carlos Alexandro Becker
> <caarlos0@gmail.com (mailto:caarlos0@gmail.com)>wrote:
>  
> > Hi Michael, thank for your answer.
> >  
> > I already posted it in stackoverflow (
> > http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4 ),
> > but, this looks like a encoding issue, actually, is exactly the error.
> >  
> > I'm not sure, but I look in all xml files in my JBoss and also in app,
> > neither mention this variables (contextPath and adminPath) related to solr.
> >  
> > So, or there is something that I should configure and don't know how, or
> > some trouble with the encoding that are escaping the "$" and "{" around the
> > var (not sure, I didn't find the file where the app variable is populated).
> >  
> > Thanks in advance.
> >  
> >  
> >  
> >  
> > On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
> > michael.della.bitta@appinions.com (mailto:michael.della.bitta@appinions.com)> wrote:
> >  
> > > > I got the following error in browser console:
> > > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> > >  
> > > We can't see the contents of that link.. Could you post it on
> > > pastebin.com (http://pastebin.com) or something?
> > >  
> > > Michael Della Bitta
> > >  
> > > ------------------------------------------------
> > > Appinions
> > > 18 East 41st Street, 2nd Floor
> > > New York, NY 10017-6271
> > >  
> > > www.appinions.com (http://www.appinions.com)
> > >  
> > > Where Influence Isn’t a Game
> > >  
> > >  
> > > On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
> > > <caarlos0@gmail.com (mailto:caarlos0@gmail.com)> wrote:
> > > > I
> > > > got the following error in browser console:
> > >  
> > >  
> > > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
> >  
> >  
> >  
> >  
> > --
> > Atenciosamente,
> > *Carlos Alexandro Becker*
> > https://profiles.google.com/caarlos0
>  
>  
>  
>  
> --  
> Atenciosamente,
> *Carlos Alexandro Becker*
> https://profiles.google.com/caarlos0




Re: migrating from solr3 to solr4

Posted by Carlos Alexandro Becker <ca...@gmail.com>.
just found this in the admin.html head:

https://gist.github.com/4025669


On Tue, Nov 6, 2012 at 1:57 PM, Carlos Alexandro Becker
<ca...@gmail.com>wrote:

> Hi Michael, thank for your answer.
>
> I already posted it in stackoverflow (
> http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4 ),
> but, this looks like a encoding issue, actually, is exactly the error.
>
> I'm not sure, but I look in all xml files in my JBoss and also in app,
> neither mention this variables (contextPath and adminPath) related to solr.
>
> So, or there is something that I should configure and don't know how, or
> some trouble with the encoding that are escaping the "$" and "{" around the
> var (not sure, I didn't find the file where the app variable is populated).
>
> Thanks in advance.
>
>
>
>
> On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
> michael.della.bitta@appinions.com> wrote:
>
>> > I got the following error in browser console:
>> >
>> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
>>
>> We can't see the contents of that link.. Could you post it on
>> pastebin.com or something?
>>
>> Michael Della Bitta
>>
>> ------------------------------------------------
>> Appinions
>> 18 East 41st Street, 2nd Floor
>> New York, NY 10017-6271
>>
>> www.appinions.com
>>
>> Where Influence Isn’t a Game
>>
>>
>> On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
>> <ca...@gmail.com> wrote:
>> > I
>> > got the following error in browser console:
>> >
>> >
>> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
>>
>
>
>
> --
> Atenciosamente,
> *Carlos Alexandro Becker*
> https://profiles.google.com/caarlos0
>
>


-- 
Atenciosamente,
*Carlos Alexandro Becker*
https://profiles.google.com/caarlos0

Re: migrating from solr3 to solr4

Posted by Carlos Alexandro Becker <ca...@gmail.com>.
Hi Michael, thank for your answer.

I already posted it in stackoverflow (
http://stackoverflow.com/questions/13236383/migrating-from-solr3-to-solr4 ),
but, this looks like a encoding issue, actually, is exactly the error.

I'm not sure, but I look in all xml files in my JBoss and also in app,
neither mention this variables (contextPath and adminPath) related to solr.

So, or there is something that I should configure and don't know how, or
some trouble with the encoding that are escaping the "$" and "{" around the
var (not sure, I didn't find the file where the app variable is populated).

Thanks in advance.




On Tue, Nov 6, 2012 at 1:49 PM, Michael Della Bitta <
michael.della.bitta@appinions.com> wrote:

> > I got the following error in browser console:
> > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
>
> We can't see the contents of that link.. Could you post it on
> pastebin.com or something?
>
> Michael Della Bitta
>
> ------------------------------------------------
> Appinions
> 18 East 41st Street, 2nd Floor
> New York, NY 10017-6271
>
> www.appinions.com
>
> Where Influence Isn’t a Game
>
>
> On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
> <ca...@gmail.com> wrote:
> > I
> > got the following error in browser console:
> >
> > http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json
>



-- 
Atenciosamente,
*Carlos Alexandro Becker*
https://profiles.google.com/caarlos0

Re: migrating from solr3 to solr4

Posted by Michael Della Bitta <mi...@appinions.com>.
> I got the following error in browser console:
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json

We can't see the contents of that link.. Could you post it on
pastebin.com or something?

Michael Della Bitta

------------------------------------------------
Appinions
18 East 41st Street, 2nd Floor
New York, NY 10017-6271

www.appinions.com

Where Influence Isn’t a Game


On Tue, Nov 6, 2012 at 8:35 AM, Carlos Alexandro Becker
<ca...@gmail.com> wrote:
> I
> got the following error in browser console:
>
> http://localhost:8080/indexer/$%7BcontextPath%7D$%7BadminPath%7D?wt=json