what is the difference between Collaboration and Java
Collaboration definition interms of JAVACAPS terminology?
Answer Posted / rohit rai sirji
Collaboration Definitions define how data should be processed and routed between Project components, how databases should be queried in response to requests, and how APIs to one or more applications should be invoked. The external data formats that characterize the input and output data structures in a Collaboration Definition are described by Object Type Definitions (OTDs).
A Collaboration will typically receive a message containing the external representation of a particular OTD. It will use the unmarshal method of an instance of that OTD to parse the data and make it accessible though the hierarchical data structure. Then it will perform some operation— for example, copying parts of the data to another OTD instance. Finally, it will invoke the marshal method on the other OTD instance to render the contents of its data structure as a single, serialized data stream for further transport.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is type inference? Is type inference available in older versions like java 7 and before 7 or it is available only in java se 8?
Are streams faster than for loops?
What is jep in java?
Do I need to install jre if I have jdk?
What is cdi in java?
there are 67 seats in train . there are only 5 seats in a row and in last row there are only 2 seats. One person can reseve only 5 seat at a time. If person reserving seat , the care is atken that he may get all in row. if seats are not available in row then the arrangement is so that person group get nearby seats. the following class is given public class seat { char name; int seat; boolean isSeatempty } 1.Draw require class digram and object diagram. 2.Write function seatallot(int noofperson) to allocate seat with seat nuber printed for the each name.
What is rxjava2?
How do I enable java in firefox?
What does el mean in java?
What is the use of flatmap?
How long can a lambda function run?
In hibernate what is the difference between the Session and SessionFactory?
What do you mean by exception handling?
explain isalive() method under thread class?
In a barber shop there are 2 doors. customer come in 1 door, leave in other. minimum # of chairs. barber spend his life in cutting. always barber can cut 1 customer. few chairs in the shop. if barber busy customer waits, if chairs full, customer leave. if no customer, barber sleeps. treat barber and customer as 2 threads. you can use Semaphore class with arrive and depart and count as parameter.