I concur with both Stephen and Jorge, with a few comments...
If the information passed to and from your service is completely without any security or privacy concerns (for example, you pass it a property id+ccyy and it passes back an array of 0's and 1's representing availability), then I would have a hard time visualizing the security risk of an open listening port. But in general, it makes sense to offload the connection management responsibility to a real web server, eliminating a lot of complications that your application would otherwise have to take responsibility for (launching your service, making sure it keeps running, HTTPS/TLS, security in general, scaling, load balancing, etc.)
If the service is low volume (say, less than about 20 requests per minute), and doesn't take much overhead to launch, you can get by with ordinary CGI. But for higher volumes and/or higher launch overhead services, FastCGI (see
CGIUTL ) drastically reduces the per-connection overhead by eliminating the need to launch a new session for each connection.