What are the differences between these two prefixes in terms of HttpListener
or any other?
http://+:8080/
http://*:8080/
What are the differences between these two prefixes in terms of HttpListener
or any other?
http://+:8080/
http://*:8080/
In addition to @Paulpro's great answer, the link posted by @rownage (see this answer) provides some more information about the difference:
http://*:8080/
: Receive all HTTP requests on port 8080 that are not already being handled by some otherHttpListener
.http://+:8080/
: Receive all HTTP requests on port 8080 even if they're already handled by anotherHttpListener
.