Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread Shawn Heisey
On 8/7/2020 9:30 AM, yaswanth kumar wrote: solr/PROXIMITY_DATA_V2/select?q=pkey:223_*=true=country_en=country_en What ever I am trying is not working other than sending wt=xml as a parameter while hitting the url. I tried your solrconfig.xml addition and a URL similar to yours out on

Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread Alexandre Rafalovitch
about the top posted reply. It's the only option on this email > > app. > > >> My computer isn't available so I'm on my phone. > > >> > > >> ⁣Get TypeApp for Android ​ > > >> > > >> On Aug 6, 2020, 21:52, at 21:52, yaswan

Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread yaswanth kumar
t; query, including those that come from the solrconfig.xml. > >> > >> Sorry about the top posted reply. It's the only option on this email > app. > >> My computer isn't available so I'm on my phone. > >> > >> ⁣Get TypeApp for Android ​ > >>

Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread Erick Erickson
oid ​ >> >> On Aug 6, 2020, 21:52, at 21:52, yaswanth kumar >> wrote: >>> Can someone help me on this ASAP? I am using solr 8.2.0 and below is >>> the >>> snippet from solrconfig.xml for one of the configset, where I am trying >>> to >>> d

Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread yaswanth kumar
2.0 and below is > >the > >snippet from solrconfig.xml for one of the configset, where I am trying > >to > >default the results into xml format but its giving me as a json result. > > > > > > > > > > all > > 10 > >

Re: wt=xml not defaulting the results to xml format

2020-08-07 Thread Shawn Heisey
TypeApp for Android ​ On Aug 6, 2020, 21:52, at 21:52, yaswanth kumar wrote: >Can someone help me on this ASAP? I am using solr 8.2.0 and below is >the >snippet from solrconfig.xml for one of the configset, where I am trying >to >default the results into xml format but its giving me a

wt=xml not defaulting the results to xml format

2020-08-06 Thread yaswanth kumar
Can someone help me on this ASAP? I am using solr 8.2.0 and below is the snippet from solrconfig.xml for one of the configset, where I am trying to default the results into xml format but its giving me as a json result. all 10 pkey xml Can

Re: schema-api: modifying schema in xml format

2018-04-18 Thread Arturas Mazeika
e: > > > > Hi solr-users, > > > > is it possible to modify the managed schema using schema api and submit > the > > commands in XML format? I am able to add a data type using: > > > > curl -X POST -H 'Content-type:application/json' --d

Re: schema-api: modifying schema in xml format

2018-04-18 Thread Steve Rowe
; Hi solr-users, > > is it possible to modify the managed schema using schema api and submit the > commands in XML format? I am able to add a data type using: > > curl -X POST -H 'Content-type:application/json' --data-binary '{ > "add-field-type": { > &

schema-api: modifying schema in xml format

2018-04-18 Thread Arturas Mazeika
Hi solr-users, is it possible to modify the managed schema using schema api and submit the commands in XML format? I am able to add a data type using: curl -X POST -H 'Content-type:application/json' --data-binary '{ "add-field-type": { "name":"text_de_ph&qu

Re: Convert output response xml into input xml format using xslt

2015-11-10 Thread Jan Høydahl
It already ships with Solr. http://localhost:8983/solr/select?q=*:*=xslt=updateXml -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com > 9. nov. 2015 kl. 19.27 skrev davidphilip cherian > : > > Has anyone written a sample xslt (and would

Convert output response xml into input xml format using xslt

2015-11-09 Thread davidphilip cherian
Has anyone written a sample xslt (and would like to share) that converts output response xml of solr into its input format, to repost/reindex it back? Thanks

Re: update doc with a xml-format string

2013-12-22 Thread YouPeng Yang
Hi Daniel The CDATA block works. the raw data is actually what I want. Thanks a lot Regards 2013/12/20 yypvsxf19870706 yypvsxf19870...@gmail.com Your suggestions light me. The type is just string. I will try the left advices . Thanks a lot. 发自我的 iPhone 在

