I have a ruby(using sinatra) webservice on windows 7 32 bit OS. Its running on port 4567. Its working fine when I use localhost:4567 but when I replace loca
this
require 'rubygems' require 'sinatra' require "dbi" set :bind, '192.168.200.185' get '/' do 'hello word' end