Is it possible to use parameters in the URL when using websockets?
With handlers, I can use a wildcard
but the following gives 404 not found if I do, for example, localhost:51042/helloworld/test
With handlers, I can use a wildcard
B4X:
srvr.AddHandler("/helloworld/*", "HelloWorld", False)
but the following gives 404 not found if I do, for example, localhost:51042/helloworld/test
B4X:
srvr.AddWebSocket("/helloworld/*", "HelloWorld")
Last edited: