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

I'm trying to use some xml name spaces here,

<html xmlns="http://www.w3.org/1999/xhtml"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:a4j="http://richfaces.org/a4j"
              xmlns:rich="http://richfaces.org/rich"
              xmlns:f="http://java.sun.com/jsf/core"
                >

but since Oracle've eaten Java, the http://java.sun.com/jsf/* links are broken now (thank you Oracle).

Anybody knows their new locations? Or which maven dependency solves that (com.sun.facelets.jsf-facelets, javax.faces.jsf-api, javax.faces.jsf-impl don't)?

share|improve this question

1 Answer

up vote 2 down vote accepted

It doesn't matter that they are broken. These are just identifiers and no links (though they look like links).

If your page doesn't work, it's rather a problem of missing libraries.

Replacing "Sun" with "Oracle" won't work either ;-)

share|improve this answer
oh... I wonder, which maven dependency would solve that, because com.sun.facelets.jsf-facelets, javax.faces.jsf-api, javax.faces.jsf-impl don't solve that... – Andrey Apr 12 '11 at 10:31
@Andrey: I don't do Maven, so not sure what's the right way, but you can find some Maven dependency examples here javaserverfaces.java.net/download.html – BalusC Apr 12 '11 at 12:16
@BalusC: Ok, thanks! I just killed 10 hours trying to make jsf+SpringMVC run on Tomcat6. With no result. I guess I shuold try JBoss with webflow... – Andrey Apr 13 '11 at 3:49

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.