Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6550385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:12:34+00:00 2026-05-25T12:12:34+00:00

I have some XML to ingest into Solr, which sounds like a use case

  • 0

I have some XML to ingest into Solr, which sounds like a use case that is intended to be solved by the DataImportHandler. What I want to do is pull the column name from one XML attribute and the value from another attribute. Here is an example of what I mean:

<document>
  <data ref="reference.foo">
    <value>bar</value>
  </data>
</document>

From this xml snippet, I want to add a field with name reference.foo and value bar. The DataImportHandler includes a XPathEntityProcessor for processing XML documents. I’ve tried using it and it works perfectly if I give it a known column name (e.g, <field column="ref" xpath="/document/data/@ref">) but have not been able to find any documentation or examples to suggest either how to do what I want, or that it cannot be done. So:

  • Can I do this using XPathEntityProcessor? If so, how?
  • If not, can I do this some other way with DataImportHandler?
  • Or am I left with writing my own import handler?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:12:34+00:00Added an answer on May 25, 2026 at 12:12 pm

    I haven’t managed to find a way to do this without bringing in a transformer, but by using a simple ScriptTransformer I worked it out. It goes something like this:

    ...
    <script>
    function makePair(row) {
      var theKey = row.get("theKey");
      var theValue = row.get("theValue");
    
      row.put(theKey, theValue);
      row.remove("theKey");
      row.remove("theValue");
    
      return row;
    }
    </script>
    
    ...
    
    <entity name="..." 
      processor="XPathEntityProcessor" 
      transformer="script:makePair"
      forEach="/document"
      ...>
    
      <field column="theKey" xpath="/document/data/@ref" />
      <field column="theValue" xpath="/document/data/value" />
    </entity>
    ...
    

    Hope that helps someone!

    Note, if your dynamicField is multivalued, you have to iterate over theKey since row.get(“theKey”) will be a list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some XML which I would like to serialize into a class. <MasterData>
I have some XML code that looks like this <SEARCHRESULTS> <FUNCTION name=BarGraph> <PARAMETER name=numList></PARAMETER>
I have some XML which contains records and sub records, like this: <data> <record
I have some xml files that contain text, which are displayed on my website.
I have some xml that looks like this... <tbody> <tr> <td> <h5> <a class=foo
I have some XML that looks something like the one below <DriveLayout> <Drive totalSpace=16
I have some XML files and schemas that I would like to document. Everything
I have some XML that looks like <?xml version=1.0?> <root> <![CDATA[ > foo ]]>
I have some XML that looks like the following sample: <INLINE> <IMG LINKTEXT=خدمات ديني
I have some xml that looks like this: <rootElement attribute=' > '/> This is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.