i want to try a application (chrome app) who need to access socket (port) of user’s system.
can i do it. i just want to give them utility for the software they installed.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unfortunately, you can’t do this very easily. WebSockets do provide socket support, but won’t really give you the functionality you are looking for here.
There are some super complex ways of solving this, for example using C/C++ and the like, but would be extremely time consuming to write and maintain. You could also write a proxy that would be able to convert the raw socket connections to an HTTP request or WebSocket request, but again, lots of work.