Windows Phone 8 Internet Emulator Deployment Issue

I am having a problem with a Windows 8 phone emulator.

The Windows Phone emulator was unable to connect to the Windows Phone operating system. The phone did not answer the connection request

This is the error I am getting. When the emulator starts up on the Internet, but my application does not deploy. The IP address that is assigned is 192.168.137.1 . It used to work fine, but then it started this problem.

The following is a list of issues that I have completed:

  • 169.254.xxx.xxx address set for the internal emulator via dhcp, the application was successfully installed without an Internet connection

  • Tried MAC address spoofing, but nothing works when I use these settings.

  • By changing the external virtual switch in shared mode, it starts the Internet with ip 192.168.137.1 , but the application does not deploy. In the debugger errors shown:
 Invalid pointer error App deployment failed 
  • We tried the network bridge, but it still does not work.
  • Created all the settings manually, including the internal switch and external swithch. But the same problem arose when it receives 192.168.137.1 ip, then the Internet works, but the application does not deploy. And when he receives the application 169.254.xxx.xxx ip series, but does not connect to the Internet.
  • The firewall is not turned on or the antivirus is not blocking any connections.
  • The wireless router used to connect to the network is still not successful
  • And they tried a clean installation of everything, but still did not go.

I need help in solving this problem, since I tried to solve it from a week.

+5
source share
2 answers

This problem does not occur if the installation is performed on one computer through a virtual machine. I have done this:

They gave 4 GB of RAM, 60 GB hdd and 4 cores for a virtual machine.

1) I installed a virtual machine with default settings.

2) Then I stopped your virtual machine (close Windows 8, DO NOT pause it).

3) In the list of VMWare virtual machines, right-click the Windows 8 machine and select "Show in Finder".

4) Right-click on the file, then click on β€œShow Package Contents”, then find and open the file with the extension .vmx in a text editor

5) Go to the end of the file and add two lines (first check if they were added earlier):

hypervisor.cpuid.v0 = "FALSE"

vhv.enable = "TRUE"

6) In the list of VMWare virtual machines, right-click Windows 8, select "Settings", then "Advanced". Select "Intel VT-X with EPT" as the "Preferred Virtualization Engine."

And then, when I launched the windows on the virtual machine, it seems to work fine, without any additional configuration changes. However, it still does not work on the physical machine

I recommend that someone encounters a similar problem and then use a virtual machine until this problem is resolved.

0
source

Struggling with the same problem for 3 days, I finally resolved my problem by disabling the Windows Firewall for the "guest or public network." I have yet to figure out which applications / services to allow so that I can turn it back on.

0
source

All Articles