Solve the compilation error

  1. Error in BTTHTMLSampleEJB project: The compilation error will be in SignInBean.java:
    public void ejbRemove()  {
      super.ejbRemove();
     } 
    public void ejbCreate() throws BTTSAEException {
      super.ebjCreate();
     }
    • For the error in ejbRemove(), you can remove the statement super.ejbRemove(), or you can remove this method directly
    • For the error in ejbCreate(), you can remove this method directly.
  2. Error in BTTHTMLSampleWeb project: All the compilation errors in this project are related to the type mismatching in throw new DSETypeException(DSETypeException.critical, msg, msg, null). You can solve the errors by changing the statement to throw new DSETypeException(DSETypeException.critical, msg, msg, (String)null). Besides, there will also be compilation errors in SignInBean.java:
    public void ejbRemove()  {
      super.ejbRemove();
     } 
    public void ejbCreate() throws BTTSAEException {
      super.ebjCreate();
     }