Expand my Community achievements bar.

Attention: Experience League Community will undergo scheduled maintenance on Tuesday, August 20th between 10-11 PM PDT. During this time, the Community and its content will not be accessible. We apologize for any inconvenience this may cause.

Data Service

Avatar

Level 2
hi

i am vasibe and i am trying to connect to the databases wats
the problem i was facing it does not invoking a method from the
assembler class(does not calling the create method for inserting
values in the databases showing exception is that ("Could not
invoke sync method on data adapter for destination 'crm.employee'
due to the following error: class
java.lang.UnsupportedOperationException:AbstractAssembler does not
implement the createItem method." faultCode="Server.Processing"
faultDetail="null"])



thanks

Vasibe
1 Reply

Avatar

Level 2
Hi Vasibe,



Your assembler needs to implement a createItem(Object item)
method to override what is in the AbstractAssembler:



public void createItem(Object item)

{

throw new UnsupportedOperationException("AbstractAssembler
does not implement the createItem method");

}