Re: ngramfilter minGramSize problem

2014-04-07 Thread Andreas Owen
n the query because no all fields that are search have the stopwordfilter? On Mon, 07 Apr 2014 00:37:15 +0200, Furkan KAMACI wrote: Correction: My patch is at SOLR-5152 7 Nis 2014 01:05 tarihinde "Andreas Owen" yazdı: i thought i cound use to index and search words that are

Re: ngramfilter minGramSize problem

2014-04-06 Thread Andreas Owen
i thought i cound use max="2"/> to index and search words that are only 1 or 2 chars long. it seems to work but i have to test it some more On Sun, 06 Apr 2014 22:24:20 +0200, Andreas Owen wrote: i have the a fieldtype that uses ngramfilter whle indexing. is there a set

ngramfilter minGramSize problem

2014-04-06 Thread Andreas Owen
i have the a fieldtype that uses ngramfilter whle indexing. is there a setting that can force the ngramfilter to index smaller words then the minGramSize? Mine is set to 3 and the search wont find word that are only 1 or 2 chars long. i would like to not set minGramSize=1 because the result

Re: dih data-config.xml onImportEnd event

2014-03-27 Thread Andreas Owen
sorry, the previous conversation was started with a false email-address. On Thu, 27 Mar 2014 14:06:57 +0100, Stefan Matheis wrote: I would suggest you read the replies to your last mail (containing the very same question) first? -Stefan On Thursday, March 27, 2014 at 1:56 PM, Andreas

dih data-config.xml onImportEnd event

2014-03-27 Thread Andreas Owen
i would like to call a url after the import is finished whith the event . how can i do this?

facet doesnt display all possibilities after selecting one

2014-03-27 Thread Andreas Owen
when i select a facet in "thema_f" all the others in the group disapear but the other facets keep the original findings. it seems like it should work. maybe the underscore is the wrong char for the seperator? example documents in index 1_Produkte dms:381

dih data-config.xml onImportEnd event

2014-03-27 Thread Andreas Owen
i would like to call a url after the import is finished whith the event . how can i do this?

wrong results with wdf & ngtf

2014-03-20 Thread Andreas Owen
Is there a way to tell ngramfilterfactory while indexing that number shall never be tokenized? then the query should be able to find numbers. Or do i have to change the ngram-min for numbers (not alpha) to 1, if that is possible? So to speak put the hole number as token and not all possible tok

wrong query results with wdf and ngtf

2014-03-20 Thread Andreas Owen
Is there a way to tell ngramfilterfactory while indexing that number shall never be tokenized? then the query should be able to find numbers. Or do i have to change the ngram-min for numbers (not alpha) to 1, if that is possible? So to speak put the hole number as token and not all possible toke

underscore in query error

2014-03-19 Thread Andreas Owen
If I use the underscore in the query I don't get any results. If I remove the underscore it finds the docs with underscore. Can I tell solr to search through the ngtf instead of the wdf or is there any better solution? Query: yh_cug I attached a doc with the analyzer output

searche for single char number when ngram min is 3

2014-03-19 Thread Andreas Owen
tell the query to search numbers differently woth WT, LCF or whatever? I attached a doc with screenshots from solr analyzer -Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Donnerstag, 13. März 2014 13:44 To: solr-user@lucene.apache.org Subject: RE: Re[2]: NOT SOLVED

RE: Re[2]: NOT SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-13 Thread Andreas Owen
oq frage 1" without tokenizing it? Fieldtype: -Original Message- From: Andreas Owen [mailto:a...@conx.ch]

RE: use local param in solrconfig fq for access-control

2014-03-13 Thread Andreas Owen
I have given up this idee and made a wrapper which adds a fq with the userroles to each request -Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Dienstag, 11. März 2014 23:32 To: solr-user@lucene.apache.org Subject: use local param in solrconfig fq for access-control i

RE: Re[2]: NOT SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-12 Thread Andreas Owen
ions:["" TO *] +roles:($r)) (+organisations:($org) -roles:["" TO *]) -Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Mittwoch, 12. März 2014 14:44 To: solr-user@lucene.apache.org Subject: Re[2]: NOT SOLVED searches for single char tokens instead of from

