Skip to content

Instantly share code, notes, and snippets.

@edgars
Created December 1, 2017 04:16
Show Gist options
  • Save edgars/9592ccc118e3478b79f3f9117661b634 to your computer and use it in GitHub Desktop.
Save edgars/9592ccc118e3478b79f3f9117661b634 to your computer and use it in GitHub Desktop.
import ballerina.net.http;
@http:configuration {basePath:"/soap"}
service<http> cepservice {
endpoint
<http:HttpClient> httpConnector{
create http:HttpClient("https://apps.correios.com.br", {});
}
http:HttpConnectorError err;
@http:resourceConfig {
methods:["GET"],
path:"/cep/{cep}"
}
resource consultacep (http:Request req, http:Response res, string cep) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment