Hi,

my usecase:
I use a solr server for search. Importing data to the server works by calling an url (localhost:8983/solr/....).
I've added this url to a link. On click data-import starts. All works fine.

SolrLink.java
<code>
    @Override
    protected CharSequence getURL() {
        return "localhost:8983/solr/...";
    }
</code>

*But* the link leads me to the solr response page. I know it's intended by clicking a link to get directed to the called page, but i would like to call the url and immediatly after that call i would like to redirect to wicket page.

I could use solrj to call the data-import handler. But i'm a bit lazy and thus would like to use the url :-)

Can i do this?
Thanks
Mike

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to