Re[2]: NOT SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-12 Thread Andreas Owen
dmin UI Analysis page can help. > > Generally, using pure defaults for WDF is not what you want, especially for > query time. Usually there needs to be a slight asymmetry between index and > query for WDF - index generates more terms than query. > > -- Jack Krupansky > >

RE: NOT SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-12 Thread Andreas Owen
utput - it will show the precise generated query. I think what you are seeing is that the ngram filter is generating tokens like "h_cugtest" and then the WDF is removing the underscore and then "h" gets generated as a separate token. -- Jack Krupansky -Original Messag

use local param in solrconfig fq for access-control

2014-03-11 Thread Andreas Owen
i would like to use $r and $org for access control. it has to allow the fq's from my facet to work aswell. i'm not sure if i'm doing it wright or if i should add it to a qf or the q itself. the debugquery returns a parsed fq string and in them $r and $org are printed instead of their values. how

use local params in query

2014-03-11 Thread Andreas Owen
Shouldn't the numbers be in the output below (parsed_filter_queries) and not $r and $org? This works great but i would like to use lacal params "r" and "org" instead of hard-coded (*:* -organisations:[* TO *] -roles:[* TO *]) (+organisations:(150 42) +roles:(174 72)) I wo

query with local params

2014-03-11 Thread Andreas Owen
This works great but i would like to use lacal params "r" and "org" instead of hard-coded (*:* -organisations:[* TO *] -roles:[* TO *]) (+organisations:(150 42) +roles:(174 72)) I would like (*:* -organisations:[* TO *] -roles:[* TO *]) (+organisations:($org) +roles:($r)) Sho

RE: NOT SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-11 Thread Andreas Owen
I got it roght the first time and here is my requesthandler. The field "plain_text" is searched correctly and has the sam fieldtype as "title" -> "text_de" standard

Re: SOLVED searches for single char tokens instead of from 3 uppwards

2014-03-11 Thread Andreas Owen
sorry i looked at the wrong fieldtype -Original-Nachricht- > Von: "Andreas Owen" > An: solr-user@lucene.apache.org > Datum: 11/03/2014 08:45 > Betreff: searches for single char tokens instead of from 3 uppwards > > i have a f

searches for single char tokens instead of from 3 uppwards

2014-03-11 Thread Andreas Owen
i have a field with the following type:                                                     shouldn't this make tokens from 3 to 15 in length and not from 1? heres is a query report of 2 results: 0 125 truetitl

maxClauseCount is set to 1024

2014-03-10 Thread Andreas Owen
does this maxClauseCount go over each field individually or all put together? is it the date fields? when i execute a query i get this error: 500 93true Ein PDFchen als Dokument roles:* 1394436617394 xml . 0.10604319 390 2

set fq operator independently

