Golang : Serving HTTP and Websocket from different ports in a program example
Problem:
For some reason you want to split the port use by your program to serve HTTP and Web-socket traffic. How to write one program that is able to listen and serve HTTP/Web-socket traffics on different ports?
Solution:
Setup a http.NewServeMux()
and http.ListenAndServe()
for one port and launch it as go-routine. For example, one go-routine for handling web socket traffic and main routine in the program to handle HTTP traffic.
NOTE : Instead of web-socket, can you use for another HTTP server? Yes, of course.
Here you go!
package main
import (
"fmt"
"golang.org/x/net/websocket"
"io"
"net/http"
)
func homeHandler(w http.ResponseWriter, r *http.Request) {
html := `<!DOCTYPE html>
<html>
<head>
<title>One HTTP and Websocket serve with different ports example</title>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(function() {
var ws = new WebSocket("ws://localhost:8082/"); // use port 8082 instead of 8080
var $ul = $('#msg-list');
$('#sendBtn').click(function(){
var data = $('#name').val();
ws.send(data);
console.log("Sending data to HTTP server via Websocket via port 8082 :" + data);
$('<li>').text(data).appendTo($ul);
});
});
</script>
</head>
<body>
<input id="name" type="text" />
<input type="button" id="sendBtn" value="send"></input>
<ul id="msg-list"></ul>
</body></html>`
w.Write([]byte(fmt.Sprintf(html)))
}
func wsHandler(ws *websocket.Conn) {
fmt.Println("Receive data from : ", ws.LocalAddr())
fmt.Println("Sending data to : ", ws.RemoteAddr())
// echo back
io.Copy(ws, ws)
}
func main() {
mxWS := http.NewServeMux()
mxWS.Handle("/", websocket.Handler(wsHandler))
fmt.Println("Listen and serve websocket on :8082")
go func() {
http.ListenAndServe(":8082", mxWS)
}()
mxHTTP := http.NewServeMux()
mxHTTP.HandleFunc("/", homeHandler)
fmt.Println("Listen and serve HTTP on :8080")
http.ListenAndServe(":8080", mxHTTP)
}
Run the code and point your browser to http://localhost:8080
. Open up the developer view to see the console messages.
References:
https://www.socketloop.com/tutorials/golang-web-javascript-to-server-side-websocket-example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.1k Golang : Detect sample rate, channels or latency with PortAudio
+6.8k Golang : Check if one string(rune) is permutation of another string(rune)
+12.9k Golang : Get user input until a command or receive a word to stop
+18.7k Mac OSX : Homebrew and Golang
+11k Swift : Convert (cast) Float to String
+4.7k Golang : Constant and variable names in native language
+15.1k Golang : Get current time from the Internet time server(ntp) example
+13.6k Golang : Check if a file exist or not
+31.6k Golang : Copy directory - including sub-directories and files
+5.9k Golang : How to get capacity of a slice or array?
+8.9k Golang : Detect Pascal, Kebab, Screaming Snake and Camel cases
+35.5k Golang : Validate IP address