Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to add a url based security constraint to solr deployed in websphere 6.1. If I specify the core name in the url of the constraint then the admin url for that core gives a 404. Has anyone had any success with this or any suggestions? Cheers

share|improve this question
try posting this on serverfault.com – Mauricio Scheffer Apr 29 '10 at 4:35

1 Answer

It has worked just fine for me for /select etc urls, but I am not 100% sure I ever tried the admin url though....

However, one thing I ran into that you might as well is that if you are dynamically creating cores, or renaming them, say for a backup, then your patterns breakdown. Why oh why doesn't the servlet spec support * characters in patterns :-).

Because I had to define all the potential names of cores up front, I ended up just wrapping the entire app in a layer of auth and not using url based security constraints.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.