update doc with a xml-format string

2013-12-20 Thread YouPeng Yang
Hi solr users I have a string field to store a xml string. Now I want to update the field.I use the command. http://10.7.23.122:8080/solr/meta_core/update?stream.body=adddocfield name=nameshardTv_20131031/fieldfield update=set name=jobFirstRunExpress rootconditionGroupconditionEntry

Re: update doc with a xml-format string

2013-12-20 Thread Gora Mohanty
for the required XML format. Regards, Gora

Re: update doc with a xml-format string

2013-12-20 Thread YouPeng Yang
for the required XML format. Regards, Gora

Re: update doc with a xml-format string

2013-12-20 Thread Daniel Collins
problem to solve, if you search around for that. Basically, the value of the field tag needs to be a string that has no XML tags within it otherwise Solr will try to parse it (and fail since it isn't in Solr's XML format for updates). On 20 December 2013 08:48, YouPeng Yang yypvsxf19870

Re: update doc with a xml-format string

2013-12-20 Thread Daniel Collins
, if you search around for that. Basically, the value of the field tag needs to be a string that has no XML tags within it otherwise Solr will try to parse it (and fail since it isn't in Solr's XML format for updates). On 20 December 2013 08:48, YouPeng Yang yypvsxf19870...@gmail.com wrote: Hi

Re: update doc with a xml-format string

2013-12-20 Thread Gora Mohanty
On 20 December 2013 14:18, YouPeng Yang yypvsxf19870...@gmail.com wrote: Hi Thanks for your reply. The root/root is actually what I want to update the doc. That is I intend to update the xml string to one of the fields of my doc. [...] Ah, sorry, I missed that. As others have

Re: update doc with a xml-format string

2013-12-20 Thread YouPeng Yang
Hi thanks. I add the CDATA like : update?stream.body=adddocfield name=nameshardTv_20131031/fieldfield update=set name=jobFirstRunExpress ![CDATA[rootconditionGroupconditionEntry type=\string\ isChangeable=\true\ keyREP_DATE/keyop/opval20130930/val/conditionEntry opand/op conditionEntry

Re: update doc with a xml-format string

2013-12-20 Thread Daniel Collins
What's the schema definition for that field? Are you stripping HTML in your analyzer chain? Can you run it through the analyzer screen in the admin UI to confirm that the raw data goes through as you expect? Can you add a document via the admin UI and see that the data in the index is correct?

Re: update doc with a xml-format string

2013-12-20 Thread yypvsxf19870706
Your suggestions light me. The type is just string. I will try the left advices . Thanks a lot. 发自我的 iPhone 在 2013-12-20,19:09,Daniel Collins danwcoll...@gmail.com 写道: What's the schema definition for that field? Are you stripping HTML in your analyzer chain? Can you run it through the

Re: Solr 4.0 is stripping XML format from RSS content field

2013-10-01 Thread eShard
the fields to your schema. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-0-is-stripping-XML-format-from-RSS-content-field-tp4039809p4092961.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr 4.0 is stripping XML format from RSS content field

2013-02-11 Thread eShard
to stop Solr from doing this? I'm using tika but I don't see it in the update/extract handler. Can anyone point me in the right direction? Thanks, -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-0-is-stripping-XML-format-from-RSS-content-field-tp4039809.html Sent from

Solr web admin in xml format

2012-03-02 Thread Ricardo F
Hello,    How can I get the output of the web interface in xml format?   I need it for munin monitoring. Thanks

Re: Solr web admin in xml format

2012-03-02 Thread Stefan Matheis
Ricardo, What exactly do you need? On Friday, March 2, 2012 at 12:05 PM, Ricardo F wrote: Hello, How can I get the output of the web interface in xml format? I need it for munin monitoring. Thanks

RE: Solr web admin in xml format

2012-03-02 Thread Ricardo F
Get values from the statistics web, but in xml format for parse it with a perl script. Thanks Date: Fri, 2 Mar 2012 12:51:00 +0100 From: matheis.ste...@googlemail.com To: solr-user@lucene.apache.org Subject: Re: Solr web admin in xml format Ricardo

Re: Solr web admin in xml format

2012-03-02 Thread Erik Hatcher
Not at my computer at the moment but there are request handlers that can give you those details as as well as JMX. But the stats page IS XML :). View source. :) On Mar 2, 2012, at 7:50, Ricardo F ri...@hotmail.com wrote: Get values from the statistics web, but in xml format for parse

