hai , i have typed all the codes as shown above but i am getting runtime error as
org.apache.jasper.JasperException: PWC6033: Error in Javac compilation for JSP
PWC6199: Generated servlet error:
string:///webclient_jsp.java:6: package com.javajazzup.examples.ejb3.stateful does not exist
PWC6197: An error occurred at line: 5 in the jsp file: /webclient.jsp
PWC6199: Generated servlet error:
string:///webclient_jsp.java:12: cannot find symbol
symbol : class AccountRemote
location: class org.apache.jsp.webclient_jsp
PWC6197: An error occurred at line: 5 in the jsp file: /webclient.jsp
PWC6199: Generated servlet error:
string:///webclient_jsp.java:18: cannot find symbol
symbol : class AccountRemote
location: class org.apache.jsp.webclient_jsp
AccountRemoteUgochukwu Ejikeme December 26, 2012 at 3:15 AM
Hello, sorry am not so clear on something. The name of the Interface is Account... Why does the AccountBean implement "AccountRemote" and also uses @Remote(AccountRemote.class)?
in Account interface there is missing
import javax.ejb.Remove;
and in AccountBean you have
@Remote(AccountRemote.class)
when there is only interface Account
such mistakes help us to understand
more deeply , so you can not change...
best regards
Mamuka Arabuli
Error in webclient.jspmadhu March 14, 2012 at 10:32 PM
hai , i have typed all the codes as shown above but i am getting runtime error as org.apache.jasper.JasperException: PWC6033: Error in Javac compilation for JSP PWC6199: Generated servlet error: string:///webclient_jsp.java:6: package com.javajazzup.examples.ejb3.stateful does not exist PWC6197: An error occurred at line: 5 in the jsp file: /webclient.jsp PWC6199: Generated servlet error: string:///webclient_jsp.java:12: cannot find symbol symbol : class AccountRemote location: class org.apache.jsp.webclient_jsp PWC6197: An error occurred at line: 5 in the jsp file: /webclient.jsp PWC6199: Generated servlet error: string:///webclient_jsp.java:18: cannot find symbol symbol : class AccountRemote location: class org.apache.jsp.webclient_jsp
AccountRemoteUgochukwu Ejikeme December 26, 2012 at 3:15 AM
Hello, sorry am not so clear on something. The name of the Interface is Account... Why does the AccountBean implement "AccountRemote" and also uses @Remote(AccountRemote.class)?
mistake in codemamuka November 24, 2012 at 8:45 PM
in Account interface there is missing import javax.ejb.Remove; and in AccountBean you have @Remote(AccountRemote.class) when there is only interface Account such mistakes help us to understand more deeply , so you can not change... best regards Mamuka Arabuli
Post your Comment