Neophytos,
I'm working on tying the ecommerce search function to openfts. Can you define what the impl_name and impl_owner_name are in the following sql code?
select acs_sc_impl__new(
'FtsContentProvider', -- impl_contract_name
'note', -- impl_name
'notes' -- impl_owner_name
);
My first guess is that the impl_name is an identifier and the impl_owner_name is the name of the package. Is that statement correct?
Eventually, I would like to get some information on how to write a service contract. Is there any code that I can look at to see how it should be written?
Thanks.