RE: Solr web admin in xml format

2012-03-02 Thread Ahmet Arslan
Get values from the statistics web, but in xml format for parse it with a perl script. Actually http://localhost:8080/solr/coreName/admin/stats.jsp is a XML already. It is transformed with stats.xsl to generate web page. You can use http://wiki.apache.org/solr/SolrJmx to retrieve stats too

RE: Solr web admin in xml format

2012-03-02 Thread Ricardo F
Interesting, with curl I get the content in xml format. Thanks! CC: solr-user@lucene.apache.org From: erik.hatc...@gmail.com Subject: Re: Solr web admin in xml format Date: Fri, 2 Mar 2012 07:59:16 -0500 To: solr-user@lucene.apache.org Not at my

Output Search Result in ADD-XML-Format

2010-11-10 Thread Chantal Ackermann
Dear all, my use case is: Creating an index using DIH where the sub-entity is querying another SOLR index for more fields. As there is a very convenient attribute useSolrAddSchema that would spare me to list all the fields I want to add from the other index, I'm looking for a way to get the

RE: Output Search Result in ADD-XML-Format

2010-11-10 Thread Dyer, James
, 2010 5:59 AM To: solr-user@lucene.apache.org Subject: Output Search Result in ADD-XML-Format Dear all, my use case is: Creating an index using DIH where the sub-entity is querying another SOLR index for more fields. As there is a very convenient attribute useSolrAddSchema that would spare me to list

RE: Output Search Result in ADD-XML-Format

2010-11-10 Thread Chantal Ackermann
@lucene.apache.org Subject: Output Search Result in ADD-XML-Format Dear all, my use case is: Creating an index using DIH where the sub-entity is querying another SOLR index for more fields. As there is a very convenient attribute useSolrAddSchema that would spare me to list all the fields I want

Re: XML Format

2010-08-06 Thread Geert-Jan Brits
outputted are stored to begin with. http://wiki.apache.org/solr/CommonQueryParameters#fl http://wiki.apache.org/solr/CommonQueryParameters#fl 2010/8/6 twojah e...@tokobagus.com can somebody help me please -- View this message in context: http://lucene.472066.n3.nabble.com/XML-Format

Re: XML Format

2010-08-05 Thread twojah
can somebody help me please -- View this message in context: http://lucene.472066.n3.nabble.com/XML-Format-tp1024608p1028456.html Sent from the Solr - User mailing list archive at Nabble.com.

XML Format

2010-08-04 Thread twojah
this message in context: http://lucene.472066.n3.nabble.com/XML-Format-tp1024608p1024608.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solrj client API and response in XML format (Solr 1.4)

2009-10-24 Thread SGE0
, on);    QueryResponse response = solr.query(params); How can I get the query result (response) in XML format out f? I know it sounds stupid but I can't seem to manage that. What do I need to do with the response object to get the response in XML format ? I already understood I cant get the result

Re: Solrj client API and response in XML format (Solr 1.4)

2009-10-24 Thread Noble Paul നോബിള്‍ नोब्ळ्
, dismax);    params.set(indent, on);    params.set(version, 2.2);    params.set(q, test);    params.set(start, 0);    params.set(rows, 10);    params.set(wt, xml);    params.set(hl, on);    QueryResponse response = solr.query(params); How can I get the query result (response) in XML format

