Re: Writing a Simple-service for simple-methods

2019-01-27 Thread Swapnil Mane
Hello Rahul, As Taher explained, use of mini lang (simple service) is deprecated in OFBiz [1]. To answer your question, == And also why there is no java service written for "*create customer*" while there is java service for "*create Person*"? And what are the complexities involved

Re: Writing a Simple-service for simple-methods

2019-01-26 Thread Taher Alkhateeb
Hi Rahul, Generally it is recommend to avoid simple services as they are deprecated and being phased out. You might want to use Java, groovy or entity-auto services instead. On Sat, Jan 26, 2019, 10:49 AM Rahul Utkoor Hello, > I just started working on ofbiz. As a part of my work I was supposed

Re: Writing a Simple-service for simple-methods

2019-01-25 Thread Pierre Smits
Hi Rahul, A customer is a party with the role 'CUSTOMER'. Persisting the captured customer details can be done through the service 'createPartyGroupRoleAndContactMechs' in the party component. This is a so-called simple service. Best regards, Pierre Smits *Apache Trafodion

Re: Writing a Simple-service for simple-methods

2019-01-25 Thread Jacques Le Roux
Hi Rahul, Your message has been moderated. Please subscribe to the *user* ML for such questions and then use your email client See also why here http://ofbiz.apache.org/mailing-lists.html You will get a better support , it's more fair to share with everybody  and people can answer you

Writing a Simple-service for simple-methods

2019-01-25 Thread Rahul Utkoor
Hello, I just started working on ofbiz. As a part of my work I was supposed to write a service for "*create customer*" functionality in Party application. I wonder why there are no services written for some of the simple-method events. And also why there is no java service written for "*create