Hey Guys, I am at my wits end over this issue. I have a rails app up and running using WEBrick on localhost:3000 from my mac, everything is fine. I would like to test my app in IE, so i am running parallels. To access localhost from IE on the virtual machine, i use MYCOMPUTERNAME.local in the address bar of IE. This serves up the "it works!" page no problem. However, when i specify port 3000, i keep getting "internet explorer cannot display webpage". MYCOMPUTERNAME.local:3000 I have also tried using the information i get from the command window on my virtual machine after doing ipconfig. IPv4 address - 10.211.55.3 Default gateway - 10.211.55.1 If i use 10.211.55.2 i get the "it works!" page, if i add :3000 i get nothing. This is driving me crazy, any help would be greatly appreciated. Thanks, Bobby -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hej Bobby, try to add "http://" to the url. this is a weird issue in ie it cuts the http somehow if you specify a port. best, sebastian -------------------------- Sebastian Gräßl sebastian-30c1IgTnpsdP52+qxqhqIQ@public.gmane.org http://validcode.me -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hey Sebastian, I already had "http://" in the URL. I just double checked again and still no joy? Thanks, Bobby -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 21 Mar 2011, at 08:59, Robert Will <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hey Sebastian, > > I already had "http://" in the URL. I just double checked again and > still no joy? >It depends on how exactly parallels does its virtual networking stuff, but you might want to check that your app isn''t just bound to localhost and that you haven''t got any firewall shenanigans going on Fred> Thanks, > > Bobby > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 21 March 2011 09:36, Frederick Cheung <frederick.cheung-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On 21 Mar 2011, at 08:59, Robert Will <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> I already had "http://" in the URL. I just double checked again and >> still no joy? > > It depends on how exactly parallels does its virtual networking stuff, but you might want to check that your app isn''t just bound to localhost and that you haven''t got any firewall shenanigans going on+1 I''m not familiar with Parallels, but Virtualbox has similar issues. When I set up a new VM, I need to ensure the networking is set to "bridged" rather than "NAT". If it''s on NAT, the VM can get out, but nothing can get in. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.