Still not enough details. But let me try to understand: There is a third party provider. They are exposing Solr directly to the internet and you have a particular query that returns Solr results in JSON form.
You want to know if there are libraries/components that will know how to parse that Solr JSON result and present it on a screen. Is that about right? If so, there is one big issue to resolve before wasting time on anything else. Specifically, Solr should not be exposed directly to the web as it is not built for security. Unless this third party provider is specifically building some sort of hardened-hosted-Solr service, in which case I am very curious to know who they are. Usually, there is a middle-ware implementation that talks to Solr (like to a database) and then sends domain-specific results to the client. There is also a question of what features you are using. E.g. Facets? Folding? Auto-complete? Etc. Regards, Alex. Personal website: http://www.outerthoughts.com/ Current project: http://www.solr-start.com/ - Accelerating your Solr proficiency On Thu, Mar 27, 2014 at 3:39 PM, Bernhard Prange <m...@bernhard-prange.de> wrote: > right :) Thanks Shawn. > > It is the Frontend of a Webpage. (HTML5). > The search provider offers me an URL where I get a query result of solr (in > JSON). > That's what I have. > > What I need is a "How to" for the UI rendering of this file. (And the search > query functionality). > The SOLR Server is on a remote location. > > > > > > > > Am 27.03.2014 09:25, schrieb Shawn Heisey: > >> On 3/27/2014 2:11 AM, Bernhard Prange wrote: >>> >>> I am looking for a simple solution to construct a frontend search. The >>> search provider just gave me a JSON Url. >>> >>> Anybody has a simple guide or some snippets for that? >> >> There are no details here. What specifically do you need help with? >> Presumably you want help with Solr because you're on the solr-user >> mailing list, but the only technology you've mentioned is JSON. >> >> Let's say that you are wanting to add search to System X. The first >> question that comes to mind is: "What programming language is System X >> written in?" The answer will make a big difference in where the >> discussion goes. >> >> Thanks, >> Shawn >> >> >