Embed presentation
Downloaded 25 times




![Ballerina
function main(string[] args) {
endpoint<http:HttpClient > UserAPI {
create http:HttpClient("http://londoni.com/users",{});
}
endpoint<http:HttpClient > EmployeeAPI {
create ttp:HttpClient("http://londoni.com/employe",{});
}
http:Response person;
http:Request employee;
person,_ = UserAPI.get(args[0], {});
employee.setStringPayload(person.getStringPayload());
_,_ = EmployeeAPI.post(args[1], employee);
}](https://image.slidesharecdn.com/anoverviewofballerinacomposerjosephedited-171106115828/75/WSO2Con-EU-2017-An-Overview-of-Ballerina-Composer-5-2048.jpg)































Ballerina Composer is a tool for graphically and textually editing Ballerina programs, offering features such as a graphical editor, code completion, and integration with language servers. It allows users to create and manage APIs using a combination of graphical and textual syntax. Future developments include enhancing integration with other editors and building a desktop version.




![Ballerina
function main(string[] args) {
endpoint<http:HttpClient > UserAPI {
create http:HttpClient("http://londoni.com/users",{});
}
endpoint<http:HttpClient > EmployeeAPI {
create ttp:HttpClient("http://londoni.com/employe",{});
}
http:Response person;
http:Request employee;
person,_ = UserAPI.get(args[0], {});
employee.setStringPayload(person.getStringPayload());
_,_ = EmployeeAPI.post(args[1], employee);
}](https://image.slidesharecdn.com/anoverviewofballerinacomposerjosephedited-171106115828/75/WSO2Con-EU-2017-An-Overview-of-Ballerina-Composer-5-2048.jpg)





