2014-03-04 Thread Andreas Owen
i want to use the following in fq and i need to set the operator to OR. My q.op is AND but I need OR in fq. I have read about ofq but that is for putting OR between multiple fq. Can I set the operator for fq?      (-organisations:["" TO *] -roles:["" TO *]) (+organisations:(150 42) +roles:(174

Re[2]: query parameters

2014-03-03 Thread Andreas Owen
and-not/ > > Best, > Erick > > > On Tue, Feb 18, 2014 at 11:54 AM, Andreas Owen wrote: > > > I tried it in solr admin query and it showed me all the docs without a > > value > > in ogranisations and roles. It didn't matter if i used a base term,

RE: query parameters

2014-02-18 Thread Andreas Owen
you have for the "bq" parameter in your config file; i.e, something like (*:* -organisations:["" TO *] -roles:["" TO *]) On Tue, Feb 18, 2014 at 12:16 PM, Andreas Owen wrote: > It seams that fq doesn't except OR because: (organisations:(150 OR 41) > AND &

RE: query parameters

2014-02-18 Thread Andreas Owen
roles. -----Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Montag, 17. Februar 2014 05:08 To: solr-user@lucene.apache.org Subject: query parameters in solrconfig of my solr 4.3 i have a userdefined requestHandler. i would like to use fq to force the following conditions: 1: or

query parameters

2014-02-16 Thread Andreas Owen
in solrconfig of my solr 4.3 i have a userdefined requestHandler. i would like to use fq to force the following conditions:    1: organisations is empty and roles is empty    2: organisations contains one of the commadelimited list in variable $org    3: roles contains one of the commadelimited l

admin gui right side not loading

2014-01-15 Thread Andreas Owen
I'm using solr 4.3.1 and have installed it on a win 2008 server. Solr is working, for example import & search. But the admin guis right side isn't loading and I get a javascript error for several d3-objects. The last error is: Load timeout for modules: lib/order!lib/jquery.autogrow lib/order!li

RE: json update moves doc to end

2013-12-04 Thread Andreas Owen
is not helpful since the question now is where -Infinity comes from, this looks suspicious: -Infinity = (MATCH) FunctionQuery(log(int(clicks))), product of: -Infinity = log(int(clicks)=0) not much help I know, but Erick On Wed, Dec 4, 2013 at 7:24 AM, Andreas Owen wrote: > Hi Erick

RE: json update moves doc to end

2013-12-04 Thread Andreas Owen
ocs are scored. Also, it'll show you exactly how your query is parsed. Paste that if it's confused, it'll help figure out what's going wrong. On Tue, Dec 3, 2013 at 1:37 PM, Andreas Owen wrote: > So isn't it sorted automaticly by relevance (boost value)?

RE: json update moves doc to end

2013-12-03 Thread Andreas Owen
esults sorted by the timestamp field? And then make sure not to change the timestamp when you do an update that you don't want to change the order? Apologies if I've misunderstood the situation. On 12/3/13 1:00 PM, Andreas Owen wrote: > When I search for "agenda" I get a lot of

json update moves doc to end

2013-12-03 Thread Andreas Owen
When I search for “agenda” I get a lot of hits. Now if I update the 2. Result by json-update the doc is moved to the end of the index when I search for it again. The field I change is “editorschoice” and it never contains the search term “agenda” so I don’t see why it changes the order. Why does it

search with wildcard

2013-11-21 Thread Andreas Owen
I am querying "test" in solr 4.3.1 over the field below and it's not finding all occurences. It seems that if it is a substring of a word like "Supertestplan" it isn't found unless I use a wildcards "*test*". This is write because of my tokenizer but does someone know a way around this? I don't wan

RE: search with wildcard

2013-11-21 Thread Andreas Owen
I suppose i have to create another field with diffenet tokenizers and set the boost very low so it doesn't really mess with my ranking because there the word is now in 2 fields. What kind of tokenizer can do the job? From: Andreas Owen [mailto:a...@conx.ch] Sent: Donnerstag, 21. November

RE: date range tree

2013-11-13 Thread Andreas Owen
I solved it by adding a loop for years and one for quartals in which i count the month-facets -Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Montag, 11. November 2013 17:52 To: solr-user@lucene.apache.org Subject: RE: date range tree Has someone at least got a idee

RE: date range tree

2013-11-11 Thread Andreas Owen
Has someone at least got a idee how i could do a year/month-date-tree? In Solr-Wiki it is mentioned that facet.date.gap=+1DAY,+2DAY,+3DAY,+10DAY should create 4 buckets but it doesn't work -Original Message- From: Andreas Owen [mailto:a...@conx.ch] Sent: Donnerstag, 7. November

count links pointing to id

2013-11-09 Thread Andreas Owen
I have a multivalue field with links pointing to ids of solrdocuments. I would like calculate how many links are pointing to each document und put that number into the field links2me. How can I do this, I would prefer to do it with a query and the updater so solr can do it internaly if possible?

date range tree

2013-11-07 Thread Andreas Owen
I would like to make a facet on a date field with the following tree: 2013 4.Quartal December November Oktober 3.Quartal September August Juli 2.Quartal June Mai April 1. Quartal March February January 2012 . Same as above So far I have this in solrconfig.xml:

Re: XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-10-01 Thread Andreas Owen
gt; doesn't always work in DIH. You might have to be more specific. > > Cheers, > Tricia > > > > > > On Sun, Sep 29, 2013 at 9:47 AM, Andreas Owen wrote: > >> how dum can you get. obviously quite dum... i would have to analyze the >> html-pages

Re: XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-09-29 Thread Andreas Owen
annot be cast to java.io.Reader On 28. Sep 2013, at 1:39 AM, Andreas Owen wrote: > ok i see what your getting at but why doesn't the following work: > > > > > i removed the tiki-processor. what am i missing, i haven't found anything in > t

Re: XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-09-28 Thread Andreas Owen
be expected. This might explain the > exception. > > *) It may help to be aware of > https://issues.apache.org/jira/browse/SOLR-4530 . There is a new > htmlMapper="identity" flag on Tika entries to ensure more of HTML structure > passing through. By default, Tika stri

Re: XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-09-27 Thread Andreas Owen
PropertiesInvariantRule$1.evaluate(SystemPropertiesInvariantRule.java:55) > at > com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverridesOnMethodsRule$1.evaluate(NoShadowingOrOverridesOnMethodsRule.java:39) > at > com.carrotsearch.randomizedtesting.rules.NoShadowingOrOverrides

Re: XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-09-27 Thread Andreas Owen
> exactly? What happens when you leave out FieldReaderDataSource? > > Cheers, > Tricia > > > On Thu, Sep 26, 2013 at 4:17 AM, Andreas Owen wrote: > >> i'm using solr 4.3.1 and the dataimporter. i am trying to use >> XPathEntityProcessor within the TikaEntityProce

XPathEntityProcessor nested in TikaEntityProcessor query null exception

2013-09-26 Thread Andreas Owen
i'm using solr 4.3.1 and the dataimporter. i am trying to use XPathEntityProcessor within the TikaEntityProcessor for indexing html-pages but i'm getting this error for each document. i have also tried dataField="tika.text" and dataField="text" to no avail. the nested XPathEntityProcessor "deta

dih HTMLStripTransformer

2013-09-24 Thread Andreas Owen
why does stripHTML="false" have no effect in dih? the html is strippedin text and text_nohtml when i do display the index with select?q=* i'm trying to get a field without html and one with it so i can also index the links on the page. data-config.xml

Re: dih delete doc per $deleteDocById

2013-09-22 Thread Andreas Owen
sorry, it works like this, i had a typo in my conf :-( On 17. Sep 2013, at 2:44 PM, Andreas Owen wrote: > i would like to know how to get it to work and delete documents per xml and > dih. > > On 17. Sep 2013, at 1:47 PM, Shalin Shekhar Mangar wrote: > >> What is your qu

Re: dih delete doc per $deleteDocById

2013-09-17 Thread Andreas Owen
i would like to know how to get it to work and delete documents per xml and dih. On 17. Sep 2013, at 1:47 PM, Shalin Shekhar Mangar wrote: > What is your question? > > On Tue, Sep 17, 2013 at 12:17 AM, andreas owen wrote: >> i am using dih and want to delete indexed documents b

dih delete doc per $deleteDocById

2013-09-16 Thread andreas owen
i am using dih and want to delete indexed documents by xml-file with ids. i have seen $deleteDocById used in data-config.xml: xml-file: 2345

Re: charset encoding

2013-09-12 Thread Andreas Owen
it was the http-header, as soon as i force a iso-8859-1 header it worked On 12. Sep 2013, at 9:44 AM, Andreas Owen wrote: > could it have something to do with the meta encoding tag is iso-8859-1 but > the http-header tag is utf8 and firefox inteprets it as utf8? > > On 12. Sep 2013

Re: charset encoding

2013-09-12 Thread Andreas Owen
could it have something to do with the meta encoding tag is iso-8859-1 but the http-header tag is utf8 and firefox inteprets it as utf8? On 12. Sep 2013, at 8:36 AM, Andreas Owen wrote: > no jetty, and yes for tomcat i've seen a couple of answers > > On 12. Sep 2013, at

Re: charset encoding

2013-09-11 Thread Andreas Owen
/ > On Sep 11, 2013 8:56 AM, "Andreas Owen" wrote: > >> i'm using solr 4.3.1 with tika to index html-pages. the html files are >> iso-8859-1 (ansi) encoded and the meta tag "content-encoding" as well. the >> server-http-header says it's utf8 and fire

charset encoding

2013-09-11 Thread Andreas Owen
i'm using solr 4.3.1 with tika to index html-pages. the html files are iso-8859-1 (ansi) encoded and the meta tag "content-encoding" as well. the server-http-header says it's utf8 and firefox-webdeveloper agrees. when i index a page with special chars like ä,ö,ü solr outputs it completly forei

Re: charfilter doesn't do anything

2013-09-11 Thread Andreas Owen
t="$1" /> > > > > > > > The first type accepts everything within , including nested HTML > formatting, while the latter strips nested HTML formatting as well. > > The tokenizer will in fact strip out white space, but that happens after all >

Re: charfilter doesn't do anything

2013-09-10 Thread Andreas Owen
Jack Krupansky wrote: > Use XML then. Although you will need to escape the XML special characters as > I did in the pattern. > > The point is simply: Quickly and simply try to find the simple test scenario > that illustrates the problem. > > -- Jack Krupansky > > ---

Re: charfilter doesn't do anything

2013-09-09 Thread Andreas Owen
example? If not, please do so. > > -- Jack Krupansky > > -Original Message- From: Andreas Owen > Sent: Monday, September 09, 2013 4:42 PM > To: solr-user@lucene.apache.org > Subject: Re: charfilter doesn't do anything > > i index html pages with a lot

Re: charfilter doesn't do anything

2013-09-09 Thread Andreas Owen
data. You can just > use the standard Solr simple post tool. > > -- Jack Krupansky > > -Original Message- From: Andreas Owen > Sent: Monday, September 09, 2013 6:40 PM > To: solr-user@lucene.apache.org > Subject: Re: charfilter doesn't do anything > >

Re: charfilter doesn't do anything

2013-09-09 Thread Andreas Owen
curl "http://localhost:8983/solr/select/?q=body:def&indent=true&wt=json"; > shows nothing (outside of body) > > curl "http://localhost:8983/solr/select/?q=body:body&indent=true&wt=json"; > Shows nothing, HTML tag stripped > > In your original

Re: charfilter doesn't do anything

2013-09-08 Thread Andreas Owen
t; > > On Fri, Sep 6, 2013 at 11:33 AM, Andreas Owen wrote: > >> ok i have html pages with .content i >> want.. i want to extract (index, store) only >> that between the body-comments. i thought regexTransformer would be the >> best beca

Re: charfilter doesn't do anything

2013-09-06 Thread Andreas Owen
that the htmlparser from tika cuts my body-comments out and tries to make well formed html, which i would like to switch off. On 6. Sep 2013, at 5:04 PM, Shawn Heisey wrote: > On 9/6/2013 7:09 AM, Andreas Owen wrote: >> i've managed to get it working if i use the regexTransformer a

Re: charfilter doesn't do anything

2013-09-06 Thread Andreas Owen
opulated. > > -- Jack Krupansky > > -Original Message- From: Andreas Owen > Sent: Friday, September 06, 2013 4:01 AM > To: solr-user@lucene.apache.org > Subject: Re: charfilter doesn't do anything > > the input string is a normal html page with the word Zahlungs

Re: charfilter doesn't do anything

2013-09-06 Thread Andreas Owen
--- From: Shawn Heisey > Sent: Thursday, September 05, 2013 2:41 PM > To: solr-user@lucene.apache.org > Subject: Re: charfilter doesn't do anything > > On 9/5/2013 10:03 AM, Andreas Owen wrote: >> i would like to filter / replace a word during indexing but it doesn't do

charfilter doesn't do anything

2013-09-05 Thread Andreas Owen
i would like to filter / replace a word during indexing but it doesn't do anything and i dont get a error. in schema.xml i have the following: my 2. question is where can i say that the expression is multilined like in javascript i can

Re: dataimporter tika doesn't extract certain div

2013-09-04 Thread Andreas Owen
do not know if > TikaEntityProcessor supports such a thing. > > On Wed, Sep 4, 2013 at 12:38 PM, Andreas Owen wrote: >> so could i just nest it in a XPathEntityProcessor to filter the html or is >> there something like xpath for tika? >> >> >

Re: dataimporter tika doesn't extract certain div

2013-09-04 Thread Andreas Owen
ityProcessor. > > On Thu, Aug 29, 2013 at 10:20 PM, Andreas Owen wrote: >> I want tika to only index the content in ... for the >> field "text". unfortunately it's indexing the hole page. Can't xpath do this? >> >> data-config.xml: &g

dataimporter tika doesn't extract certain div

2013-08-29 Thread Andreas Owen
I want tika to only index the content in ... for the field "text". unfortunately it's indexing the hole page. Can't xpath do this? data-config.xml: http://127.0.0.1/tkb/internet/docImportUrl.xml"; forEach="/docs/doc" dataSource="main">

Re: dataimporter tika fields empty

2013-08-23 Thread Andreas Owen
i changed following line (xpath): On 22. Aug 2013, at 10:06 PM, Alexandre Rafalovitch wrote: > Ah. That's because Tika processor does not support path extraction. You > need to nest one more level. > > Regards, > Alex > On 22 Aug 2013 13:34, "Andreas Owen&quo

Re: dataimporter tika fields empty

2013-08-23 Thread Andreas Owen
0.0.1/tkb/internet/docImportUrl.xml"; forEach="/docs/doc" dataSource="main"> On 22. Aug 2013, at 10:06 PM, Alexandre Rafalovitch wrote: > Ah. That's because Tika processor does not support path extraction. You >

Re: dataimporter tika fields empty

2013-08-22 Thread Andreas Owen
i can do it like this but then the content isn't copied to text. it's just in text_test On 22. Aug 2013, at 6:12 PM, Andreas Owen wrote: > i put it in the tika-entity as attribute, but it doesn't change anything. my > bigger concern is why text_test i

Re: dataimporter tika fields empty

2013-08-22 Thread Andreas Owen
lexandrerafalovitch > - Time is the quality of nature that keeps events from happening all at > once. Lately, it doesn't seem to be working. (Anonymous - via GTD book) > > > On Thu, Aug 22, 2013 at 11:02 AM, Andreas Owen wrote: > >> i'm trying to index a htm

dataimporter tika fields empty

2013-08-22 Thread Andreas Owen
i'm trying to index a html page and only user the div with the id="content". unfortunately nothing is working within the tika-entity, only the standard text (content) is populated. do i have to use copyField for test_text to get the data? or is there a problem with the entity-h

Re: dataimporter, custom fields and parsing error

2013-07-23 Thread Andreas Owen
i have tried post.jar and it works when i set the literal.id in solrconfig.xml. i can't pass the id with post.jar (-Dparams=literal.id=abc) because i get a error: "could not find or load main class .id=abc". On 20. Jul 2013, at 7:05 PM, Andreas Owen wrote: > path was set t

Re: dataimporter, custom fields and parsing error

2013-07-20 Thread Andreas Owen
" and "text" fields set to "stored" in the schema.xml? > > > On Sat, Jul 20, 2013 at 3:37 PM, Andreas Owen wrote: > >> they are in my schema, path is typed correctly the others are default >> fields which already exist. all the other fiel

Re: dataimporter, custom fields and parsing error

2013-07-20 Thread Andreas Owen
Time is the quality of nature that keeps events from happening all at > once. Lately, it doesn't seem to be working. (Anonymous - via GTD book) > > > On Fri, Jul 19, 2013 at 12:09 PM, Andreas Owen wrote: > >> i'm using solr 4.3 which i just downloaded tod

dataimporter, custom fields and parsing error

2013-07-19 Thread Andreas Owen
i'm using solr 4.3 which i just downloaded today and am using only jars that came with it. i have enabled the dataimporter and it runs without error. but the field "path" (included in schema.xml) and "text" (file content) aren't indexed. what am i doing wrong? solr-path: C:\ColdFusion10\cfusion

Re: solr autodetectparser tikaconfig dataimporter error

2013-07-18 Thread Andreas Owen
amp, it's a static value? On 14. Jul 2013, at 10:30 PM, Jack Krupansky wrote: > "Caused by: java.lang.NoSuchMethodError:" > > That means you have some out of date jars or some newer jars mixed in with > the old ones. > > -- Jack Krupansky > > --

Re: solr autodetectparser tikaconfig dataimporter error

2013-07-14 Thread Andreas Owen
hi is there nowone with a idea what this error is or even give me a pointer where to look? If not is there a alternitave way to import documents from a xml-file with meta-data and the filename to parse? thanks for any help. On 12. Jul 2013, at 10:38 PM, Andreas Owen wrote: > i am using s

solr autodetectparser tikaconfig dataimporter error

2013-07-12 Thread Andreas Owen
i am using solr 3.5, tika-app-1.4 and tagcloud 1.2.1. when i try to = import a file via xml i get this error, it doesn't matter what file format i try = to index txt, cfm, pdf all the same error: SEVERE: Exception while processing: rec document : SolrInputDocument[{id=3Did(1.0)=3D{myTest.txt}, tit