Hi.
In practice application, Writing CRUD operations for Person entity Step -
2,For creating a new person, a service, createPracticePerson is called. In
that service, a simple method , createPracticePerson is invoked from
PracticeServices.xml. <service name="createPracticePerson"
default-entity-name="Person" engine="simple"
location="component://practice/script/org/hotwax/practice/PracticeServices.xml"
invoke="createPracticePerson" auth="true"> <description>Create a
Person</description> <auto-attributes include="pk" mode="OUT"
optional="false"/> <attribute name="salutation" mode="IN" type="String"
optional="true"/> <attribute name="firstName" mode="IN" type="String"
optional="false"/> <attribute name="middleName" mode="IN" type="String"
optional="true"/> <attribute name="lastName" mode="IN" type="String"
optional="false"/> <attribute name="suffix" mode="IN" type="String"
optional="true"/></service> But its not mentioned what has to be in this
createPracticePerson simplemethod. Iam not clear about this. Can someone
please help me in understanding what has to be done in this invoked simple
method inorder to create a new person.
Thanks.
--
View this message in context:
http://n4.nabble.com/services-in-practice-application-tp360795p360795.html
Sent from the OFBiz - User mailing list archive at Nabble.com.