[go-nuts] Re: TCP Server

2016-07-19 Thread Lars Kulseng
If it is possible to go the HTTP-route, you may also want to consider using WebSockets, as it uses bare TCP-protocol for transporting data, but with a HTTP-handshake. That way you can avoid the overhead that HTTP adds, and you could stream the data from you device to your server. mandag 18. j

[go-nuts] Re: TCP Server

2016-07-17 Thread EdgarAlejandro Vintimilla
yes, I have developed several things but no big ones In my work are selling this products http://www.sinocastel.com/product/ , but the admin panel to see the data of the trackers is not good so we are going to develop one. these trackers send me the data by TCP and it need a static IP, app en

[go-nuts] Re: TCP Server

2016-07-17 Thread Caleb Doxsey
Hi Edgar, Have you done much web development in the past? The easiest option may be google app engine. You can create a restful HTTP API pretty easily and it comes with a lot of functionality out of the box. You can find a getting-started tutorial here: https://cloud.google.com/appengine/docs/

[go-nuts] Re: TCP Server

2016-07-16 Thread Egon
On Thursday, 14 July 2016 17:41:32 UTC+3, EdgarAlejandro Vintimilla wrote: > > Thanks, basically is a GPS that sends data to the server. It's for a fit > traker. > > What is the best way to put into producción this server? There are probably few important things to consider: 1. use encryption (

[go-nuts] Re: TCP Server

2016-07-14 Thread EdgarAlejandro Vintimilla
Thanks, basically is a GPS that sends data to the server. It's for a fit traker. What is the best way to put into producción this server? -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails

[go-nuts] Re: TCP Server

2016-07-10 Thread Egon
On Monday, 11 July 2016 07:53:00 UTC+3, EdgarAlejandro Vintimilla wrote: > > > hi > What is the best way to implement a TCP server, I found many examples, > including in this book > http://cdn.oreillystatic.com/oreilly/booksamplers/9781491941959_sampler.pdf > > but I would like some recommendation