Xojo not seeing incoming request?

I have a stand alone web app running on port 9090

If you call the URL: http://www.mydomain.com:9090, because of the following code in the open event of the session: It serves you up: Webpage_www

[code]If InStr (self.Header (“Host”), “www”)>0 then
Webpage_www.show

elseif InStr (self.Header (“Host”), “admin”)>0 then
Webpage_admin.show

elseif InStr (self.Header (“Host”), “test”)>0 then
Webpage_test.show

elseif InStr (self.Header (“Host”), “sendMessagePannel”)>0 then
Webpage_MessagePannel.show

else
Webpage_404.show
end if[/code]

If you call:

http://admin.mydomain.com:9090 you get Webpage_admin

But if you call the following you get nothing. Safari just hangs on load.

http://admin.mydomain.com:9090
or
http://bunchofgarbage.mydomain.com:9090

I addis a line to log the self.Header (“Host”) as the very first thing in the Open event of the session and it is logging the pages it sees (www, admin) just fine. But for some odd reason in simply does not get the request on other URLs?

I’m at a total loss as to where to look to begin to start debugging this one. Any thoughts are appreciated.

hmm…I’m not seeing this incoming request either