Our web server uses port 3434 for FTP. It doesn't seem to change the default FTP port number in ClickOnce Deployment in Visual Studio. Has anyone encountered this problem?
It turns out that I just needed to add port number after the IP address like ftp://1.123.123.123:3434
Related
I was requested to configure IIS for an internal website on Windows 2019 server where Windows Admin Center is installed already. Since 443 was used by Windows Admin Center, I tried to configure a custom port such as 4433 and opened a firewall rule for the port as well as my subnet. The website opens fine locally, https://mywebsite.com:4433. However, when it is attempted externally, it times out with the following errors:
Try:
Checking the connection
Checking the proxy and the firewall
Running Windows Network Diagnostics
ERR_CONNECTION_TIMED_OUT
What could be an issue? Any idea?
There are many reasons for this error, you can try below steps to slove this issue:
Check if your internet connection is working properly. Check the status of the network connection and see if it is stable. You can disconnect and connect to the internet to see if the issue is resolved.
Disable firewall
Go to Windows > Settings > Updates and Security > Windows Security > Click Firewall and Network Protection and try to disable
Also try clearing your browser's cache and see if the issue is resolved
I hava a VPS running Windows Server 2008 and I have a web application deployed in Glassfish 4. How can I make glassfish listen to port 80, I know it has something related with IIS and I am not familiar with it please can someone help me?
If you have IIS installed (which is not by default on Win 2008), it is probably using the port 80 for its default web site. Stop it, or change the port is working on.
I am developing a Web API project in ASP.Net using Visual Studio 2013.
When I click debug it launches the website in IIS and displays it in Chrome browser. However, I cannot access it from another device.
I need to access the API from my mobile device for testing purposes. How can I perform remote debugging in Visual studio 2013?
there were few posts concerning this topic here (one, two). I faced the same problem recently and the most sufficent post I found was this one.
Your device is running under AVD emulator ?
I suggest follow this steps:
Install IIS
Configure Visual Studio to use local IIS (Page properties in your Web Project)
Create a exclusive AppPool in IIS to work with your application
In my Project I'm using Oracle Client and must be 32bits (64 bits don't works with Visual Studio) then I need allow 32 bit in Application Pool
Configure the Windows firewall to allow request in port 80 (inbound rules)
In your device use the intranet IP DON'T USE LOCALHOST OR 127.0.0.1, because some emulators works under another IP
From Handling url binding failures in IIS Express:
Serving External Traffic
To enable your website to serve external traffic, you need to configure HTTP.sys and your computer's firewall. From an elevated command prompt, run the following command:
netsh http add urlacl url=http://myhostname:8080/ user=everyone
After configuring HTTP.sys, you can configure IIS Express to use port 8080 by using WebMatrix or Visual Studio 2010 SP1 Beta+, or by editing the applicationhost.config file to include the following binding in the sites element. (Replace myhostname with your computer's domain name).
<binding protocol="http" bindingInformation="*:8080:myhostname"/>
You will also need to configure the firewall to allow external traffic to flow through port 8080.
I am using some example code, http://www.windowsazure.com/en-us/develop/nodejs/tutorials/app-using-socketio/, to create a basic socket.io app with the WorkerRole. Upon starting the emulator, I go to access: 127.0.0.1:81, but IE will not load the page saying it's not accessible.
Here is the output of powershell
PS Y:\Project\WorkerRole1> Start-AzureEmulator -launch
Creating local package...
Starting Emulator...
Role is running at tcp://127.0.0.1:81
Role is running at tcp://127.0.0.1:8
Started
Edit: Another note, I am using the Parallels VM with Windows 8 on OSX 10.8.2
Please check the value of process.env.port to see if it's 80 or 81. This might because you are listening on 80 but the local emulator use 81.
Developing an MVC application, i now need to have test other browser versions.
Installed the VM XP on win 7. That is running good. Got IE8 installed and FF 3.6. I know IE9 has a compat mode for 8 and 7, but read some articles that these may not run exactly as their stand alone versions. I got IE8 installed on the VM XP, so now i need to connect to my IIS Win7 localhost.
IS there anyway to do this? and How?
You need to configure your HOST PC's firewall to allow the VM (and perhaps other machines) to connect on port 80.
You can then navigate to http://hostmachinename in the VM.
Although my firewall was off, i was able to connect using the local machine name or ip address, as stated above by SLaks. So, if anyone has there firewall on, you may have to allow the VM to access the ports.
I did set the VMXP >> Tools >> Settings >> Networking to my Nic/ethernet card.
Not sure if this had any effect.
I also had trouble at first not getting the .NET MVC website to run. But then realized our web.config is setup to take only https. I had my website running on 2 ports, one for is for SSL. When i use the https secure port, it connected. So iguess the web app was seeing the VM as another computer tryingto coinnect, that was not local, so it required it to connect by https.