func main() { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterCodec(json.NewCodec(), "application/json;charset=UTF-8") config := new(Config) s.RegisterService(config, "") r := mux.NewRouter() r.Handle("/v1", s) http.ListenAndServe(":7000", r) }
func main() { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterCodec(json.NewCodec(), "application/json;charset=UTF-8") arith := new(Arith) s.RegisterService(arith, "") r := mux.NewRouter() r.Handle("/rpc", s) http.ListenAndServe(":1234", r) }
func main() { Portfolios = make(map[float32]Portfolio) // HTTP request multiplexer // mux.Router matches incoming requests against a list of registered routes // and calls a handler for the route that matches the URL r := mux.NewRouter() s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") stockDealer := new(StockDealer) s.RegisterService(stockDealer, "") // middle ware: organizing hared functionalities chain := alice.New( func(h http.Handler) http.Handler { return handlers.CombinedLoggingHandler(os.Stdout, h) }, handlers.CompressHandler, func(h http.Handler) http.Handler { return recovery.Handler(os.Stderr, h, true) }) r.Handle("/rpc", chain.Then(s)) fmt.Println("Server listening on 8080") log.Fatal(http.ListenAndServe(":8080", r)) }
func main() { //initialize the stock account var st = (new(StockAccounts)) //initialize a tradeId with random number tradeId = rand.Intn(10000) + 1 // //register the stock account data and start server with HTTP protocol // rpc.Register(&st) // rpc.HandleHTTP() // //start listening // err := http.ListenAndServe(":1234", nil) //nil, no need for handler router := mux.NewRouter() server := rpc.NewServer() server.RegisterCodec(json.NewCodec(), "application/json") server.RegisterService(st, "") chain := alice.New( func(h http.Handler) http.Handler { return handlers.CombinedLoggingHandler(os.Stdout, h) }, handlers.CompressHandler, func(h http.Handler) http.Handler { return recovery.Handler(os.Stderr, h, true) }) router.Handle("/rpc", chain.Then(server)) log.Fatal(http.ListenAndServe(":1234", server)) // checkError(err) }
func main() { //Creating stock records var st = (new(StockRecords)) //TradeID Initialization tradeId = 0 router := mux.NewRouter() server := rpc.NewServer() server.RegisterCodec(json.NewCodec(), "application/json") server.RegisterService(st, "") chain := alice.New( func(h http.Handler) http.Handler { return handlers.CombinedLoggingHandler(os.Stdout, h) }, handlers.CompressHandler, func(h http.Handler) http.Handler { return recovery.Handler(os.Stderr, h, true) }) router.Handle("/rpc", chain.Then(server)) log.Fatal(http.ListenAndServe(":1333", server)) }
func Initialize(config *api.ApiConfig) error { e := localdb.Initialize(config.Log, config.LocalDB) if e != nil { return e } s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") service := new(EMPService) service.Config = config s.RegisterService(service, "EMPService") // Register RPC Services http.Handle("/rpc", s) // Register JS Client http.Handle("/", http.FileServer(http.Dir(config.HttpRoot))) l, e := net.Listen("tcp", fmt.Sprintf(":%d", config.RPCPort)) if e != nil { config.Log <- fmt.Sprintf("RPC Listen Error: %s", e) return e } go http.Serve(l, nil) go register(config) portStr := fmt.Sprintf(":%d", config.RPCPort) config.Log <- fmt.Sprintf("Started RPC Server on: %s", portStr) return nil }
//Serve adds the rpc service t to the net/http DefaultServeMux at the given path //and allows future lookup with name. func Serve(t interface{}, name string, path string) { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(t, name) http.Handle(path, s) servers[name] = path }
//New returns a new web Builder ready to Announce to the given tracker. It //announces that it is available at `hosted` which should be the full url of //where this builder resides on the internet. func New(b builder.Builder, tracker, hosted string) *Builder { //create our new builder n := &Builder{ b: b, base: hosted, rpc: gorpc.NewServer(), tcl: client.New(tracker, http.DefaultClient, client.JsonCodec), bq: rpc.NewBuilderQueue(), mux: http.NewServeMux(), dler: newDownloader(), } //register the build service in the rpc if err := n.rpc.RegisterService(n.bq, ""); err != nil { panic(err) } //make sure we respond to pings if err := n.rpc.RegisterService(pinger.Pinger{}, ""); err != nil { panic(err) } //register the codec n.rpc.RegisterCodec(json.NewCodec(), "application/json") //add the handlers to our mux n.mux.Handle("/", n.rpc) n.mux.Handle("/download/", http.StripPrefix("/download/", n.dler)) //start processing tasks go n.run() return n }
//New returns a new Runner ready to be Announced and run tests locally. func New(runner, tracker, hosted string) *Runner { n := &Runner{ tcl: client.New(tracker, http.DefaultClient, client.JsonCodec), base: hosted, runner: runner, rpc: gorpc.NewServer(), rq: rpc.NewRunnerQueue(), resp: make(chan rpc.Output), } //register the run service in the rpc if err := n.rpc.RegisterService(n.rq, ""); err != nil { panic(err) } //register the pinger if err := n.rpc.RegisterService(pinger.Pinger{}, ""); err != nil { panic(err) } //register ourselves in the rpc if err := n.rpc.RegisterService(n, ""); err != nil { panic(err) } //register the codec n.rpc.RegisterCodec(json.NewCodec(), "application/json") //start processing go n.run() return n }
func main() { //stock account Initialization var st = (new(StockAccounts)) //Trade Id random generator tradeId = rand.Intn(99999) + 1 //start listening router := mux.NewRouter() server := rpc.NewServer() server.RegisterCodec(json.NewCodec(), "application/json") server.RegisterService(st, "") chain := alice.New( func(h http.Handler) http.Handler { return handlers.CombinedLoggingHandler(os.Stdout, h) }, handlers.CompressHandler, func(h http.Handler) http.Handler { return recovery.Handler(os.Stderr, h, true) }) router.Handle("/rpc", chain.Then(server)) log.Fatal(http.ListenAndServe(":8070", server)) }
//New returns a new Runner ready to be Announced and run tests on the //heroku dyno grid. func New(app, api string, tracker, hosted string) *Runner { n := &Runner{ app: app, api: api, tcl: client.New(tracker, http.DefaultClient, client.JsonCodec), base: hosted, rpc: gorpc.NewServer(), rq: rpc.NewRunnerQueue(), mc: heroku.NewManaged(app, api, 2, 2*time.Minute), tm: &runnerTaskMap{items: map[string]*runnerTask{}}, } //register the run service in the rpc if err := n.rpc.RegisterService(n.rq, ""); err != nil { panic(err) } //register the pinger if err := n.rpc.RegisterService(pinger.Pinger{}, ""); err != nil { panic(err) } //register ourselves in the rpc if err := n.rpc.RegisterService(n, ""); err != nil { panic(err) } //register the codec n.rpc.RegisterCodec(json.NewCodec(), "application/json") //start processing go n.run() return n }
func main() { flag.Parse() session, err := r.Connect(r.ConnectOpts{ Address: *rethinkdbAddress, Database: *rethinkdbDatabase, }) if err != nil { log.Fatal(err) } r.DB(*rethinkdbDatabase).TableCreate("scripts").Exec(session) r.DB(*rethinkdbDatabase).TableCreate("tokens").Exec(session) s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(&service.Service{ Session: session, }, "Rexd") http.Handle("/rpc", s) http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { w.Write([]byte("lavab/rexd 0.1.0\n")) }) log.Printf("Binding to %s", *bindAddress) if err := http.ListenAndServe(*bindAddress, nil); err != nil { log.Fatal(err) } }
func main() { rpcServer := rpc.NewServer() rpcServer.RegisterCodec(json.NewCodec(), "application/json") rpcServer.RegisterCodec(json.NewCodec(), "application/json;charset=UTF-8") sms := new(SmsService) email := new(EmailService) rpcServer.RegisterService(sms, "sms") rpcServer.RegisterService(email, "email") router := mux.NewRouter() router.Handle("/delivery", rpcServer) http.ListenAndServe(":1337", router) }
func main() { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(StockService), "") http.Handle("/stock", s) http.ListenAndServe(":8080", nil) }
func main() { createHashTable() s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(StockMarket), "") http.Handle("/rpc", s) http.ListenAndServe("localhost:10000", nil) }
func main() { fmt.Println("preparing butler service") s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(butler.Butler), "") http.Handle("/rpc", s) http.ListenAndServe(":10080", nil) }
func jsonRpcService() *rpc.Server { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(KeyService), "") s.RegisterService(new(NameService), "") s.RegisterService(new(BlockService), "") return s }
func main() { fmt.Println("Starting service") s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(StringService), "") http.Handle("/rpc", s) http.ListenAndServe(":10000", nil) }
func GetServer() *rpc.Server { s := rpc.NewServer() s.RegisterCodec(rpcJSON.NewCodec(), "application/json") for _, v := range rpcCtrlList { s.RegisterService(v, "") } return s }
func main() { rpcHandler := rpc.NewServer() codec := json.NewCodec() rpcHandler.RegisterCodec(codec, "application/json") rpcHandler.RegisterCodec(codec, "application/json; charset=UTF-8") rpcHandler.RegisterService(new(Service), "") http.Handle("/rpc", rpcHandler) http.ListenAndServe("127.0.0.1:8080", nil) }
func main() { server := rpc.NewServer() codec := json.NewCodec() server.RegisterCodec(codec, "application/json") server.RegisterCodec(codec, "application/json; charset=UTF-8") // For firefox 11 and other browsers which append the charset=UTF-8 server.RegisterService(new(Service), "") http.Handle("/rpc", server) http.ListenAndServe("127.0.0.1:8080", nil) }
func main() { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") //this will register the trading service use to trade for stocks and getting portfolio info s.RegisterService(new(TradingService), "TradingService") http.Handle("/rpc", s) //running it at port 8082 fmt.Println("Starting server at port 8082") log.Fatal(http.ListenAndServe(":8082", nil)) }
func main() { jsonRPC := rpc.NewServer() jsonCodec := json.NewCodec() jsonRPC.RegisterCodec(jsonCodec, "application/json") jsonRPC.RegisterCodec(jsonCodec, "application/json; charset=UTF-8") // For firefox 11 and other browsers which append the charset=UTF-8 jsonRPC.RegisterService(new(s.BuyingStocksService), "") jsonRPC.RegisterService(new(s.CheckingPortfolioService), "") http.Handle("/rpc", jsonRPC) http.ListenAndServe(":8080", jsonRPC) }
func main() { fmt.Println("Starting HTTP server") s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(FinanceService), "") http.Handle("/rpc", s) http.HandleFunc("/", handler) http.ListenAndServe(":8080", nil) log.Println("Starting JSON-RPC server on localhost:8080/rpc") log.Fatal(http.ListenAndServe(":8080", nil)) }
func JsonRpcService(srv *context.T, log log15.Logger) *rpc.Server { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(&KeyService{srv: srv, log: log}, "") s.RegisterService(&NameService{srv: srv, log: log}, "") s.RegisterService(&BlockService{srv: srv, log: log}, "") s.RegisterService(&TransactionService{srv: srv, log: log}, "") s.RegisterService(&RepositoryService{srv: srv, log: log}, "") s.RegisterService(&NetService{srv: srv, log: log}, "") return s }
func main() { s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(HelloService), "") http.Handle("/rpc", s) err := http.ListenAndServe(":9000", nil) if err != nil { log.Fatal(err) } }
func main() { //Initialize in-memory array of structure listResponse = []StockDistribution{} objAllResponse = AllResponses{listResponse} fmt.Println("Starting Server") s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(new(StockService), "") http.Handle("/stocks", s) http.ListenAndServe(":8080", nil) }
func InitRpc(r *mux.Router, filename string) { db := OpenDb(filename) logReqService := CreateLogRequestService() s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") s.RegisterService(logReqService, "Log") go logReqService.ApplyWithDb(db) r.Handle("/rpc", s) }
func main() { RPC := rpc.NewServer() RPC.RegisterCodec(json.NewCodec(), "application/json") RPC.RegisterService(new(FinanceApiService), "") http.Handle("/", RPC) //http.HandleFunc("/rpc", MyHandler) //h := http.HandlerFunc(MyHandler) /*mux := http.NewServeMux() mux.Handle("/", handler(MyHandler))*/ log.Println("Starting JSON-RPC server on localhost:1234/RPC2") log.Fatal(http.ListenAndServe(":1234", context.ClearHandler(http.DefaultServeMux))) }
func main() { r := mux.NewRouter() s := rpc.NewServer() s.RegisterCodec(json.NewCodec(), "application/json") srv, _ := daemon.NewAstorService() s.RegisterService(srv, "") r.Handle("/rpc", s) log.Fatal(http.ListenAndServe(":8080", r)) }