Solrj client API and response in XML format (Solr 1.4)

2009-10-23 Thread SGE0
result (response) in XML format out f? I know it sounds stupid but I can't seem to manage that. What do I need to do with the response object to get the response in XML format ? I already understood I cant get the result in JSON so my idea was to go from XML to JSON. Thx for your answer already

How to Convert Lucene index files to XML Format

2009-09-10 Thread busbus
newFile.XML - Loads the XML and Updates the index. Now i want to Convert all the cfx files to XML so that i can Use them in SOLR. Advice Needed. Any other suggestions are most welcomed. - Balaji -- View this message in context: http://www.nabble.com/How-to-Convert-Lucene-index-files-to-XML-Format

Re: How to Convert Lucene index files to XML Format

2009-09-10 Thread Grant Ingersoll
On Sep 10, 2009, at 6:41 AM, busbus wrote: Hello All, I have a set of Files indexed by Lucene. Now i want to use the indexed files in SOLR. The file .cfx an .cfs are not readable by Solr, as it supports only .fds and .fdx. Solr defers to Lucene on reading the index. You just need to

Re: How to Convert Lucene index files to XML Format

2009-09-10 Thread busbus
this message in context: http://www.nabble.com/How-to-Convert-Lucene-index-files-to-XML-Format-tp25381017p25382367.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to Convert Lucene index files to XML Format

2009-09-10 Thread Lance Norskog
else need to be done. Should i change the config file or add new tag. Also how to check the compatibility of Lucen and solr Thanks in advance -- View this message in context: http://www.nabble.com/How-to-Convert-Lucene-index-files-to-XML-Format-tp25381017p25382367.html Sent from the Solr

Re: Does solrj return result in XML format? If not then how to make it do that.

2009-05-04 Thread Ryan McKinley
for debugging with packet sniffing? the XML format will be a bit slower then the binary format. ryan On May 4, 2009, at 8:22 AM, Erik Hatcher wrote: Just out of curiosity, what's the use case for getting the result back in XML from SolrJ? Erik On May 4, 2009, at 8:13 AM, ahmed baseet

Re: Does solrj return result in XML format? If not then how to make it do that.

2009-05-04 Thread Ryan McKinley
solr from solr admin interface we get back the results in xml format, so thought there must be something similar for solrj as well, which I'll make to go thru an xml parser at the other end and display all the results in the browser. Otherwise I've to iterate the solrdocumentlist and create a list

Re: Does solrj return result in XML format? If not then how to make it do that.

2009-05-04 Thread Noble Paul നോബിള്‍ नोब्ळ्
wrote: As I know when we query solr from solr admin interface we get back the results in xml format, so thought there must be something similar for solrj as well, which I'll make to go thru an xml parser at the other end and display all the results in the browser. Otherwise I've to iterate

Re: Different XML format for multi-valued fields?

2008-10-17 Thread Chris Hostetter
: the multi-value field has only one value for a document, the XML returned : looks like this: : arr name=someIds : long name=someIds5693/long : /arr I think you are mistaken. it will either look like this... long name=someIds5693/long ...or it will look like this... arr name=someIds

Re: Different XML format for multi-valued fields?

2008-10-16 Thread Noble Paul നോബിള്‍ नोब्ळ्
for this difference? Also, how does faceting work with multi-valued fields? It seems that I sometimes get facet results from multi-valued fields, and sometimes I don't. Thanks. -- View this message in context: http://www.nabble.com/Different-XML-format-for-multi-valued-fields

Solr and XML format

2007-08-10 Thread Jae Joo
I would like to find out how to build the index for general format of XML file which does not have field tags. Do I have to update all my xml file to Solr specific XML which have docfield…/doc format? Or any way to build index? Thanks, Jae Joo