Azure Websites: socket reading port 80 returns 404 error

205 Views Asked by At

I have a php script that run perfectly when requested by the browser (example): http://www.kwiksher.com/k3Serial.php?key="XXXXX"

in this case, I get the information of an user with the key XXXXX, which is the expected behavior.

However, inside my Photoshop plugin, I must to call it via socket, having to force a port in the connection: http://www.kwiksher.com:80/k3Serial.php?key="XXXXX"

Doing that, I get the the content of Azure default 404 page (it is not even my customized 404 page).

If I use the same call (with the port added to the domain) on a browser, it works fine as well.

Any idea on how to fix it? I tried to flushDNS on my machine as well without success.

Thanks a lot, Alex

1

There are 1 best solutions below

0
On

It's likely that the socket library won't be using HTTP and therefore isn't sending a host header and the web tier on Azure can't actually figure out which Website it should serve the content from.

As you using this with a plug-in perhaps try and use the default hostname issued by Azure instead of a custom domain.