hi all
i have downloaded the complete code of this tutorial(
http://wiki.netbeans.org/DevelopJavaEE6App#Summary)...but it dosn't work giving me the following error
org.apache.jasper.JasperException: file:C:/Documents and Settings/ay7aga/Desktop/CustomerApp/CustomerApp-war/build/web/CustomerList.jsp(35,20) PWC6296: The function showDetails must be used with a prefix when a default namespace is not specified
org.apache.jasper.JasperException: PWC6296: The function showDetails must be used with a prefix when a default namespace is not specified
C:/Documents and Settings/ay7aga/Desktop/CustomerApp/CustomerApp-war/build/web/CustomerList.jsp(35,20)
and this is the jsf segment has the error
<h:commandLink action="#{customer.showDetails(item)}"value="#{item.customerId}"/>
and this is the method showDetails
public String showDetails(Customer customer)
{
this.customer = customer;
return "DETAILS";
}
thanks in advance,
shady ragab