Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions microservices/app/src/hello_service.bal
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import ballerina/io;
// is accessible at '/hello', and bound to a the listener on
// port 9090. `http:Service`is a connector in the `http`
// package.
service<http:Service> hello bind { port: 9090 } {
service hello on new http:Listener(9090) {

// A resource is an invokable API method.
// Accessible at '/hello/sayHello’.
// 'caller' is the client invoking this resource.
sayHello (endpoint caller, http:Request request) {
resource function sayHello(http:Caller caller, http:Request request) {

// Create object to carry data back to caller.
http:Response response = new;
Expand Down