2015-01-14 02:31:27 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2015-05-05 21:05:06 +03:00
|
|
|
"github.com/myodc/go-micro/client"
|
2015-05-21 21:24:57 +03:00
|
|
|
"github.com/myodc/go-micro/cmd"
|
2015-05-05 21:05:06 +03:00
|
|
|
example "github.com/myodc/go-micro/template/proto/example"
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2015-05-21 21:24:57 +03:00
|
|
|
cmd.Init()
|
|
|
|
client.DefaultClient = client.NewRpcClient()
|
2015-01-14 02:31:27 +03:00
|
|
|
// Create new request to service go.micro.service.go-template, method Example.Call
|
|
|
|
req := client.NewRequest("go.micro.service.template", "Example.Call", &example.Request{
|
2015-05-09 02:42:07 +03:00
|
|
|
Name: "John",
|
2015-01-14 02:31:27 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
// Set arbitrary headers
|
|
|
|
req.Headers().Set("X-User-Id", "john")
|
|
|
|
req.Headers().Set("X-From-Id", "script")
|
|
|
|
|
|
|
|
rsp := &example.Response{}
|
|
|
|
|
|
|
|
// Call service
|
|
|
|
if err := client.Call(req, rsp); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-09 02:42:07 +03:00
|
|
|
fmt.Println(rsp.Msg)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|