ok...but it is mapping problem... I did hibernate mapping like this..The error shows problem in java.lang.Long
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="com.ats.custFlight.pojo.Unwanted" table="unwanted" lazy="false">
<id column="ID" name="id" type="java.lang.Long"/>
<property column="name" name="name" type="java.lang.String"/>
</class>
</hibernate-mapping>
SteveMc wrote:
Looks like your request object doesn't have a parameter called 'Id' from the error. You might want to post this on a Java forum or something; this forum's primarily for .Net NHibernate development.
Steve