Duke's Bank

Hi all! I am download javaeetutorial5 and there is an example - Dukes Bank! I make all under the instruction:

default server run sucsessfully

ant create-tables -> execute sucsessfully

adding users -> all right

ant->sucsessfully

ant deploy -> deploy: and cursor blinks

ant run-> client-jar: and blinks

Form like in figure 38-5 don't appear WHY?

http://localhost:8080/dukesbank/main.faces-> don't work

HTTP Status 404 -

- -

type Status report

message

description The requested resource () is not available.

WHY?

[623 byte] By [Skyller] at [2007-11-26 8:08:00]
# 1
Really nobody met such problem?It can is necessary to establish something in addition?I install j2ee5 and j2se 5
Skyller at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...
# 2

I have a question and need help:

I have error when I issue:

ant deploy

and receive:

deploy:

[exec] CLI171 Command deploy failed : Deploying application in domain failed; Error loading deployment descriptor

odule [dukesbank] -- This application client has no ejb refernce by the name customerController

Any idea?

Thanks in advance.

LrnJava at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...
# 3
I have the exact same problem (This application client has no ejb refernce by the name customerController), any suggestion please?I think the problem must be related to enterprise application client and JNDI...
RezaAlavi at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...
# 4
I'm having this problem too:HTTP Status 404 -- -type Status reportmessagedescription The requested resource () is not available.and I'm trying to solve it. If someone has the solution please reply.. Thanks in advance.
mimi_tan1985 at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...
# 5
It seems that the file application.xml file that comes with dukesbank example uses a "bank" context root for the web context, instead of "dukesbank".So the link would be:localhost:8080/bank/main.faces
vicgrad at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...
# 6
However, it is better to change the application.xml in dukesbank/src/conf directory<web><web-uri>dukesbank-war.war</web-uri><context-root>/dukesbank</context-root></web> http://localhost:8080/dukesbank/main.faces
vicgrad at 2007-7-6 20:48:20 > top of Java-index,Application & Integration Servers,Application Servers...