Hello,

   I am using appfuse-jsf 2.0.2. I am trying to implement DWR for person
form.
The methods inherited from GenericDaoHibernate like get, save, remove etc 
shows

   Methods For: PersonManagerService 

#  get(  );
        (Warning: No Converter for java.io.Serializable. See below)
        (Warning: No Converter for java.lang.Object. See below)
# remove( );
        (Warning: No Converter for java.io.Serializable. See below)
# save( );
        (Warning: No Converter for java.lang.Object. See below)
        (Warning: No Converter for java.lang.Object. See below)

in the DWR debug window and when executed it gives the following warnings.

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | Marshalling
exception:
Missing method or missing parameter converters: PersonManagerService.save

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | --Erroring:
batchId[1]
message[java.lang.IllegalArgumentException: Missing method or missing
parameter
converters: PersonManagerService.save]

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | Marshalling
exception:
Missing method or missing parameter converters: PersonManagerService.get

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | --Erroring:
batchId[0]
message[java.lang.IllegalArgumentException: Missing method or missing
parameter
converters: PersonManagerService.get]

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | Marshalling
exception:
Missing method or missing parameter converters: PersonManagerService.remove

[service] WARN [btpool0-1] BaseCallMarshaller.warn(59) | --Erroring:
batchId[1]
message[java.lang.IllegalArgumentException: Missing method or missing
parameter
converters: PersonManagerService.remove]


 My dwr.xml looks like this.

  <convert converter="bean" match="com.service.model.Person"/>
  <create creator="spring" javascript="PersonManagerService" >
        
        <include method="findByLastName"/>
        <include method="getAll"/>
        <include method="get"/>
        <include method="remove"/>
        <include method="save"/>
  </create>

 What could be the problem?

 Thank you.

Sudheer P
-- 
View this message in context: 
http://www.nabble.com/appfuse-jsf-%2B-DWR-converter-error-tp17565367s2369p17565367.html
Sent from the AppFuse - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to